/*
Theme Name: Andre Haughton
Theme URI: https://andrehaughton.com
Author: Andre Haughton
Description: Personal website theme for Professor Andre Haughton — economist, professor and author. Home page, Gleaner Briefing archive and single-column pages.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
License: All rights reserved
Text Domain: andrehaughton
*/

:root {
	--paper: #F5F1E8;
	--paper-2: #ECE6D8;
	--white: #FFFFFF;
	--ink: #15201E;
	--ink-2: #26302E;
	--muted: #3A4442;
	--rule: #D6CEBD;
	--rule-2: #C9BFAA;
	--deep: #0F3530;
	--deep-rule: #3C5E58;
	--on-deep: #E9EFEC;
	--on-deep-2: #DDE6E3;
	--gold: #E3B55E;
	--gold-ink: #8C5B14;
	--foot: #15201E;
	--serif: 'Newsreader', Georgia, 'Times New Roman', serif;
	--sans: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--pad: clamp(20px, 5vw, 48px);
	--max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 18px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-ink); text-decoration: none; }
a:hover { color: #5E3C0A; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
em { font-style: italic; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 100; width: auto; height: auto; clip: auto;
	background: var(--white); color: var(--ink); padding: 12px 18px; border-radius: 6px;
}

.wrap { max-width: calc(var(--max) + var(--pad) * 2); margin: 0 auto; padding: 0 var(--pad); }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 24px; }

.eyebrow {
	font-size: 15px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--gold-ink);
}
.on-deep .eyebrow { color: var(--gold); }
.lede { font-size: clamp(19px, 1.7vw, 22px); line-height: 1.6; color: var(--ink-2); }
.h-section { font-size: clamp(36px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 0 26px; border-radius: 999px;
	font-family: var(--sans); font-size: 16px; font-weight: 600; line-height: 1;
	border: 1.5px solid transparent; cursor: pointer; text-align: center;
}
.btn-lg { min-height: 56px; padding: 0 30px; font-size: 17px; }
.btn-deep { background: var(--deep); color: var(--white); }
.btn-deep:hover { background: #0A2724; color: var(--white); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #EDC57A; color: var(--ink); }

/* Header */
.site-header { border-bottom: 1px solid var(--rule); background: var(--paper); position: relative; z-index: 20; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 96px; }
.brand { display: flex; flex-direction: column; gap: 2px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-name { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.01em; }
.brand-tag { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--ink); font-size: 16px; font-weight: 500; }
.main-nav a:hover { color: var(--gold-ink); }
.main-nav a[aria-current="page"] { font-weight: 600; border-bottom: 2px solid var(--gold-ink); padding-bottom: 4px; }
.main-nav .nav-cta a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px; border-radius: 999px; background: var(--deep); color: var(--white); }
.main-nav .nav-cta a:hover { background: #0A2724; color: var(--white); }
.nav-toggle {
	display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--rule);
	background: transparent; color: var(--ink); align-items: center; justify-content: center; cursor: pointer;
}

@media (max-width: 1080px) {
	.nav-toggle { display: inline-flex; }
	.main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--rule); }
	.main-nav.is-open { display: block; }
	.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--pad) 24px; }
	.main-nav li a { display: flex; min-height: 52px; align-items: center; border-bottom: 1px solid var(--rule); }
	.main-nav .nav-cta { padding-top: 16px; }
	.main-nav .nav-cta a { justify-content: center; border-bottom: 0; }
	.site-header .wrap { min-height: 72px; }
	.brand-name { font-size: 22px; }
	.brand-tag { display: none; }
}

