:root {
	--aob-ink: #0a1d32;
	--aob-ink-soft: #36485b;
	--aob-paper: #f5f8fa;
	--aob-white: #ffffff;
	--aob-line: #dce5eb;
	--aob-teal: #0c9e92;
	--aob-teal-dark: #08766f;
	--aob-sky: #e3f5f3;
	--aob-gold: #c79a3b;
	--aob-shadow: 0 22px 70px rgba(10, 29, 50, 0.12);
	--aob-radius: 22px;
	--aob-shell: min(1180px, calc(100% - 40px));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--aob-paper);
	color: var(--aob-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body::before {
	position: fixed;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(rgba(12, 158, 146, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(12, 158, 146, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	content: "";
	mask-image: linear-gradient(to bottom, black, transparent 82%);
	pointer-events: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--aob-teal-dark);
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--aob-ink);
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
h4 {
	margin-top: 0;
	color: var(--aob-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.12;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.75rem, 6vw, 5.7rem);
}

h2 {
	font-size: clamp(2.1rem, 4vw, 3.6rem);
}

h3 {
	font-size: clamp(1.3rem, 2vw, 1.7rem);
}

p {
	margin-top: 0;
}

.site-shell {
	width: var(--aob-shell);
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	transform: translateY(-150%);
	border-radius: 8px;
	background: var(--aob-white);
	box-shadow: var(--aob-shadow);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid rgba(220, 229, 235, 0.9);
	background: rgba(245, 248, 250, 0.88);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 28px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	gap: 13px;
	color: var(--aob-ink);
	text-decoration: none;
}

.site-brand__mark {
	width: 52px;
	height: 52px;
	filter: drop-shadow(0 8px 16px rgba(10, 29, 50, 0.14));
}

.site-brand__copy {
	display: grid;
	line-height: 1.25;
}

.site-brand__copy strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	letter-spacing: -0.015em;
}

.site-brand__copy small {
	margin-top: 3px;
	color: var(--aob-ink-soft);
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.aob-menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: clamp(16px, 2.2vw, 30px);
	list-style: none;
}

.aob-menu a {
	position: relative;
	color: var(--aob-ink);
	font-size: 0.89rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.aob-menu a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	border-radius: 2px;
	background: var(--aob-teal);
	content: "";
	transition: transform 180ms ease;
}

.aob-menu a:hover::after,
.aob-menu .current-menu-item a::after {
	transform: scaleX(1);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 9px;
	color: var(--aob-teal-dark);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 28px;
	height: 2px;
	background: currentcolor;
	content: "";
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 8vw, 108px) 0 clamp(70px, 10vw, 130px);
}

.hero::after {
	position: absolute;
	z-index: -1;
	top: 40px;
	right: -180px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(12, 158, 146, 0.16);
	border-radius: 50%;
	box-shadow:
		0 0 0 70px rgba(12, 158, 146, 0.035),
		0 0 0 140px rgba(12, 158, 146, 0.025);
	content: "";
}

.hero__grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
	gap: clamp(45px, 8vw, 105px);
}

.hero h1 {
	max-width: 830px;
	margin-bottom: 28px;
}

.hero h1 span {
	color: var(--aob-teal-dark);
}

.hero__lead {
	max-width: 700px;
	margin-bottom: 35px;
	color: var(--aob-ink-soft);
	font-size: clamp(1.1rem, 2vw, 1.32rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	gap: 13px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 22px;
	gap: 10px;
	border: 1px solid var(--aob-ink);
	border-radius: 999px;
	background: var(--aob-ink);
	color: var(--aob-white);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
	content: "↗";
}

.button:hover {
	transform: translateY(-2px);
	background: var(--aob-teal-dark);
	box-shadow: 0 13px 30px rgba(10, 29, 50, 0.17);
	color: var(--aob-white);
}

.button--secondary {
	border-color: var(--aob-line);
	background: rgba(255, 255, 255, 0.65);
	color: var(--aob-ink);
}

.button--secondary:hover {
	background: var(--aob-white);
	color: var(--aob-ink);
}

.button--secondary::after {
	content: "→";
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	gap: 14px 28px;
	color: var(--aob-ink-soft);
	font-size: 0.83rem;
	font-weight: 650;
	list-style: none;
}

.hero__meta li {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.hero__meta li::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--aob-gold);
	box-shadow: 0 0 0 5px rgba(199, 154, 59, 0.12);
	content: "";
}

.hero__portrait-wrap {
	position: relative;
	max-width: 430px;
	margin-left: auto;
}

