.aee-layout {
	--aee-accent: #e03f54;
	--aee-heading: #111111;
	--aee-text: #4a4a4a;
	--aee-muted: #888888;
	--aee-card-bg: #faf8f5;
	--aee-note-bg: #f7f4f0;
	--aee-table-bg: #ffffff;
	--aee-table-head-bg: #f7f4f0;
	--aee-border: #eaeaea;
	--aee-sidebar-width: 280px;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(0, var(--aee-sidebar-width)) minmax(0, 680px);
	align-items: start;
	justify-content: center;
	column-gap: 48px;
	width: 100%;
	max-width: 1088px;
	margin-inline: auto;
	padding: 0 0 120px;
	color: var(--aee-text);
}

.aee-layout *,
.aee-layout *::before,
.aee-layout *::after {
	box-sizing: border-box;
}

.aee-layout--no-sidebar {
	grid-template-columns: minmax(0, 680px);
}

.aee-sidebar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	width: 100%;
	min-width: 0;
}

.aee-sidebar.is-sticky {
	position: sticky;
	top: 32px;
}

.aee-toc {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.aee-toc-title,
.aee-advisory-title {
	font-family: Outfit, Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.27;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.aee-toc-title {
	color: var(--aee-muted);
}

.aee-toc-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aee-toc-link {
	display: block;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.25;
	text-decoration: none;
	color: var(--aee-text);
	transition: color 160ms ease, transform 160ms ease;
}

.aee-toc-link:hover,
.aee-toc-link:focus-visible,
.aee-toc-link.is-active {
	color: var(--aee-accent);
}

.aee-toc-link.is-active {
	font-weight: 700;
}

.aee-toc-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.aee-advisory {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: var(--aee-note-bg);
	border: 1px solid var(--aee-border);
	border-radius: 4px;
}

.aee-advisory-title {
	color: var(--aee-accent);
}

.aee-advisory-text {
	margin: 0;
	font-family: Lora, Georgia, serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--aee-text);
}

.aee-reading-column {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 32px;
	width: 100%;
	min-width: 0;
}

.aee-summary-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
	padding: 24px;
	background: var(--aee-card-bg);
	border-left: 3px solid var(--aee-accent);
	border-radius: 0 4px 4px 0;
}

.aee-summary-heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.aee-summary-title {
	margin: 0;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--aee-heading);
}

.aee-summary-subtitle {
	font-family: Outfit, Arial, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.27;
	color: var(--aee-muted);
}

.aee-summary-bullets {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aee-summary-bullets li {
	position: relative;
	margin: 0;
	padding-left: 17px;
	font-family: Outfit, Arial, sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--aee-text);
}

.aee-summary-bullets li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 800;
	color: var(--aee-accent);
}

.aee-figure {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.aee-main-illustration {
	overflow: hidden;
	width: 100%;
	height: 420px;
	background: var(--aee-card-bg);
	border-radius: 4px;
}

.aee-main-illustration img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.aee-caption {
	margin: 0;
	font-family: Outfit, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.25;
	color: var(--aee-muted);
}

.aee-intro,
.aee-body-text {
	scroll-margin-top: 24px;
}

.aee-intro {
	font-family: Lora, Georgia, serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--aee-heading);
}

.aee-intro > *:first-child::first-letter {
	float: left;
	margin: 0.03em 0.12em 0 0;
	font-family: Fraunces, Georgia, serif;
	font-size: 4.25em;
	font-weight: 900;
	line-height: 0.78;
	color: var(--aee-accent);
}

.aee-body-text {
	font-family: Lora, Georgia, serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--aee-heading);
}

.aee-intro > :first-child,
.aee-body-text > :first-child {
	margin-top: 0;
}

.aee-intro > :last-child,
.aee-body-text > :last-child {
	margin-bottom: 0;
}

.aee-pull-quote {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 8px 0 8px 24px;
	border-left: 3px solid var(--aee-accent);
}

.aee-quote-text {
	font-family: Fraunces, Georgia, serif;
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
	color: var(--aee-heading);
}

.aee-quote-author {
	font-family: Outfit, Arial, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--aee-muted);
}

.aee-table-wrap {
	overflow: hidden;
	width: 100%;
	background: var(--aee-table-bg);
	border: 1px solid var(--aee-border);
	border-radius: 4px;
}

.aee-table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	background: transparent;
}

.aee-table th,
.aee-table td {
	padding: 16px;
	border: 0;
	border-bottom: 1px solid var(--aee-border);
	vertical-align: middle;
	text-align: left;
	background: transparent;
}

.aee-table thead th {
	font-family: Outfit, Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: var(--aee-heading);
	background: var(--aee-table-head-bg);
}

.aee-table thead th:nth-child(1),
.aee-table thead th:nth-child(2) {
	width: 32%;
}

.aee-table thead th:nth-child(3),
.aee-table thead th:nth-child(4) {
	width: 18%;
}

.aee-table thead th:last-child,
.aee-table tbody td:last-child {
	text-align: right;
}

.aee-table tbody th {
	font-family: Outfit, Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.28;
	color: var(--aee-heading);
}

.aee-table tbody td {
	font-family: Lora, Georgia, serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.28;
	color: var(--aee-text);
}

.aee-table tbody td:nth-child(3) {
	font-family: Outfit, Arial, sans-serif;
	font-weight: 600;
	color: var(--aee-heading);
}

.aee-table tbody td:last-child strong {
	font-family: Outfit, Arial, sans-serif;
	font-weight: 800;
	color: var(--aee-accent);
}

.aee-table tbody tr:last-child > * {
	border-bottom: 0;
}

@media (max-width: 1024px) {
	.aee-layout {
		--aee-sidebar-width: 240px;
		grid-template-columns: minmax(0, var(--aee-sidebar-width)) minmax(0, 1fr);
		column-gap: 32px;
	}
}

@media (max-width: 767px) {
	.aee-layout,
	.aee-layout--no-sidebar {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 32px;
		padding-bottom: 72px;
	}

	.aee-sidebar.is-sticky {
		position: static;
	}

	.aee-summary-card {
		padding: 20px;
	}

	.aee-main-illustration {
		height: min(62vw, 420px);
	}

	.aee-intro {
		font-size: 17px;
	}

	.aee-intro > *:first-child::first-letter {
		font-size: 3.7em;
	}

	.aee-body-text {
		font-size: 16px;
	}

	.aee-quote-text {
		font-size: 20px;
	}

	.aee-table-wrap {
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.aee-table,
	.aee-table thead,
	.aee-table tbody,
	.aee-table tr,
	.aee-table th,
	.aee-table td {
		display: block;
		width: 100%;
	}

	.aee-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.aee-table tbody {
		display: grid;
		gap: 16px;
	}

	.aee-table tbody tr {
		overflow: hidden;
		background: var(--aee-table-bg);
		border: 1px solid var(--aee-border);
		border-radius: 4px;
	}

	.aee-table tbody th,
	.aee-table tbody td,
	.aee-table tbody td:last-child {
		display: grid;
		grid-template-columns: minmax(100px, 38%) minmax(0, 1fr);
		gap: 16px;
		padding: 13px 16px;
		text-align: right;
	}

	.aee-table tbody th::before,
	.aee-table tbody td::before {
		content: attr(data-label);
		font-family: Outfit, Arial, sans-serif;
		font-size: 11px;
		font-weight: 700;
		line-height: 1.3;
		text-align: left;
		text-transform: uppercase;
		color: var(--aee-muted);
	}
}

@media (prefers-reduced-motion: reduce) {
	.aee-toc-link {
		transition: none;
	}
}