/* Social links */
.socials { display: flex; flex-wrap: wrap; column-gap: 18px; }
.socials a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 600; }
.socials-light a { color: var(--gold-ink); }
.socials-gold a { color: var(--gold); }
.socials-gold a:hover { color: #F2D08F; }
.socials-foot a { color: #F5F1E8; font-weight: 500; }
.socials-foot a:hover { color: var(--gold); }

/* Hero */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 88px); }
.hero .grid-12 { align-items: start; row-gap: 48px; }
.hero-copy { grid-column: span 7; display: flex; flex-direction: column; gap: 32px; }
.hero-eyebrow { display: flex; flex-direction: column; gap: 4px; text-transform: none; letter-spacing: 0; }
.hero-eyebrow span:first-child { font-size: clamp(20px, 1.9vw, 24px); font-weight: 600; color: var(--ink); line-height: 1.35; }
.hero-eyebrow span + span { font-size: clamp(18px, 1.6vw, 21px); font-weight: 500; color: var(--gold-ink); }
.hero h1 { font-size: clamp(42px, 5.4vw, 76px); line-height: 1.04; letter-spacing: -0.015em; font-weight: 450; }
.hero h1 em { color: var(--deep); }
.hero .lede { max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.distinctions { display: flex; flex-direction: column; gap: 14px; padding-top: 28px; border-top: 1px solid var(--rule); }
.distinctions h2 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.distinctions ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; row-gap: 14px; }
.distinctions li { display: flex; gap: 12px; align-items: baseline; font-size: 17px; line-height: 1.4; }
.distinctions .yr { font-size: 15px; font-weight: 600; color: var(--gold-ink); min-width: 44px; }
.distinctions .scholar { font-size: 16px; color: var(--ink-2); }
.distinctions .scholar strong { color: var(--ink); }
.hero-portrait { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 14px; }
.hero-portrait img { width: 100%; height: 560px; object-fit: cover; object-position: center top; border-radius: 4px; }
.portrait-caption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 16px; font-size: 15px; font-weight: 500; color: var(--muted); }
.portrait-social { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px 12px; padding-top: 12px; border-top: 1px solid var(--rule); font-size: 15px; }
.portrait-social .handle { font-weight: 600; }

/* Credentials strip */
.creds { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--rule); }
.creds > div { padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--rule); }
.creds > div:first-child { padding-left: 0; }
.creds > div:last-child { border-right: 0; padding-right: 0; }
.creds .big { font-family: var(--serif); font-size: clamp(32px, 3vw, 44px); line-height: 1.1; }
.creds p { font-size: 17px; line-height: 1.45; color: var(--ink-2); }

/* Sections */
.section { padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 8vw, 120px); }
.section-head { align-items: end; margin-bottom: 56px; row-gap: 20px; }
.section-head > div { grid-column: span 6; display: flex; flex-direction: column; gap: 16px; }
.section-head > p { grid-column: 8 / span 5; font-size: 19px; line-height: 1.6; color: var(--ink-2); }

.ideas-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.idea { display: flex; flex-direction: column; gap: 18px; padding: 32px 28px 36px; background: var(--white); border-radius: 4px; }
.idea .num { font-family: var(--serif); font-size: 20px; color: var(--gold-ink); }
.idea h3 { font-size: 28px; line-height: 1.15; font-weight: 500; }
.idea p { font-size: 17px; line-height: 1.6; color: var(--ink-2); }