.hero__portrait-wrap::before {
	position: absolute;
	z-index: -1;
	inset: 22px -22px -22px 22px;
	border: 1px solid rgba(12, 158, 146, 0.28);
	border-radius: 210px 210px 30px 30px;
	content: "";
}

.hero__portrait {
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 210px 210px 30px 30px;
	background: #b9b3af;
	box-shadow: var(--aob-shadow);
}

.hero__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 18%;
}

.hero__signal {
	position: absolute;
	right: -24px;
	bottom: 36px;
	max-width: 215px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 16px 40px rgba(10, 29, 50, 0.16);
	font-size: 0.78rem;
	line-height: 1.45;
	backdrop-filter: blur(10px);
}

.hero__signal strong {
	display: block;
	margin-bottom: 2px;
	color: var(--aob-teal-dark);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section {
	padding: clamp(72px, 9vw, 120px) 0;
}

.section--white {
	background: var(--aob-white);
}

.section--ink {
	position: relative;
	overflow: hidden;
	background: var(--aob-ink);
	color: #dbe7f0;
}

.section--ink::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(12, 158, 146, 0.18), transparent 33%),
		radial-gradient(circle at 85% 70%, rgba(199, 154, 59, 0.12), transparent 26%);
	content: "";
}

.section--ink > * {
	position: relative;
}

.section--ink h2,
.section--ink h3 {
	color: var(--aob-white);
}

.section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: clamp(38px, 6vw, 64px);
	gap: 40px;
}

.section__header h2 {
	max-width: 760px;
	margin-bottom: 0;
}

.section__header p {
	max-width: 450px;
	margin-bottom: 5px;
	color: var(--aob-ink-soft);
}

.section--ink .section__header p {
	color: #b6c8d8;
}

.expertise-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.expertise-card {
	position: relative;
	min-height: 275px;
	padding: 29px 26px;
	overflow: hidden;
	border: 1px solid var(--aob-line);
	border-radius: var(--aob-radius);
	background: var(--aob-paper);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.expertise-card:hover {
	transform: translateY(-5px);
	border-color: rgba(12, 158, 146, 0.5);
	box-shadow: 0 18px 50px rgba(10, 29, 50, 0.1);
}

.expertise-card__index {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 48px;
	place-items: center;
	border-radius: 12px;
	background: var(--aob-sky);
	color: var(--aob-teal-dark);
	font-size: 0.74rem;
	font-weight: 900;
}

.expertise-card h3 {
	margin-bottom: 12px;
}

.expertise-card p {
	margin-bottom: 0;
	color: var(--aob-ink-soft);
	font-size: 0.91rem;
	line-height: 1.62;
}

.expertise-card::after {
	position: absolute;
	right: -26px;
	bottom: -26px;
	width: 90px;
	height: 90px;
	border: 1px solid rgba(12, 158, 146, 0.18);
	border-radius: 50%;
	content: "";
}

.research-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: clamp(45px, 8vw, 100px);
}

.research-intro p {
	max-width: 560px;
	color: #b6c8d8;
	font-size: 1.04rem;
}

.research-points {
	display: grid;
	margin-top: 45px;
	gap: 0;
}

.research-point {
	display: grid;
	grid-template-columns: 42px 1fr;
	padding: 18px 0;
	gap: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.research-point span {
	color: #67dcd0;
	font-size: 0.78rem;
	font-weight: 850;
}

.research-point p {
	margin: 0;
	color: var(--aob-white);
	font-weight: 650;
}

.publication-stack {
	display: grid;
	gap: 14px;
}

.publication-feature {
	display: block;
	padding: clamp(24px, 4vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
	color: inherit;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.publication-feature:hover {
	transform: translateX(5px);
	border-color: rgba(103, 220, 208, 0.52);
	background: rgba(255, 255, 255, 0.09);
	color: inherit;
}

.publication-feature__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	color: #8fa8bb;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.publication-feature__meta::after {
	color: #67dcd0;
	content: "↗";
	font-size: 1rem;
}

.publication-feature h3 {
	margin-bottom: 0;
	font-size: clamp(1.22rem, 2vw, 1.55rem);
	line-height: 1.32;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.post-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--aob-line);
	border-radius: var(--aob-radius);
	background: var(--aob-white);
	box-shadow: 0 9px 32px rgba(10, 29, 50, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(10, 29, 50, 0.11);
}

.post-card__visual {
	position: relative;
	display: grid;
	overflow: hidden;
	min-height: 190px;
	place-items: center;
	background:
		radial-gradient(circle at 20% 25%, rgba(40, 214, 193, 0.35), transparent 33%),
		linear-gradient(135deg, #0a1d32, #12415b);
}

.post-card__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__glyph {
	position: relative;
	width: 75px;
	height: 75px;
	opacity: 0.95;
}

.post-card__glyph::before,
.post-card__glyph::after {
	position: absolute;
	border: 2px solid #67dcd0;
	border-radius: 50%;
	content: "";
}

.post-card__glyph::before {
	inset: 3px 23px 38px 23px;
	box-shadow:
		-24px 29px 0 -2px #0a1d32,
		-24px 29px 0 0 #67dcd0,
		24px 29px 0 -2px #0a1d32,
		24px 29px 0 0 #67dcd0;
}

.post-card__glyph::after {
	inset: 18px;
	border-radius: 11px;
	transform: rotate(45deg);
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 27px;
}

.post-card__meta {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 12px;
	color: var(--aob-teal-dark);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-card__meta span + span::before {
	margin-right: 12px;
	color: var(--aob-line);
	content: "•";
}

.post-card h3 {
	margin-bottom: 15px;
}

.post-card h3 a {
	color: var(--aob-ink);
	text-decoration: none;
}

.post-card p {
	margin-bottom: 24px;
	color: var(--aob-ink-soft);
	font-size: 0.91rem;
}

.post-card__link {
	margin-top: auto;
	color: var(--aob-ink);
	font-size: 0.82rem;
	font-weight: 850;
	text-decoration: none;
}

.post-card__link::after {
	margin-left: 7px;
	color: var(--aob-teal);
	content: "→";
}

.cta {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr auto;
	padding: clamp(34px, 5vw, 60px);
	gap: 30px;
	border-radius: 28px;
	background: var(--aob-sky);
}

.cta h2 {
	max-width: 760px;
	margin-bottom: 12px;
}

.cta p {
	max-width: 700px;
	margin-bottom: 0;
	color: var(--aob-ink-soft);
}

.page-hero {
	padding: clamp(66px, 9vw, 112px) 0 54px;
}

.page-hero__inner {
	max-width: 900px;
}

.page-hero h1 {
	margin-bottom: 20px;
	font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-hero p {
	max-width: 720px;
	color: var(--aob-ink-soft);
	font-size: 1.14rem;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(230px, 1fr);
	padding-bottom: clamp(75px, 10vw, 130px);
	gap: clamp(50px, 8vw, 105px);
}

.entry-content {
	font-size: 1.04rem;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2.2em;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin-bottom: 1.5em;
}

.entry-content table {
	width: 100%;
	margin: 30px 0;
	border-collapse: collapse;
	border-radius: 14px;
	background: var(--aob-white);
	font-size: 0.86rem;
	box-shadow: 0 10px 35px rgba(10, 29, 50, 0.07);
}

.entry-content th,
.entry-content td {
	padding: 16px 14px;
	border-bottom: 1px solid var(--aob-line);
	text-align: left;
	vertical-align: top;
}

.entry-content th {
	color: var(--aob-teal-dark);
	font-size: 0.73rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aob-publications-page .content-layout {
	grid-template-columns: minmax(0, 840px) minmax(230px, 1fr);
	gap: clamp(42px, 6vw, 82px);
}

.aob-publications-page .entry-content > .wp-block-table {
	max-width: none;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(10, 29, 50, 0.12);
	border-radius: 22px;
	background: var(--aob-white);
	box-shadow: 0 22px 55px rgba(10, 29, 50, 0.09);
}

.aob-publications-page .entry-content table {
	margin: 0;
	border-radius: 0;
	background: transparent;
	font-size: 0.92rem;
	box-shadow: none;
	table-layout: auto;
}

.aob-publications-page .entry-content caption {
	padding: 23px 26px 17px;
	border-bottom: 1px solid rgba(10, 29, 50, 0.1);
	background:
		linear-gradient(135deg, rgba(19, 138, 128, 0.11), rgba(229, 244, 247, 0.5));
	color: var(--aob-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	font-weight: 700;
	text-align: left;
}

.aob-publications-page .entry-content th {
	padding: 14px 22px;
	border: 0;
	background: var(--aob-ink);
	color: var(--aob-white);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
}

.aob-publications-page .entry-content th:first-child,
.aob-publications-page .entry-content td:first-child {
	width: 61%;
}

.aob-publications-page .entry-content td {
	padding: 21px 22px;
	border: 0;
	border-bottom: 1px solid rgba(10, 29, 50, 0.09);
	color: var(--aob-ink-soft);
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.aob-publications-page .entry-content tbody tr {
	transition:
		background-color 180ms ease,
		transform 180ms ease;
}

.aob-publications-page .entry-content tbody tr:nth-child(even) {
	background: rgba(229, 244, 247, 0.32);
}

.aob-publications-page .entry-content tbody tr:hover {
	background: rgba(42, 180, 168, 0.1);
}

.aob-publications-page .entry-content tbody tr:last-child td {
	border-bottom: 0;
}

.aob-publications-page .entry-content td:first-child {
	color: var(--aob-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.03rem;
	font-weight: 700;
}

.aob-publications-page .entry-content td:nth-child(2) {
	color: var(--aob-ink-soft);
	font-size: 0.82rem;
}

.aob-publications-page .entry-content td a {
	color: var(--aob-teal-dark);
	font-weight: 700;
	text-decoration-color: rgba(12, 108, 100, 0.3);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.aob-publications-page .entry-content td a:hover {
	color: var(--aob-ink);
	text-decoration-color: var(--aob-teal);
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 7px 0 7px 25px;
	border-left: 3px solid var(--aob-teal);
	color: var(--aob-ink-soft);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.28rem;
}

.aob-contact-page .entry-content,
.aob-contact-page .entry-content :where(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, label, address) {
	color: var(--aob-ink) !important;
}

.aob-contact-page .entry-content a:not(.button):not(.wp-block-button__link) {
	color: var(--aob-teal-dark) !important;
}

.aob-contact-page .entry-content .wp-block-button__link {
	background: var(--aob-ink) !important;
	color: var(--aob-white) !important;
}

.aob-contact-page .entry-content .wp-block-button__link:hover {
	background: var(--aob-teal-dark) !important;
	color: var(--aob-white) !important;
}

.aob-contact-page .entry-content :where(input, textarea, select) {
	border: 1px solid var(--aob-line);
	background: var(--aob-white);
	color: var(--aob-ink);
}

.citation-downloads {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: none;
	margin: 54px 0 0;
	padding: clamp(24px, 4vw, 34px);
	border: 1px solid var(--aob-line);
	border-radius: var(--aob-radius);
	background: linear-gradient(135deg, var(--aob-white), var(--aob-sky));
	gap: 28px;
}

.citation-downloads h2 {
	margin: 0 0 8px;
	font-size: clamp(1.45rem, 3vw, 2rem);
}

.citation-downloads p {
	max-width: 540px;
	margin: 0;
	color: var(--aob-ink-soft);
}

.citation-downloads__actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 10px;
}

.content-aside {
	align-self: start;
	padding: 28px;
	border: 1px solid var(--aob-line);
	border-radius: var(--aob-radius);
	background: rgba(255, 255, 255, 0.65);
}

.content-aside h2 {
	margin-bottom: 14px;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.content-aside p {
	color: var(--aob-ink-soft);
	font-size: 0.87rem;
}

.content-aside a {
	display: block;
	padding: 10px 0;
	border-top: 1px solid var(--aob-line);
	color: var(--aob-ink);
	font-size: 0.84rem;
	font-weight: 750;
	text-decoration: none;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
	gap: 10px 22px;
	color: var(--aob-teal-dark);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.single-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 60px;
	gap: 18px;
}

.single-navigation a {
	display: block;
	padding: 22px;
	border: 1px solid var(--aob-line);
	border-radius: 16px;
	background: var(--aob-white);
	color: var(--aob-ink);
	font-family: Georgia, "Times New Roman", serif;
	text-decoration: none;
}

.pagination {
	margin-top: 50px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination a,
.pagination span {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--aob-line);
	border-radius: 10px;
	background: var(--aob-white);
	color: var(--aob-ink);
	text-decoration: none;
}

.pagination .current {
	border-color: var(--aob-ink);
	background: var(--aob-ink);
	color: var(--aob-white);
}

.empty-state {
	padding: 60px;
	border: 1px solid var(--aob-line);
	border-radius: var(--aob-radius);
	background: var(--aob-white);
	text-align: center;
}

.site-footer {
	padding-top: 70px;
	background: #071728;
	color: #b6c8d8;
}

.site-footer .site-brand {
	color: var(--aob-white);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.8fr 0.7fr 0.7fr;
	padding-bottom: 55px;
	gap: 50px;
}

.site-brand--footer {
	align-items: flex-start;
}

.site-brand--footer .site-brand__copy strong {
	font-size: 1.25rem;
}

.site-brand--footer .site-brand__copy small {
	max-width: 300px;
	color: #8fa8bb;
	font-size: 0.73rem;
	line-height: 1.6;
}

.site-footer__links {
	display: grid;
	align-content: start;
	gap: 9px;
}

.site-footer__links h2 {
	margin-bottom: 7px;
	color: var(--aob-white);
	font-family: inherit;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer__links a {
	color: #b6c8d8;
	font-size: 0.86rem;
	text-decoration: none;
}

.site-footer__links a:hover {
	color: #67dcd0;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding: 22px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	gap: 25px;
	color: #7992a6;
	font-size: 0.76rem;
}

.site-footer__bottom p {
	margin: 0;
}

@media (max-width: 1020px) {
	.expertise-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
		gap: 50px;
	}

	.research-grid {
		grid-template-columns: 1fr;
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.content-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.aob-publications-page .content-layout {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 780px) {
	.citation-downloads {
		align-items: flex-start;
		flex-direction: column;
	}

	.aob-publications-page .entry-content > .wp-block-table {
		overflow: visible;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.aob-publications-page .entry-content table,
	.aob-publications-page .entry-content tbody,
	.aob-publications-page .entry-content tr,
	.aob-publications-page .entry-content td {
		display: block;
		width: 100%;
	}

	.aob-publications-page .entry-content caption {
		margin-bottom: 14px;
		padding: 0 0 14px;
		border-bottom: 1px solid var(--aob-line);
		background: transparent;
		font-size: 1.6rem;
	}

	.aob-publications-page .entry-content thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
		clip-path: inset(50%);
	}

	.aob-publications-page .entry-content tbody {
		display: grid;
		gap: 14px;
	}

	.aob-publications-page .entry-content tbody tr,
	.aob-publications-page .entry-content tbody tr:nth-child(even) {
		overflow: hidden;
		border: 1px solid rgba(10, 29, 50, 0.11);
		border-radius: 16px;
		background: var(--aob-white);
		box-shadow: 0 10px 28px rgba(10, 29, 50, 0.07);
	}

	.aob-publications-page .entry-content td,
	.aob-publications-page .entry-content td:first-child {
		width: 100%;
		padding: 17px 18px;
	}

	.aob-publications-page .entry-content td:first-child {
		border-bottom: 1px solid rgba(10, 29, 50, 0.08);
		font-size: 1rem;
	}

	.aob-publications-page .entry-content td:nth-child(2) {
		padding-top: 14px;
		background: rgba(229, 244, 247, 0.4);
	}

	.aob-publications-page .entry-content td::before {
		display: block;
		margin-bottom: 6px;
		color: var(--aob-teal-dark);
		font-family: Arial, Helvetica, sans-serif;
		font-size: 0.65rem;
		font-weight: 850;
		letter-spacing: 0.11em;
		text-transform: uppercase;
	}

	.aob-publications-page .entry-content td:first-child::before {
		content: "Publication";
	}

	.aob-publications-page .entry-content td:nth-child(2)::before {
		content: "Reference";
	}

	:root {
		--aob-shell: min(100% - 28px, 680px);
	}

	body {
		font-size: 16px;
	}

	.site-header {
		position: relative;
	}

	.site-header__inner {
		align-items: flex-start;
		flex-direction: column;
		padding: 17px 0;
		gap: 16px;
	}

	.primary-navigation {
		width: 100%;
		overflow-x: auto;
	}

	.aob-menu {
		width: max-content;
		padding-bottom: 5px;
	}

	.hero {
		padding-top: 55px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__portrait-wrap {
		width: min(86%, 400px);
		margin: 10px auto 0;
	}

	.hero__signal {
		right: -8px;
	}

	.section__header {
		align-items: start;
		flex-direction: column;
		gap: 15px;
	}

	.cta {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__grid > :first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.site-brand__copy small {
		display: none;
	}

	.hero h1 {
		font-size: 2.75rem;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__signal {
		position: relative;
		right: auto;
		bottom: auto;
		width: calc(100% - 28px);
		max-width: none;
		margin: -34px auto 0;
	}

	.expertise-grid,
	.post-grid,
	.single-navigation {
		grid-template-columns: 1fr;
	}

	.expertise-card {
		min-height: 230px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__grid > :first-child {
		grid-column: auto;
	}

	.site-footer__bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