/* Deep band */
.on-deep { background: var(--deep); color: var(--on-deep); }
.on-deep p { color: var(--on-deep-2); }
.mos { padding: clamp(72px, 9vw, 120px) 0; }
.mos .grid-12 { row-gap: 56px; }
.mos-copy { grid-column: span 6; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.mos-copy h2 { font-size: clamp(40px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -0.02em; }
.mos-copy p { font-size: 19px; line-height: 1.6; }
.mos-list { grid-column: 8 / span 5; align-self: center; }
.mos-list h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #9FB2AD; padding-bottom: 16px; }
.mos-list ol { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--deep-rule); }
.mos-list li { display: flex; align-items: baseline; gap: 20px; padding: 20px 0; border-top: 1px solid var(--deep-rule); font-family: var(--serif); font-size: 30px; }
.mos-list li span { font-size: 18px; color: var(--gold); min-width: 28px; }

/* Books */
.books-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.books-head > div { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.books-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.book { display: flex; flex-direction: column; gap: 20px; }
.cover { height: 400px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.cover .t { font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.cover .a { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.cover-navy { background: #1E3A5F; color: var(--paper); }
.cover-ochre { background: var(--gold-ink); color: #FFF8EA; }
.cover-sand { background: var(--paper-2); color: var(--ink); border: 1px solid var(--rule); }
.cover-deep { background: var(--deep); color: var(--on-deep); }
.cover-deep .a { color: var(--gold); }
.book .pub { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.book p { font-size: 17px; line-height: 1.55; color: var(--ink-2); }

.research { border-top: 1px solid var(--ink); padding-top: 72px; margin-top: 112px; row-gap: 56px; }
.research-list { grid-column: span 7; display: flex; flex-direction: column; gap: 28px; }
.research-list .row-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.research h2 { font-size: 40px; letter-spacing: -0.01em; }
.research-list ul { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--rule); }
.research-list li { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; border-top: 1px solid var(--rule); }
.research-list .t { font-family: var(--serif); font-size: 22px; line-height: 1.3; }
.research-list .m { font-size: 15px; color: var(--muted); }
.awards { grid-column: 9 / span 4; display: flex; flex-direction: column; gap: 28px; }
.awards ul { list-style: none; margin: 0; padding: 8px 28px; background: var(--white); border-radius: 4px; }
.awards li { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--paper-2); }
.awards li:last-child { border-bottom: 0; }
.awards .yr { font-size: 13px; letter-spacing: 0.12em; color: var(--gold-ink); font-weight: 600; }
.awards .t { font-size: 17px; line-height: 1.4; }

/* Briefing block (home) */
.briefing-band { background: var(--paper-2); padding: clamp(72px, 9vw, 120px) 0; }
.briefing-band .grid-12 { row-gap: 48px; }
.briefing-intro { grid-column: span 4; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.briefing-intro h2 { font-size: clamp(44px, 4.6vw, 64px); line-height: 1; letter-spacing: -0.02em; }
.briefing-intro p { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.briefing-intro p.small { font-size: 16px; color: var(--muted); }
.briefing-list { grid-column: 6 / span 7; }
.brief-row { display: grid; grid-template-columns: 140px minmax(0, 1fr); column-gap: 24px; align-items: baseline; padding: 30px 0; border-top: 1px solid var(--rule-2); color: var(--ink); }
.brief-row:first-child { border-top-color: var(--ink); }
.brief-row:last-child { border-bottom: 1px solid var(--rule-2); }
.brief-row:hover { color: var(--ink); }
.brief-row:hover .t { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.brief-row .d { font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.brief-row .d .pub { display: block; margin-top: 6px; font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 500; color: var(--muted); }
.brief-row .body { display: flex; flex-direction: column; gap: 8px; }
.brief-row .t { font-family: var(--serif); font-size: 30px; line-height: 1.15; }
.brief-row .s { font-size: 16px; color: var(--muted); }

/* Advisory */
.advisory .grid-12 { row-gap: 56px; }
.advisory-copy { grid-column: span 5; display: flex; flex-direction: column; gap: 24px; }
.advisory-copy h2 { font-size: clamp(38px, 3.8vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
.advisory-copy > p { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.also { display: flex; flex-direction: column; padding-top: 8px; }
.also h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-bottom: 12px; }
.also p { font-size: 17px; line-height: 1.55; color: var(--ink-2); padding: 14px 0; border-top: 1px solid var(--rule); }
.projects { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 16px; }
.project { display: flex; flex-direction: column; gap: 10px; padding: 26px 30px; background: var(--white); border-radius: 4px; }
.project .meta { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.project h3 { font-size: 25px; line-height: 1.2; }
.project p { font-size: 17px; line-height: 1.5; color: var(--ink-2); }

/* Three cards */
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-bottom: clamp(72px, 9vw, 128px); }
.trio-card { padding: 48px 40px; border-radius: 4px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.trio-card h3 { font-size: 34px; line-height: 1.12; }
.trio-card p { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.trio-card .btn { margin-top: auto; }
.trio-card.on-deep p { color: var(--on-deep-2); }
.trio-white { background: var(--white); }
.trio-sand { background: var(--paper-2); }

/* Speaking */
.speaking { border-top: 1px solid var(--rule); padding: clamp(72px, 9vw, 120px) 0; }
.speaking .grid-12 { row-gap: 56px; }
.speaking-copy { grid-column: span 5; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.speaking-copy h2 { font-size: clamp(38px, 3.8vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
.speaking-copy p { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.speaking-copy img { width: 100%; height: 600px; object-fit: cover; object-position: center 20%; border-radius: 4px; margin-top: 16px; }
.topics { grid-column: 7 / span 6; }
.topics h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-bottom: 16px; }
.topics ul { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--rule); }
.topics li { font-family: var(--serif); font-size: 28px; padding: 22px 0; border-top: 1px solid var(--rule); }
.topics li:first-child { border-top-color: var(--ink); }
.venues { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }
.venues p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }

/* Subscribe */
.subscribe { padding: clamp(64px, 8vw, 112px) 0; }
.subscribe .grid-12 { row-gap: 32px; align-items: center; }
.subscribe-copy { grid-column: span 6; display: flex; flex-direction: column; gap: 18px; }
.subscribe-copy h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.02em; }
.subscribe-copy p { font-size: 18px; line-height: 1.6; }
.subscribe-copy .follow { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 18px; font-size: 16px; }
.subscribe-form { grid-column: 8 / span 5; display: flex; flex-direction: column; gap: 12px; }
.subscribe-form label { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-deep-2); }
.subscribe-form .row { display: flex; gap: 12px; flex-wrap: wrap; }
.subscribe-form input[type="email"] {
	flex: 1 1 220px; min-height: 56px; padding: 0 20px; border-radius: 999px; border: 1px solid #5B7C76;
	background: #0A2724; color: var(--white); font-size: 17px; font-family: inherit;
}
.subscribe-form input::placeholder { color: #9FB2AD; }
.subscribe-form .btn { min-height: 56px; font-size: 17px; }

/* Footer */
.site-footer { background: var(--foot); color: var(--on-deep-2); padding: 72px 0 40px; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.foot-name { font-family: var(--serif); font-size: 32px; color: #F5F1E8; }
.foot-top .role { font-size: 16px; margin-top: 10px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; font-size: 16px; }
.foot-cols > div { display: flex; flex-direction: column; gap: 10px; }
.foot-cols h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #8FA39E; }
.foot-cols a { color: #F5F1E8; }
.foot-cols a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid #33413E; margin-top: 48px; padding-top: 24px; font-size: 14px; color: #8FA39E; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Gleaner Briefing archive ---------- */
.gb-hero { padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--ink); }
.gb-hero .grid-12 { align-items: end; row-gap: 40px; }
.gb-hero-copy { grid-column: span 8; display: flex; flex-direction: column; gap: 22px; }
.gb-hero h1 { font-size: clamp(52px, 7.4vw, 104px); line-height: 0.95; letter-spacing: -0.03em; }
.gb-hero .lede { max-width: 680px; }
.gb-byline { grid-column: 10 / span 3; display: flex; flex-direction: column; gap: 18px; }
.gb-byline .who { display: flex; align-items: center; gap: 14px; }
.gb-byline .who img { width: 64px; height: 64px; border-radius: 999px; object-fit: cover; object-position: center top; }
.gb-byline .who span { display: block; }
.gb-byline .who .n { font-weight: 600; }
.gb-byline .who .r { font-size: 14px; color: var(--muted); }
.gb-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-top: 18px; border-top: 1px solid var(--rule); }
.gb-stats .big { font-family: var(--serif); font-size: 40px; line-height: 1.1; display: block; }
.gb-stats .lab { font-size: 14px; color: var(--muted); }

.gb-top { padding: 72px 0; }
.gb-top .grid-12 { row-gap: 40px; }
.gb-latest { grid-column: span 8; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; padding: clamp(32px, 4vw, 56px); border-radius: 4px; }
.gb-latest .meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.gb-latest .meta .k { color: var(--gold); font-weight: 600; }
.gb-latest .meta .d { color: #B9C7C3; }
.gb-latest h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.05; }
.gb-latest h2 a { color: var(--on-deep); }
.gb-latest h2 a:hover { color: var(--gold); }
.gb-latest p { font-size: 18px; line-height: 1.6; }
.gb-start { grid-column: 10 / span 3; }
.gb-start h3 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-bottom: 14px; }
.gb-start ul { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--rule); }
.gb-start li { border-top: 1px solid var(--rule); }
.gb-start li:first-child { border-top-color: var(--ink); }
.gb-start a { display: block; padding: 18px 0; font-family: var(--serif); font-size: 21px; line-height: 1.25; color: var(--ink); }
.gb-start a:hover { color: var(--gold-ink); }

.gb-archive { padding-bottom: 96px; }
.gb-archive-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; padding-bottom: 20px; }
.gb-archive-head h2 { font-size: 48px; }
.gb-search { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gb-search label { font-size: 14px; color: var(--muted); }
.gb-search input[type="search"] {
	width: 300px; max-width: 100%; min-height: 44px; padding: 0 18px; border-radius: 999px;
	border: 1px solid var(--rule-2); background: var(--white); font-size: 15px; font-family: inherit; color: var(--ink);
}
.gb-search button { min-height: 44px; padding: 0 18px; font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.chips-topics { padding-bottom: 24px; border-bottom: 1px solid var(--ink); margin-bottom: 0; }
.chip {
	display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 999px;
	font-size: 15px; font-weight: 500; color: var(--ink); border: 1px solid var(--rule-2); background: transparent;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-on { background: var(--deep); border-color: var(--deep); color: var(--white); }
.chips-topics .chip { background: var(--white); border-color: var(--rule); }
.chips-topics .chip.is-on { background: var(--deep); border-color: var(--deep); color: var(--white); }

.gb-year { display: grid; grid-template-columns: 200px minmax(0, 1fr); column-gap: 24px; padding-top: 40px; }
.gb-year h3 { font-size: 44px; }
.gb-row { display: grid; grid-template-columns: 110px minmax(0, 1fr) 220px 80px; column-gap: 24px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--rule); color: var(--ink); }
.gb-row:hover { color: var(--ink); }
.gb-row:hover .t { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.gb-row .d { font-size: 15px; color: var(--muted); }
.gb-row .t { font-family: var(--serif); font-size: 24px; line-height: 1.25; }
.gb-row .no { font-family: var(--sans); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 6px; }
.gb-row .c { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.gb-row .go { font-size: 15px; font-weight: 600; color: var(--gold-ink); text-align: right; }
.gb-empty { padding: 56px 0 16px; font-size: 18px; color: var(--ink-2); display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.pager { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; padding-top: 48px; }
.pager .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--rule-2); color: var(--ink); font-weight: 600; }
.pager .page-numbers.current { background: var(--deep); border-color: var(--deep); color: var(--white); }

/* ---------- Single Briefing / page ---------- */
.article { padding: clamp(56px, 7vw, 96px) 0; }
.article-inner { max-width: 760px; margin: 0 auto; }
.article-back { display: inline-flex; min-height: 44px; align-items: center; font-weight: 600; margin-bottom: 24px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.article-meta .k { color: var(--gold-ink); font-weight: 600; }
.article-meta .d { color: var(--muted); }
.article h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.05; letter-spacing: -0.02em; }
.article-byline { display: flex; align-items: center; gap: 14px; margin: 32px 0 40px; padding: 20px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.article-byline img { width: 52px; height: 52px; border-radius: 999px; object-fit: cover; object-position: center top; }
.article-byline .n { font-weight: 600; display: block; }
.article-byline .r { font-size: 14px; color: var(--muted); }
.entry { font-family: var(--serif); font-size: 20px; line-height: 1.75; color: var(--ink); }
.entry > * + * { margin-top: 1.1em; }
.entry h2 { font-size: 30px; line-height: 1.2; margin-top: 1.8em; }
.entry h3 { font-size: 24px; line-height: 1.25; margin-top: 1.6em; }
.entry a { text-decoration: underline; text-underline-offset: 3px; }
.entry blockquote { margin-left: 0; padding-left: 24px; border-left: 3px solid var(--gold); color: var(--ink-2); }
.entry ul, .entry ol { padding-left: 1.3em; }
.entry img { border-radius: 4px; }
.entry table { border-collapse: collapse; width: 100%; font-family: var(--sans); font-size: 16px; }
.entry th, .entry td { border-bottom: 1px solid var(--rule); padding: 10px 8px; text-align: left; }
.entry .wp-block-table { overflow-x: auto; }
.original { margin-top: 48px; padding: 28px 32px; background: var(--white); border-radius: 4px; display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; }
.original p { font-size: 17px; color: var(--ink-2); }
.article-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--ink); }
.article-nav a { display: flex; flex-direction: column; gap: 6px; color: var(--ink); }
.article-nav a span { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.article-nav a strong { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.25; }
.article-nav .next { text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.hero-copy { grid-column: span 12; }
	.hero-portrait { grid-column: span 12; max-width: 520px; }
	.hero-portrait img { height: 520px; }
	.creds { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.creds > div { padding: 24px 20px 24px 0; }
	.creds > div:nth-child(2n) { border-right: 0; padding-left: 20px; padding-right: 0; }
	.creds > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
	.creds > div:nth-child(2n+1) { padding-left: 0; }
	.ideas-grid, .books-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.section-head > div, .section-head > p,
	.mos-copy, .mos-list,
	.research-list, .awards,
	.briefing-intro, .briefing-list,
	.advisory-copy, .projects,
	.speaking-copy, .topics,
	.subscribe-copy, .subscribe-form,
	.gb-hero-copy, .gb-byline, .gb-latest, .gb-start { grid-column: span 12; }
	.trio { grid-template-columns: minmax(0, 1fr); }
	.gb-row { grid-template-columns: 90px minmax(0, 1fr); row-gap: 8px; }
	.gb-row .c { grid-column: 2; }
	.gb-row .go { display: none; }
	.gb-year { grid-template-columns: minmax(0, 1fr); row-gap: 8px; }
}
@media (max-width: 640px) {
	body { font-size: 16px; }
	.distinctions ul { grid-template-columns: minmax(0, 1fr); }
	.hero-portrait { order: -1; }
	.hero-portrait img { height: 420px; }
	.hero-actions .btn { width: 100%; }
	.ideas-grid, .books-grid { grid-template-columns: minmax(0, 1fr); }
	.cover { height: 300px; }
	.creds { grid-template-columns: minmax(0, 1fr); }
	.creds > div, .creds > div:nth-child(n) { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--rule); }
	.creds > div:last-child { border-bottom: 0; }
	.brief-row { grid-template-columns: minmax(0, 1fr); row-gap: 6px; }
	.brief-row .t { font-size: 24px; }
	.mos-list li { font-size: 24px; }
	.topics li { font-size: 22px; }
	.speaking-copy img { height: 420px; }
	.project .meta { flex-direction: column; gap: 4px; }
	.trio-card { padding: 36px 24px; }
	.gb-row { grid-template-columns: minmax(0, 1fr); }
	.gb-row .c { grid-column: 1; }
	.entry { font-size: 18px; }
	.article-nav { grid-template-columns: minmax(0, 1fr); }
	.article-nav .next { text-align: left; }
}

/* ---------- Publications page ---------- */
.gb-byline .btn { align-self: flex-start; }
.pub-jump { padding: 32px 0 8px; }
.pub-section { padding: 56px 0 8px; }
.pub-section > h2 { font-size: clamp(34px, 3.4vw, 44px); margin-bottom: 28px; }
.pub-book { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 40px; padding: 32px 0; border-top: 1px solid var(--ink); }
.pub-cover { height: 300px; padding: 24px 20px; }
.pub-cover .t { font-size: 22px; }
.pub-book h3 { font-size: clamp(26px, 2.4vw, 32px); line-height: 1.2; }
.pub-book h3 a { color: var(--ink); }
.pub-book h3 a:hover { color: var(--gold-ink); }
.pub-meta { margin-top: 10px; font-size: 17px; color: var(--ink-2); }
.pub-book h4 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 28px 0 8px; }
.pub-chapters { margin: 0; padding-left: 1.6em; border-top: 1px solid var(--rule); }
.pub-chapters li { padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: 18px; line-height: 1.4; }
.pub-chapters li::marker { color: var(--gold-ink); font-weight: 600; }
.pub-chapters a { color: var(--ink); }
.pub-chapters a:hover { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }
.pub-chapters .pp { display: inline-block; margin-left: 10px; font-size: 15px; color: var(--muted); }
.pub-list { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--rule); }
.pub-list li { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 24px; padding: 22px 0; border-top: 1px solid var(--rule); }
.pub-list .yr { font-family: var(--serif); font-size: 24px; color: var(--gold-ink); }
.pub-list .body { display: flex; flex-direction: column; gap: 6px; }
.pub-list .t { font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--ink); }
.pub-list a.t:hover { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 3px; }
.pub-list .m { font-size: 16px; color: var(--ink-2); }
.pub-list .m strong { color: var(--ink); }
.pub-list .award { align-self: flex-start; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--deep); background: var(--paper-2); padding: 4px 10px; border-radius: 999px; }
.pub-note { padding: 40px 0 96px; font-size: 17px; color: var(--ink-2); }
@media (max-width: 760px) {
	.pub-book { grid-template-columns: minmax(0, 1fr); gap: 20px; }
	.pub-cover { height: 220px; max-width: 200px; }
	.pub-list li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
	.pub-list .yr { font-size: 18px; }
}
