:root {
  --brand: #ffda42;
  --brand-soft: #ffe36e;
  --ink: #111;
  --ink-strong: #0d0d12;
  --muted: #676767;
  --surface: #fff;
  --surface-muted: #f5f5f5;
  --surface-purple: #f1ebf8;
  --header-height: 76px;
  --motion-fast: 160ms;
  --motion-base: 220ms;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --border: #d7d7d7;
  --focus: #00499d;
  --container: 72.25rem;
  --gutter: clamp(1rem, 4.85vw, 3.875rem);
  --radius-sm: .25rem;
  --radius-md: .75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;
  --shadow-card: 0 10px 40px rgb(0 0 0 / .06);
  --font-display: "Arial Black", Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 96px; scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: var(--font-body); font-size: 1rem; line-height: 1.5; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; top: 1rem; left: 1rem; padding: .75rem 1rem; background: var(--ink); color: #fff; border-radius: var(--radius-md); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 2 * var(--gutter)), var(--container)); margin-inline: auto; }
.section-pad { padding-block: clamp(4rem, 7vw, 5rem); }
.surface-muted { background: var(--surface-muted); }
.topics, .latest, .editors-picks { content-visibility: auto; contain-intrinsic-size: auto 850px; }
.site-header { position: sticky; z-index: 20; top: 0; background: #fff; border-bottom: 1px solid rgb(17 17 17 / .06); transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease; }
.site-header.is-scrolled { border-color: transparent; box-shadow: 0 10px 32px rgb(17 17 17 / .08); }
.header-inner { min-height: var(--header-height); display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; justify-self: start; gap: .5rem; font-size: 1.4rem; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; width: 1.75rem; height: 1.5rem; place-items: center; border-radius: 45% 55% 45% 55%; background: var(--brand); font-size: .85rem; }
.desktop-nav { display: flex; grid-column: 2; align-items: center; justify-self: center; gap: .25rem; font-size: .875rem; font-weight: 600; }
.desktop-nav a { padding: .75rem; border-radius: var(--radius-pill); transition: color var(--motion-fast) ease, background var(--motion-fast) ease; }
.desktop-nav a:hover { background: var(--surface-muted); }
.header-actions { display: flex; grid-column: 3; align-items: center; justify-self: end; gap: .625rem; }
.icon-button, .menu-toggle { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--surface-muted); cursor: pointer; }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle { display: none; padding: 12px 10px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: .75rem; padding: .7rem 1.5rem; border: 0; border-radius: var(--radius-pill); font-size: .875rem; font-weight: 700; cursor: pointer; transition: color var(--motion-fast) ease, background var(--motion-fast) ease, box-shadow var(--motion-base) ease, transform var(--motion-fast) var(--ease-out); }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgb(17 17 17 / .14); }
.button:active { transform: translateY(0); box-shadow: none; }
.button-dark, .button-arrow { background: var(--ink); color: #fff; }
.button-light { background: #fff; color: var(--ink); }
.button-arrow { padding: .4rem .4rem .4rem 1.5rem; }
.button-arrow span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #fff; color: var(--ink); transition: transform var(--motion-fast) var(--ease-out); }
.button-arrow:hover span, .button-arrow:focus-visible span { transform: translate(3px, -3px); }
.search-panel { position: absolute; inset: 100% 0 auto; padding: 1.5rem 0; visibility: hidden; opacity: 0; transform: translateY(-10px); background: #fff; border-top: 1px solid var(--border); box-shadow: var(--shadow-card); transition: visibility var(--motion-fast), opacity var(--motion-fast) ease, transform var(--motion-base) var(--ease-out); }
.search-panel.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.search-form label { display: block; margin-bottom: .5rem; font-weight: 700; }
.search-form > div { display: flex; gap: .75rem; }
.search-form input { width: 100%; min-height: 48px; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-pill); background: #fff; }
.mobile-menu { padding: 1rem var(--gutter) 2rem; visibility: hidden; opacity: 0; transform: translateY(-10px); background: #fff; border-top: 1px solid var(--border); transition: visibility var(--motion-fast), opacity var(--motion-fast) ease, transform var(--motion-base) var(--ease-out); }
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu a { display: block; padding: .9rem 0; font-size: 1.15rem; font-weight: 700; border-bottom: 1px solid var(--border); }
.hero { padding: 3.125rem 0 clamp(2.5rem, 5vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 590px) minmax(360px, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.hero-copy { min-width: 0; }
.hero-copy h1 { max-width: 10ch; margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(2.8rem, 4.7vw, 3.75rem); line-height: 1.08; letter-spacing: -.045em; }
.eyebrow, .kicker, .article-category { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-category[href] { text-underline-offset: .2em; }
.article-category[href]:hover { text-decoration: underline; }
.eyebrow { padding: .55rem .9rem; border: 1px solid var(--border); border-radius: var(--radius-pill); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.hero-summary { max-width: 36rem; margin: 0 0 1.25rem; color: var(--muted); font-size: 1.05rem; }
.story-meta { display: flex; flex-wrap: wrap; gap: .45rem 1rem; margin: 1rem 0 1.75rem; color: var(--muted); font-size: .82rem; }
.story-meta > * + *::before { content: "•"; margin-right: 1rem; color: #aaa; }
.media-backdrop, .media-foreground { position: absolute; display: block; max-width: none; }
.media-backdrop { z-index: 0; inset: -8%; width: 116%; height: 116%; background-position: center; background-size: cover; filter: blur(24px) brightness(.7) saturate(.88); transform: scale(1.06); }
.media-foreground { z-index: 1; inset: clamp(.55rem, 1.5vw, 1rem); width: calc(100% - clamp(1.1rem, 3vw, 2rem)); height: calc(100% - clamp(1.1rem, 3vw, 2rem)); object-fit: contain; border-radius: calc(var(--radius-xl) - .35rem); filter: drop-shadow(0 10px 24px rgb(0 0 0 / .12)); }
.hero-media { position: relative; width: 100%; max-width: 490px; justify-self: end; }
.hero-image-wrap { position: relative; overflow: hidden; width: 100%; aspect-ratio: 392 / 540; border: 1px solid rgb(17 17 17 / .08); border-radius: var(--radius-xl); background: #e9e9eb; }
.hero-image-wrap::after { position: absolute; z-index: 1; inset: 0; opacity: 0; background: linear-gradient(120deg, rgb(255 255 255 / .12), rgb(17 17 17 / .08)); content: ""; pointer-events: none; transition: opacity 220ms ease; }
.hero-copy > .eyebrow, .hero-copy > h1, .hero-copy > .hero-summary, .hero-copy > .story-meta, .hero-copy > .button { transition: opacity 420ms ease, transform 480ms var(--ease-out); }
.hero-copy > h1 { transition-delay: 35ms; }
.hero-copy > .hero-summary { transition-delay: 70ms; }
.hero-copy > .story-meta { transition-delay: 100ms; }
.hero-copy > .button { transition-delay: 130ms; }
.hero-image-wrap .media-foreground { transition: transform 650ms var(--ease-out), filter 520ms ease, opacity 320ms ease; }
.hero-image-wrap .media-backdrop { transition: transform 650ms var(--ease-out), filter 520ms ease, opacity 320ms ease; }
.hero-grid.is-changing .hero-copy > .eyebrow, .hero-grid.is-changing .hero-copy > h1, .hero-grid.is-changing .hero-copy > .hero-summary, .hero-grid.is-changing .hero-copy > .story-meta, .hero-grid.is-changing .hero-copy > .button { opacity: 0; transform: translateY(10px); transition-duration: 190ms, 220ms; transition-delay: 0ms; }
.hero-grid.is-changing .hero-image-wrap .media-foreground { opacity: .55; transform: scale(1.025); filter: blur(7px) brightness(.9) saturate(.88); transition-duration: 220ms; }
.hero-grid.is-changing .hero-image-wrap .media-backdrop { opacity: .7; transform: scale(1.1); filter: blur(30px) brightness(.62) saturate(.8); transition-duration: 220ms; }
.hero-grid.is-changing .hero-image-wrap::after { opacity: 1; }
.hero-rotator-controls { display: flex; align-items: center; gap: .65rem; margin-top: 1.25rem; }
.hero-rotator-dots { display: flex; align-items: center; gap: .1rem; }
.hero-rotator-dots button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; background: transparent; cursor: pointer; }
.hero-rotator-dots button::before { width: 9px; height: 9px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; content: ""; transition: width var(--motion-fast) ease, background var(--motion-fast) ease; }
.hero-rotator-dots button[aria-current="true"]::before { width: 24px; border-radius: var(--radius-pill); background: var(--ink); }
.screen-reader-text { position: absolute; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap; }
.floating-card { position: absolute; width: 150px; padding: 1rem; border-radius: var(--radius-md); background: rgb(255 255 255 / .94); box-shadow: var(--shadow-card); backdrop-filter: blur(10px); }
.floating-card span { display: block; color: var(--muted); font-size: .7rem; }
.floating-card strong { font-size: 1.4rem; }
.floating-card-top { top: 22%; left: -18%; }
.floating-card-bottom { right: -8%; bottom: 13%; }
.hero-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; margin-top: 2.75rem; max-width: 45rem; margin-left: max(var(--gutter), calc((100vw - var(--container)) / 2)); }
.hero-notes p { display: flex; gap: .75rem; margin: 0; font-size: .85rem; color: var(--muted); }
.hero-notes span { font-weight: 800; color: var(--ink); }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-heading h2, .report h2 { max-width: 16ch; margin: .65rem 0 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -.035em; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.text-link { border-bottom: 0; background-image: linear-gradient(currentColor, currentColor); background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 1px; font-weight: 800; transition: background-size var(--motion-base) var(--ease-out); }
.text-link:hover, .text-link:focus-visible { background-size: 35% 1px; }
.topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.topic-card { min-height: 280px; padding: 1.5rem; border: 1px solid #ececec; border-radius: var(--radius-xl); transition: transform .2s ease, box-shadow .2s ease; }
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.topic-icon { display: grid; width: 60px; height: 60px; place-items: center; margin-bottom: 3rem; border-radius: 50%; background: var(--brand); font-weight: 900; }
.topic-card h3 { margin: 0 0 .65rem; font-size: 1.25rem; }
.topic-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.centered { text-align: center; }
.centered h2 { margin-inline: auto; }
.latest-layout { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: 1.5rem; align-items: start; }
.latest-stack { display: grid; gap: 1rem; }
.feature-story-card { display: grid; grid-template-columns: minmax(0, 1fr) 42%; gap: 1.75rem; min-height: 360px; padding: 1.5rem; border-radius: var(--radius-xl); background: #fff; }
.feature-story-card.reverse .card-copy { order: 2; }
.feature-story-card h3 { max-width: 14ch; margin: .85rem 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -.035em; }
.feature-story-card p { max-width: 34rem; margin: 0; color: var(--muted); }
.card-art { position: relative; overflow: hidden; min-height: 300px; border: 1px solid rgb(17 17 17 / .08); border-radius: var(--radius-xl); background: #e9e9eb; }
.news-sidebar {
  position: sticky;
  top: calc(76px + 1rem);
  align-self: start;
  display: grid;
  gap: 1rem;
  max-height: calc(100vh - 76px - 2rem);
  max-height: calc(100dvh - 76px - 2rem);
  padding-right: .35rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.news-sidebar::-webkit-scrollbar { width: 6px; }
.news-sidebar::-webkit-scrollbar-track { background: transparent; }
.news-sidebar::-webkit-scrollbar-thumb { border-radius: var(--radius-pill); background: var(--brand); }
.sidebar-block { overflow: hidden; padding: 1.25rem; border-radius: var(--radius-xl); background: #fff; }
.sidebar-block:nth-child(2) { background: #fff8db; }
.sidebar-heading { display: flex; align-items: center; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.sidebar-heading > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: var(--brand); font-size: .72rem; font-weight: 900; }
.sidebar-heading h2 { margin: 0; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.025em; }
.sidebar-list { margin: 0; padding: 0; list-style: none; counter-reset: sidebar; }
.sidebar-list li { counter-increment: sidebar; position: relative; padding: 1rem 0 1rem 2rem; border-bottom: 1px solid rgb(17 17 17 / .1); }
.sidebar-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.sidebar-list li::before { content: counter(sidebar, decimal-leading-zero); position: absolute; top: 1.05rem; left: 0; color: #9a7a00; font-size: .7rem; font-weight: 900; }
.sidebar-list article > span, .sidebar-list .sidebar-category, .sidebar-list small, .sidebar-list time { color: var(--muted); font-size: .7rem; font-weight: 700; }
.sidebar-list h3 { margin: .3rem 0; font-size: .95rem; line-height: 1.28; }
.sidebar-list a { background-image: linear-gradient(currentColor, currentColor); background-position: 0 100%; background-repeat: no-repeat; background-size: 0 1px; transition: background-size .2s ease; }
.sidebar-list a:hover { background-size: 100% 1px; }
.sidebar-list-time li { padding-left: 0; }
.sidebar-list-time li::before { display: none; }

.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.report-copy p { max-width: 34rem; color: var(--muted); font-size: 1.05rem; }
.report-art { position: relative; min-height: 570px; display: grid; place-items: center; overflow: hidden; padding: 2rem; border-radius: var(--radius-xl); background: #fff8db; }
.report-art img { width: 115%; max-width: none; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); transform: translateX(10%); }
.report-stat { position: absolute; left: 8%; top: 12%; padding: 1rem 1.25rem; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.report-stat strong, .report-stat small { display: block; }.report-stat strong { font-size: 1.8rem; }.report-stat small { color: var(--muted); }
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pick-card { min-height: 285px; padding: 1.8rem; border-radius: var(--radius-xl); background: #fff; }
.pick-card:nth-child(2) { background: var(--surface-purple); }.pick-card:nth-child(3) { background: #fff8db; }
.pick-card h3 { margin: 1.5rem 0 .75rem; font-size: 1.35rem; line-height: 1.25; }
.pick-card p { color: var(--muted); }
.form-status { min-height: 1.5rem; color: var(--brand); font-weight: 700; }
.site-footer { padding-top: 4rem; background: var(--ink); color: #fff; border-top: 1px solid rgb(255 255 255 / .1); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1fr) 2fr; gap: 5rem; padding-bottom: 3rem; }
.brand-inverse { color: #fff; }.footer-brand > p { max-width: 20rem; color: rgb(255 255 255 / .65); }
.social-links { display: flex; gap: .75rem; margin-top: 1.5rem; }.social-links[hidden] { display: none; }.social-links a { display: grid; min-width: 44px; height: 44px; place-items: center; padding: 0 .5rem; border-radius: 50%; background: rgb(255 255 255 / .1); font-size: .75rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }.footer-heading { margin: 0 0 1.25rem; color: #fff; font-size: 1rem; font-weight: 700; }.footer-links a { display: block; padding: .35rem 0; color: rgb(255 255 255 / .65); font-size: .9rem; }.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 1.5rem; border-top: 1px solid rgb(255 255 255 / .1); color: rgb(255 255 255 / .55); font-size: .8rem; }

/* About page */
.desktop-nav .is-current { background: var(--surface-muted); }
.about-hero { min-height: 748px; background: var(--surface-purple); }
.about-hero-copy { display: flex; flex-direction: column; align-items: center; max-width: 66rem; padding-top: 1rem; text-align: center; }
.about-hero-copy h1 { max-width: 14ch; margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 4.5rem); line-height: 1.08; letter-spacing: -.05em; }
.about-hero-copy > p { max-width: 43rem; margin: 0; color: var(--muted); font-size: 1.05rem; }
.about-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.75rem; }
.about-actions .button-light { border: 1px solid var(--border); }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; overflow: hidden; border-radius: var(--radius-md); background: #fff; }
.about-stats > div { padding: 1.6rem; text-align: center; border-right: 1px solid #ececec; }
.about-stats > div:last-child { border-right: 0; }
.about-stats strong, .about-stats small { display: block; }
.about-stats strong { font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 500; letter-spacing: -.04em; }
.about-stats strong span { color: var(--brand); }
.about-stats small { margin-top: .35rem; color: var(--muted); }
.mission-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.mission-intro h2, .story-title h2 { max-width: 14ch; margin: .75rem 0 0; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3rem); line-height: 1.15; letter-spacing: -.04em; }
.mission-intro p { margin: 0 0 1rem; color: var(--muted); font-size: 1.05rem; }
.mission-media { position: relative; margin-top: 4rem; overflow: hidden; min-height: 520px; border-radius: var(--radius-xl); background: #e9e9eb; }
.mission-media > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center; }
.mission-card { position: absolute; right: 2rem; bottom: 2rem; max-width: 24rem; padding: 1.5rem; border-radius: var(--radius-lg); background: rgb(255 255 255 / .94); box-shadow: var(--shadow-card); backdrop-filter: blur(10px); }
.mission-card span { color: var(--muted); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.mission-card strong { display: block; margin: .4rem 0; font-size: 1.35rem; }.mission-card p { margin: 0; color: var(--muted); }
.about-story { background: #fff; }
.story-layout { display: grid; grid-template-columns: 42% 1fr; gap: 5rem; align-items: start; }
.story-title { position: sticky; top: 2rem; }
.timeline { position: relative; margin: 0; padding: 0 0 0 3.5rem; list-style: none; }
.timeline::before { content: ""; position: absolute; top: .75rem; bottom: .75rem; left: 1.25rem; width: 1px; background: var(--border); }
.timeline li { position: relative; min-height: 150px; padding-bottom: 2.5rem; }
.timeline li::before { content: ""; position: absolute; top: .25rem; left: -3.5rem; width: 2.5rem; height: 2.5rem; border: .65rem solid var(--brand); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 6px #fff; }
.timeline-year { color: var(--muted); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.timeline h3 { margin: .45rem 0; font-size: 1.3rem; }.timeline p { max-width: 36rem; margin: 0; color: var(--muted); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.principle-grid article { min-height: 230px; padding: 1.5rem; border-radius: var(--radius-xl); background: #fff; text-align: center; }
.principle-grid article > span { display: grid; width: 60px; height: 60px; margin: 0 auto 2rem; place-items: center; border-radius: 50%; background: var(--brand-soft); font-weight: 900; }
.principle-grid h3 { margin: 0 0 .65rem; font-size: 1.15rem; }.principle-grid p { margin: 0; color: var(--muted); }
.faq-list { display: grid; gap: .75rem; }
.faq-list details { padding: 1.25rem 1.5rem; border-radius: var(--radius-lg); background: var(--surface-muted); }
.faq-list summary { position: relative; padding-right: 3rem; font-weight: 700; font-size: 1.05rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 0; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 54rem; margin: 1rem 0 0; color: var(--muted); }

/* Blog archive */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.blog-hero { min-height: 408px; background: var(--surface-purple); }
.blog-hero h1 { max-width: 15ch; margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.25rem); line-height: 1.08; letter-spacing: -.05em; }
.blog-hero p { max-width: 42rem; margin: 0; color: var(--muted); font-size: 1.05rem; }
.blog-filters { display: flex; flex-wrap: wrap; gap: .3rem; width: fit-content; max-width: 100%; margin-bottom: 2rem; padding: .35rem; border-radius: var(--radius-pill); background: #fff; }
.blog-filters button { min-height: 44px; padding: .65rem 1.2rem; border: 0; border-radius: var(--radius-pill); background: transparent; color: var(--muted); font-size: .82rem; font-weight: 700; cursor: pointer; }
.blog-filters button.is-active { background: var(--ink); color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.blog-card { display: flex; min-width: 0; flex-direction: column; padding: .85rem; border-radius: var(--radius-xl); background: #fff; }
.blog-card[hidden] { display: none; }
.blog-card-image { display: block; overflow: hidden; border-radius: .9rem; background: #e9e9eb; }
.blog-card-image img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.025); }
.blog-card-body { display: flex; flex: 1; flex-direction: column; padding: 1rem .6rem .35rem; }
.blog-card h2 { margin: .55rem 0 .65rem; font-size: 1.2rem; line-height: 1.25; letter-spacing: -.02em; }
.blog-card p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--muted); font-size: .88rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.blog-card .story-meta { margin: auto 0 0; padding-top: 1.25rem; font-size: .72rem; }
.blog-card .story-meta > * + *::before { margin-right: .55rem; }.blog-card .story-meta { gap: .3rem .55rem; }
.filter-empty { padding: 3rem; border-radius: var(--radius-xl); background: #fff; text-align: center; }
.blog-guide { background: #fff; }

/* Article page */
.container-narrow { width: min(calc(100% - 2 * var(--gutter)), 45rem); margin-inline: auto; }
.article-shell { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4.5rem, 8vw, 7rem); background: var(--surface-muted); }
.article-header { grid-area: article-header; width: min(100%, 45rem); }
.article-header h1 { max-width: 14ch; margin: 1rem 0; font-family: var(--font-display); font-size: clamp(2.75rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -.05em; }
.article-breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; color: var(--muted); font-size: .8rem; font-weight: 700; }
.article-breadcrumbs a { text-decoration: underline; text-underline-offset: .2rem; }
.article-deck { max-width: 42rem; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.2rem); }
.article-byline { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-byline-facts { justify-content: flex-end; }
.article-author { display: flex; align-items: center; gap: .75rem; }
.article-author img, .article-author-card img { flex: 0 0 auto; border-radius: 50%; object-fit: cover; object-position: 24% 25%; }
.article-author p { margin: 0; }.article-author span, .article-author strong { display: block; }.article-author span { color: var(--muted); font-size: .72rem; }.article-author strong { font-size: .9rem; }
.article-facts { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem; color: var(--muted); font-size: .78rem; }
.article-facts > * { padding: .35rem .7rem; border: 1px solid var(--border); border-radius: var(--radius-pill); }
.article-facts .article-tag { border-color: var(--ink); color: var(--ink); font-weight: 800; }
.article-hero { grid-area: article-hero; width: 100%; margin: 3.75rem 0 0; }
.article-hero-media { position: relative; overflow: hidden; width: 100%; aspect-ratio: 16 / 10; border: 1px solid rgb(17 17 17 / .08); border-radius: var(--radius-xl); background: #e9e9eb; }
.article-hero figcaption { margin-top: .75rem; color: var(--muted); font-size: .75rem; }
.article-reading-layout { display: grid; grid-template-columns: minmax(14rem, 17rem) minmax(0, 50rem); grid-template-areas: "article-rail article-header" "article-rail article-hero" "article-rail article-content"; justify-content: center; column-gap: clamp(2rem, 5vw, 5rem); row-gap: 0; align-items: start; }
.article-rail { grid-area: article-rail; min-width: 0; }
.article-rail-sticky { position: sticky; top: calc(76px + 1.25rem); display: grid; max-height: calc(100vh - 76px - 2.5rem); max-height: calc(100dvh - 76px - 2.5rem); gap: .8rem; padding-right: .35rem; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--brand) transparent; }
.article-rail-author, .article-toc, .article-share { padding: 1.15rem; border: 1px solid rgb(17 17 17 / .07); border-radius: var(--radius-xl); background: #fff; }
.article-rail-author { text-align: left; }
.article-rail-avatar { display: block; width: 64px; height: 64px; margin-bottom: .9rem; overflow: hidden; border-radius: 50%; }
.article-rail-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-rail-author > span { color: #7c6500; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article-rail-author h2 { margin: .25rem 0 .1rem; font-size: 1.12rem; line-height: 1.2; }
.article-rail-author strong { display: block; color: var(--muted); font-size: .75rem; }
.article-rail-author p { margin: .75rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.article-toc h2 { margin: 0 0 .75rem; font-size: .9rem; letter-spacing: .01em; }
.article-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: article-toc; }
.article-toc li { counter-increment: article-toc; position: relative; padding-left: 1.65rem; border-top: 1px solid #ededed; }
.article-toc li::before { position: absolute; top: .65rem; left: 0; color: #9a7a00; font-size: .65rem; font-weight: 900; content: counter(article-toc, decimal-leading-zero); }
.article-toc li:first-child { border-top: 0; }
.article-toc a { display: block; padding: .6rem 0; color: var(--muted); font-size: .75rem; font-weight: 700; line-height: 1.35; text-decoration: none; }
.article-toc .toc-level-3 { margin-left: .7rem; }
.article-toc a:hover, .article-toc a:focus-visible, .article-toc a[aria-current="true"] { color: var(--ink); }
.article-toc a[aria-current="true"] { font-weight: 800; text-decoration: none; }
.article-share { display: flex; align-items: center; gap: .55rem; }
.article-share > span { margin-right: auto; color: var(--muted); font-size: .7rem; }
.article-share a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: #fff; font-size: .75rem; font-weight: 800; }
.article-content { grid-area: article-content; width: min(100%, 45rem); min-width: 0; margin-top: 3rem; color: #2f2f2f; font-size: 1.03rem; line-height: 1.72; }
.article-content > p { margin: 0 0 1.4rem; }
.article-content > section:not(.article-conclusion) > p { margin: 0 0 1.4rem; }
.article-content .article-lead { color: var(--ink); font-size: 1.16rem; }
.article-content h2 { margin: 2.7rem 0 .8rem; scroll-margin-top: 100px; color: var(--ink); font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 1.8rem); line-height: 1.2; letter-spacing: -.025em; }
.article-content h3 { scroll-margin-top: 100px; }
.article-content ul { margin: 1rem 0 1.75rem; padding-left: 1.3rem; }.article-content li { margin-bottom: .65rem; padding-left: .3rem; }
.article-content blockquote { margin: 2.5rem 0; padding: 1.5rem 1.75rem; border-left: .35rem solid var(--brand); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: #fff; color: var(--ink); font-family: var(--font-display); font-size: 1.25rem; line-height: 1.45; }
.article-content blockquote p { margin: 0; }
.article-conclusion { margin-top: 3rem; padding: 1.75rem; border-radius: var(--radius-xl); background: var(--surface-purple); }
.article-conclusion h2 { margin-top: .55rem; }.article-conclusion p { margin-bottom: 0; }
.related-posts { overflow: hidden; background: #fff; }
.related-posts .heading-row h2 { max-width: 12ch; margin: .6rem 0 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.04em; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }
.related-card { overflow: hidden; border: 1px solid #ededed; border-radius: var(--radius-xl); background: var(--surface-muted); }
.related-card > a { display: block; overflow: hidden; }.related-card > a img { width: 100%; aspect-ratio: 1.6 / 1; object-fit: cover; transition: transform .3s ease; }.related-card:hover > a img { transform: scale(1.025); }
.related-card > div { padding: 1.25rem; }.related-card h3 { margin: .55rem 0; font-size: 1.15rem; line-height: 1.28; }.related-card p { margin: 0; color: var(--muted); font-size: .85rem; }.related-card .story-meta { margin-bottom: 0; }

/* Privacy policy */
.privacy-hero { background: var(--surface-purple); }
.privacy-hero-inner { max-width: 58rem; }
.privacy-hero h1 { margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -.055em; }
.privacy-hero-inner > p { max-width: 45rem; margin: 0; color: var(--muted); font-size: 1.1rem; }
.privacy-updated { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin-top: 2rem; font-size: .82rem; }.privacy-updated span { color: var(--muted); }.privacy-updated time { font-weight: 800; }
.privacy-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.privacy-summary-grid article { min-height: 230px; padding: 1.5rem; border: 1px solid #ececec; border-radius: var(--radius-xl); }
.privacy-summary-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 2rem; border-radius: 50%; background: var(--brand); font-size: .75rem; font-weight: 900; }
.privacy-summary-grid h3 { margin: 0 0 .65rem; font-size: 1.2rem; }.privacy-summary-grid p { margin: 0; color: var(--muted); }
.privacy-layout { display: grid; grid-template-columns: 16rem minmax(0, 46rem); justify-content: space-between; gap: 4rem; align-items: start; }
.privacy-toc { position: sticky; top: 2rem; padding: 1.4rem; border-radius: var(--radius-xl); background: #fff; }
.privacy-toc strong { display: block; margin-bottom: .8rem; font-size: .9rem; }.privacy-toc nav { display: grid; }.privacy-toc a { padding: .55rem 0; border-bottom: 1px solid #ededed; color: var(--muted); font-size: .8rem; }.privacy-toc a:last-child { border-bottom: 0; }.privacy-toc a:hover { color: var(--ink); }
.privacy-content { display: grid; gap: 1rem; }
.privacy-content > section { scroll-margin-top: 1.5rem; padding: clamp(1.4rem, 3vw, 2rem); border-radius: var(--radius-xl); background: #fff; }
.privacy-content > section > span { color: #9a7a00; font-size: .72rem; font-weight: 900; }.privacy-content h2 { margin: .35rem 0 1rem; font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 1.8rem); letter-spacing: -.025em; }.privacy-content p { color: var(--muted); }.privacy-content p:last-child { margin-bottom: 0; }.privacy-content a { font-weight: 800; text-decoration: underline; text-underline-offset: .2rem; }

/* Contact page */
.contact-hero { min-height: 560px; display: flex; align-items: center; background: var(--surface-purple); }
.contact-hero-inner { width: min(calc(100% - 2 * var(--gutter)), 58rem); }
.contact-hero h1 { max-width: 12ch; margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -.055em; }
.contact-hero p { max-width: 43rem; margin: 0 0 1.75rem; color: var(--muted); font-size: 1.1rem; }
.contact-channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-channel-grid article { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; min-height: 220px; padding: 1.5rem; border: 1px solid #ececec; border-radius: var(--radius-xl); }
.contact-channel-number { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--brand); font-size: .75rem; font-weight: 900; }
.contact-channel-grid h3 { margin: .45rem 0 .65rem; font-size: 1.25rem; }.contact-channel-grid p { max-width: 28rem; margin: 0 0 1.5rem; color: var(--muted); }.contact-channel-grid a { font-size: .9rem; font-weight: 800; text-decoration: underline; text-underline-offset: .2rem; }
.contact-form-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(28rem, 1.2fr); gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.contact-form-copy { position: sticky; top: 2rem; }.contact-form-copy h2 { max-width: 12ch; margin: .7rem 0 1rem; font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.04em; }.contact-form-copy > p { color: var(--muted); }
.contact-form-copy .contact-direct { margin-top: 1.5rem; }.contact-direct a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: .2rem; overflow-wrap: anywhere; }
.contact-form-copy dl { display: grid; gap: .8rem; margin-top: 2rem; }.contact-form-copy dl div { padding-top: .8rem; border-top: 1px solid var(--border); }.contact-form-copy dt { color: var(--muted); font-size: .75rem; }.contact-form-copy dd { margin: .15rem 0 0; font-weight: 800; }
.contact-form { padding: clamp(1.4rem, 4vw, 2rem); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-card); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }.form-field { margin-bottom: 1.15rem; }.form-field label { display: block; margin-bottom: .45rem; font-size: .85rem; font-weight: 800; }.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; color: var(--ink); }.form-field textarea { min-height: 10rem; resize: vertical; }.form-field small { display: block; margin-top: .35rem; color: var(--muted); }
.contact-consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; margin: .25rem 0 1.25rem; color: var(--muted); font-size: .8rem; }.contact-consent input { width: 18px; height: 18px; margin-top: .1rem; accent-color: var(--ink); }.contact-consent a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: .15rem; }
.contact-form-note { margin: 1rem 0 0; color: var(--muted); font-size: .75rem; }.contact-status { margin: .5rem 0 0; color: #427000; }.contact-form [aria-invalid="true"] { border-color: #a42323; }

/* Editorial policy */
.policy-hero { background: var(--surface-purple); }
.policy-hero-inner { max-width: 62rem; }
.policy-hero h1 { max-width: 15ch; margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 5.8vw, 4.6rem); line-height: 1.05; letter-spacing: -.055em; }
.policy-hero-inner > p { max-width: 47rem; margin: 0; color: var(--muted); font-size: 1.1rem; }.policy-updated { display: flex; flex-wrap: wrap; gap: .4rem 1rem; margin-top: 2rem; font-size: .82rem; }.policy-updated span { color: var(--muted); }.policy-updated time { font-weight: 800; }
.policy-pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.policy-pillar-grid article { display: flex; min-height: 280px; flex-direction: column; padding: 1.5rem; border: 1px solid #ececec; border-radius: var(--radius-xl); }.policy-pillar-grid article > span { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 2rem; border-radius: 50%; background: var(--brand); font-size: .75rem; font-weight: 900; }.policy-pillar-grid h3 { margin: 0 0 .65rem; font-size: 1.25rem; }.policy-pillar-grid p { margin: 0 0 1.5rem; color: var(--muted); }.policy-pillar-grid a { margin-top: auto; font-size: .85rem; font-weight: 800; }
.policy-layout { display: grid; grid-template-columns: 16rem minmax(0, 46rem); justify-content: space-between; gap: 4rem; align-items: start; }
.policy-toc { position: sticky; top: 2rem; padding: 1.4rem; border-radius: var(--radius-xl); background: #fff; }.policy-toc strong { display: block; margin-bottom: .8rem; font-size: .9rem; }.policy-toc nav { display: grid; }.policy-toc a { padding: .6rem 0; border-bottom: 1px solid #ededed; color: var(--muted); font-size: .8rem; }.policy-toc a:last-child { border-bottom: 0; }.policy-toc a:hover { color: var(--ink); }
.policy-content { display: grid; gap: 1rem; }.policy-content > section { scroll-margin-top: 1.5rem; padding: clamp(1.4rem, 3vw, 2rem); border-radius: var(--radius-xl); background: #fff; }.policy-content > section > span { color: #9a7a00; font-size: .72rem; font-weight: 900; }.policy-content h2 { margin: .35rem 0 1rem; font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 1.8rem); letter-spacing: -.025em; }.policy-content p, .policy-content li { color: var(--muted); }.policy-content li { margin-bottom: .55rem; }.policy-content a:not(.button) { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: .2rem; }
.policy-checklist, .policy-note { margin: 1.5rem 0; padding: 1.25rem; border-radius: var(--radius-lg); background: #fff8db; }.policy-checklist ul { margin-bottom: 0; }.policy-note p { margin: .4rem 0 0; }
.correction-steps { display: grid; gap: .65rem; margin: 1.5rem 0; padding: 0; list-style: none; }.correction-steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1rem; border: 1px solid #ededed; border-radius: var(--radius-lg); }.correction-steps li > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--brand); color: var(--ink); font-size: .7rem; font-weight: 900; }.correction-steps p { margin: .25rem 0 0; font-size: .9rem; }
.ai-rules-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin: 1.5rem 0; }.ai-rules-grid > div { padding: 1.25rem; border-radius: var(--radius-lg); background: #eff8e9; }.ai-rules-grid > div:last-child { background: #fff0ee; }.ai-rules-grid ul { margin-bottom: 0; padding-left: 1.2rem; }
.ai-disclosure { margin: 1.5rem 0 0; padding: 1.5rem; border-left: .35rem solid var(--brand); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: var(--surface-muted); }.ai-disclosure p { margin: 0; color: var(--ink); font-weight: 700; }
.policy-contact-card { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1.5rem; padding: 1.5rem; border-radius: var(--radius-xl); background: var(--surface-purple); }.policy-contact-card > div { min-width: 0; }.policy-contact-card h3 { margin: .35rem 0; font-size: 1.25rem; }.policy-contact-card p { margin: 0; }.policy-contact-card .button { flex: 0 0 auto; min-width: 12.5rem; justify-content: space-between; color: #fff; white-space: nowrap; text-decoration: none; }
.policy-version { padding: 1.25rem; border: 1px solid #eadb9b; border-radius: var(--radius-lg); background: #fff8db; }.policy-version p { margin: .4rem 0 0; color: var(--muted); }

/* Authors directory and profile */
.authors-hero { min-height: 480px; display: flex; align-items: center; background: var(--surface-purple); }.authors-hero-inner { max-width: 58rem; }.authors-hero h1 { max-width: 12ch; margin: 1.25rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -.055em; }.authors-hero p { max-width: 43rem; margin: 0; color: var(--muted); font-size: 1.1rem; }
.authors-directory .section-heading h2 { max-width: 12ch; }.authors-directory-intro { max-width: 28rem; color: var(--muted); }.authors-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.author-card { display: grid; grid-template-columns: 42% minmax(0, 1fr); min-height: 330px; overflow: hidden; border: 1px solid #ececec; border-radius: var(--radius-xl); }.author-card-portrait { min-height: 100%; overflow: hidden; background: #e9e9eb; }.author-card-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }.author-card:hover .author-card-portrait img { transform: scale(1.025); }.author-card > div { display: flex; flex-direction: column; padding: 1.5rem; }.author-card > div > span { color: #7c6500; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }.author-card h3 { margin: .55rem 0 .7rem; font-size: 1.4rem; }.author-card p { margin: 0 0 1.5rem; color: var(--muted); font-size: .9rem; }.author-profile-link { margin-top: auto; font-size: .85rem; font-weight: 800; }
.authors-standards-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }.authors-standards-layout h2 { max-width: 14ch; margin: .7rem 0 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.04em; }.authors-standards-layout p { max-width: 34rem; margin-top: 0; color: var(--muted); }
.author-hero { background: var(--surface-purple); }.author-hero-layout { display: grid; grid-template-columns: minmax(18rem, 34%) minmax(0, 1fr); gap: clamp(3rem, 7vw, 6rem); align-items: center; }.author-portrait-large { overflow: hidden; min-height: 460px; border-radius: var(--radius-xl); background: #e9e9eb; }.author-portrait-large img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }.author-role { display: inline-block; margin-top: 1.5rem; color: #7c6500; font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }.author-hero-copy h1 { margin: .45rem 0 .8rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.75rem); line-height: 1.05; letter-spacing: -.055em; }.author-hero-copy > p { max-width: 41rem; color: var(--muted); font-size: 1.05rem; }.author-topics { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.4rem; }.author-topics span { padding: .45rem .75rem; border: 1px solid rgb(17 17 17 / .18); border-radius: var(--radius-pill); font-size: .75rem; font-weight: 700; }.author-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }.author-actions .button-light { border: 1px solid var(--border); }
.author-about-layout { display: grid; grid-template-columns: 38% minmax(0, 1fr); gap: 5rem; }.author-about-layout h2 { max-width: 12ch; margin: .7rem 0 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.04em; }.author-about-layout > div:last-child > p { color: var(--muted); font-size: 1.02rem; }.author-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin-top: 2rem; }.author-facts div { padding: 1rem; border-radius: var(--radius-lg); background: var(--surface-muted); }.author-facts dt { color: var(--muted); font-size: .72rem; }.author-facts dd { margin: .3rem 0 0; font-weight: 800; }
.author-articles .heading-row h2 { margin: .5rem 0 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -.04em; }.author-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }.author-article-card { overflow: hidden; border-radius: var(--radius-xl); background: #fff; }.author-article-card > a { display: block; overflow: hidden; }.author-article-card img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; transition: transform .3s ease; }.author-article-card:hover img { transform: scale(1.025); }.author-article-card > div { padding: 1.25rem; }.author-article-card > div > span { color: #7c6500; font-size: .72rem; font-weight: 800; text-transform: uppercase; }.author-article-card h3 { margin: .55rem 0; font-size: 1.15rem; line-height: 1.28; }.author-article-card p { margin: 0; color: var(--muted); font-size: .85rem; }.author-article-card .story-meta { margin-bottom: 0; }
.author-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }.author-contact-inner h2 { max-width: 15ch; margin: .55rem 0; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -.04em; }.author-contact-inner p { max-width: 39rem; margin: 0; color: var(--muted); }.author-contact-inner .button { flex: 0 0 auto; }

/* Terms of use */
.terms-rules-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin: 1.5rem 0; }
.terms-rules-grid > div { padding: 1.25rem; border-radius: var(--radius-lg); background: #eff8e9; }
.terms-rules-grid > div:last-child { background: #fff8db; }
.terms-rules-grid ul { margin-bottom: 0; padding-left: 1.2rem; }

/* Cookie policy and consent controls */
.cookie-hero-button { margin-top: 1.75rem; }
.cookie-inline-link { margin-top: auto; padding: 0; border: 0; background: transparent; font-size: .85rem; font-weight: 800; text-align: left; cursor: pointer; }
.cookie-status-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; margin: 1.5rem 0; padding: 1.25rem; border-radius: var(--radius-lg); background: #eff8e9; }
.cookie-status-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #cfe9bf; font-weight: 900; }.cookie-status-card p { margin: .35rem 0 0; }
.cookie-status-card code { overflow-wrap: anywhere; }
.cookie-category-list { display: grid; gap: .75rem; margin-top: 1.5rem; }.cookie-category-list article { padding: 1.25rem; border: 1px solid #ededed; border-radius: var(--radius-lg); }.cookie-category-list article > div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }.cookie-category-list article span { padding: .3rem .6rem; border-radius: var(--radius-pill); background: var(--surface-muted); color: var(--muted); font-size: .7rem; font-weight: 800; }.cookie-category-list p { margin: .55rem 0 0; }
.cookie-banner { position: fixed; z-index: 100; right: 1rem; bottom: 1rem; display: grid; width: min(calc(100% - 2rem), 27rem); gap: 1.15rem; padding: 1.4rem; border: 1px solid rgb(255 255 255 / .15); border-radius: var(--radius-xl); background: var(--ink); color: #fff; box-shadow: 0 20px 70px rgb(0 0 0 / .3); }.cookie-banner[hidden], .cookie-consent-layer[hidden] { display: none; }.cookie-banner h2 { margin: 0 0 .4rem; font-family: var(--font-display); font-size: 1.25rem; }.cookie-banner p { margin: 0; color: rgb(255 255 255 / .68); font-size: .85rem; }.cookie-banner p a { color: #fff; text-decoration: underline; text-underline-offset: .15rem; }.cookie-banner-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; }.cookie-banner-actions .button { min-height: 42px; padding: .55rem .8rem; white-space: nowrap; }.cookie-banner-actions [data-cookie-customize] { grid-column: 1 / -1; color: #fff; border: 1px solid rgb(255 255 255 / .28); background: transparent; }
.cookie-consent-layer { position: fixed; z-index: 110; inset: 0; display: grid; justify-items: end; background: rgb(17 17 17 / .68); backdrop-filter: blur(5px); }.cookie-consent-dialog { width: min(100%, 31rem); height: 100vh; height: 100dvh; overflow-y: auto; border-radius: var(--radius-xl) 0 0 var(--radius-xl); background: #fff; box-shadow: -20px 0 80px rgb(0 0 0 / .3); }.cookie-dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.5rem 1rem; }.cookie-dialog-header h2 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: 1.6rem; }.cookie-dialog-header p { margin: 0; color: var(--muted); font-size: .85rem; }.cookie-dialog-close { flex: 0 0 44px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--surface-muted); font-size: 1.35rem; cursor: pointer; }
.cookie-options { display: grid; gap: .65rem; padding: .5rem 1.5rem 1.5rem; }.cookie-option { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid #ededed; border-radius: var(--radius-lg); }.cookie-option strong, .cookie-option small { display: block; }.cookie-option small { margin-top: .25rem; color: var(--muted); }.cookie-switch { position: relative; display: inline-flex; }.cookie-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }.cookie-switch span { position: relative; width: 48px; height: 28px; border-radius: var(--radius-pill); background: #bbb; transition: background .2s ease; }.cookie-switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgb(0 0 0 / .2); transition: transform .2s ease; }.cookie-switch input:checked + span { background: var(--ink); }.cookie-switch input:checked + span::after { transform: translateX(20px); }.cookie-switch input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 3px; }.cookie-switch input:disabled + span { background: #6d725f; opacity: .7; }
.cookie-dialog-footer { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .6rem; padding: 1rem 1.5rem 1.5rem; border-top: 1px solid #ededed; }.cookie-dialog-footer .button-light { border: 1px solid var(--border); }.cookie-dialog-legal { padding: 0 1.5rem 1rem; color: var(--muted); font-size: .75rem; }.cookie-dialog-legal a { color: var(--ink); font-weight: 800; text-decoration: underline; }.cookie-dialog-open { overflow: hidden; }

/* Motion and interaction feedback */
.feature-story-card, .pick-card, .blog-card, .author-card, .related-card, .search-result-card { transition: box-shadow var(--motion-base) ease, transform var(--motion-base) var(--ease-out); }
.feature-story-card:focus-within, .pick-card:focus-within, .blog-card:focus-within, .author-card:focus-within, .related-card:focus-within, .search-result-card:focus-within { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.motion-ready .motion-reveal { opacity: 0; translate: 0 14px; transition: opacity 420ms ease, translate 480ms var(--ease-out); transition-delay: var(--reveal-delay, 0ms); }
.motion-ready .motion-reveal.is-visible { opacity: 1; translate: 0 0; }
.cookie-banner:not([hidden]) { animation: cookie-rise var(--motion-base) var(--ease-out); }
.cookie-consent-layer:not([hidden]) { animation: consent-fade var(--motion-fast) ease; }
.cookie-consent-layer:not([hidden]) .cookie-consent-dialog { animation: consent-drawer var(--motion-base) var(--ease-out); }
@keyframes cookie-rise { from { opacity: 0; transform: translateY(16px); } }
@keyframes consent-fade { from { opacity: 0; } }
@keyframes consent-drawer { from { transform: translateX(24px); } }

@media (hover: hover) {
  .feature-story-card:hover, .pick-card:hover, .blog-card:hover, .author-card:hover, .related-card:hover, .search-result-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
}

/* Search and not-found pages */
.search-hero { background: var(--surface-purple); }
.search-hero-inner { max-width: 62rem; }
.search-hero h1, .not-found-copy h1 { max-width: 13ch; margin: 1.2rem 0 1rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.8rem); line-height: 1.04; letter-spacing: -.055em; }
.search-hero-inner > p, .not-found-copy > p { max-width: 43rem; color: var(--muted); font-size: 1.05rem; }
.search-page-form { max-width: 50rem; margin-top: 2rem; }
.search-page-form label, .not-found-search label { display: block; margin-bottom: .55rem; font-size: .82rem; font-weight: 800; }
.search-page-form > div, .not-found-search > div { display: flex; gap: .65rem; }
.search-page-form input, .not-found-search input { width: 100%; min-height: 54px; padding: .85rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-pill); background: #fff; font: inherit; }
.search-suggestions { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; margin-top: 1.1rem; font-size: .78rem; }.search-suggestions > span { color: var(--muted); }.search-suggestions a { padding: .4rem .65rem; border: 1px solid rgb(17 17 17 / .16); border-radius: var(--radius-pill); font-weight: 700; }
.search-results-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }.search-results-heading h2 { margin: .5rem 0 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.04em; }.search-results-heading p { margin: 0; color: var(--muted); font-size: .85rem; }
.search-type-filters { display: flex; width: fit-content; gap: .35rem; margin: -1rem 0 2rem; padding: .35rem; border-radius: var(--radius-pill); background: #fff; }.search-type-filters button { display: inline-flex; min-height: 44px; align-items: center; gap: .5rem; padding: .65rem 1rem; border: 0; border-radius: var(--radius-pill); background: transparent; color: var(--muted); font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; }.search-type-filters button:hover { color: var(--ink); }.search-type-filters button.is-active { background: var(--ink); color: #fff; }.search-type-filters button span { display: grid; min-width: 1.45rem; min-height: 1.45rem; padding: 0 .3rem; place-items: center; border-radius: var(--radius-pill); background: rgb(17 17 17 / .08); font-size: .68rem; }.search-type-filters button.is-active span { background: rgb(255 255 255 / .18); }
.search-results-list { display: grid; gap: .8rem; }.search-result-card { display: grid; grid-template-columns: 15rem minmax(0, 1fr); gap: 1.5rem; padding: .85rem; border-radius: var(--radius-xl); background: #fff; }.search-result-image { display: block; overflow: hidden; border-radius: .9rem; background: #e9e9eb; }.search-result-image img { width: 100%; height: 100%; min-height: 176px; object-fit: cover; }.search-result-card > div { align-self: center; padding: .65rem 1rem .65rem 0; }.search-result-card h3 { margin: .45rem 0 .55rem; font-size: 1.3rem; line-height: 1.25; }.search-result-card p { max-width: 48rem; margin: 0; color: var(--muted); font-size: .9rem; }.search-result-card .story-meta { margin: 1rem 0 0; font-size: .72rem; }.search-result-author .search-result-image img { object-position: center top; }
.search-empty { padding: clamp(2rem, 6vw, 4rem); border-radius: var(--radius-xl); background: #fff; text-align: center; }.search-empty > span { display: grid; width: 64px; height: 64px; margin: 0 auto 1.25rem; place-items: center; border-radius: 50%; background: var(--surface-purple); font-size: 2rem; }.search-empty h2 { margin: 0; font-family: var(--font-display); font-size: 2rem; }.search-empty p { max-width: 33rem; margin: .75rem auto 1.5rem; color: var(--muted); }
.not-found-hero { background: var(--surface-purple); }.not-found-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(22rem, 42%); gap: clamp(2rem, 7vw, 7rem); align-items: center; min-height: 34rem; }.not-found-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }.not-found-code { display: flex; align-items: center; justify-content: center; color: var(--ink); font-family: var(--font-display); font-size: clamp(5rem, 10vw, 9rem); font-weight: 900; letter-spacing: -.08em; }.not-found-code > div { position: relative; display: grid; width: clamp(6rem, 11vw, 9rem); aspect-ratio: 1; margin: 0 .15em; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: .42em; }.not-found-code i { position: absolute; inset: 13%; border: 1px solid rgb(255 255 255 / .25); border-radius: 50%; }.not-found-code b { font-style: normal; }.not-found-help .section-heading h2 { max-width: 14ch; }.not-found-search { max-width: 48rem; margin: 2rem 0 3rem; }.not-found-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }.not-found-links a { display: flex; min-height: 12rem; flex-direction: column; padding: 1.25rem; border-radius: var(--radius-xl); background: #fff; }.not-found-links span { color: var(--muted); font-size: .72rem; }.not-found-links strong { margin: auto 0 .4rem; font-size: 1.1rem; }.not-found-links small { color: var(--muted); }

.not-found-code b { display: block; line-height: 1; transform: translate(-.095em, -.015em); }
.not-found-search .search-form { width: 100%; margin: 0; padding: 0; }

/* Accessibility statement */
.accessibility-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 1.5rem; }
.accessibility-feature-grid article { padding: 1.25rem; border: 1px solid #ededed; border-radius: var(--radius-lg); background: #fff; }
.accessibility-feature-grid strong { display: block; margin-bottom: .45rem; font-size: .95rem; }
.accessibility-feature-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.accessibility-limitations { margin-top: 1.25rem; padding: 1.25rem; border: 1px solid #e0b8b2; border-radius: var(--radius-lg); background: #fff0ee; }
.accessibility-limitations ul { margin: 0; padding-left: 1.25rem; }
.accessibility-limitations li + li { margin-top: .55rem; }

/* Global desktop news rail: stays visible independently of page sections. */
@media (min-width: 1024px) {
  body.has-news-sidebar {
    --news-sidebar-space: 19.5rem;
    padding-right: var(--news-sidebar-space);
  }
  body.has-news-sidebar .site-header {
    width: calc(100% + var(--news-sidebar-space));
  }
  .news-sidebar {
    position: fixed;
    z-index: 15;
    top: calc(var(--header-height) + 1rem);
    right: 1rem;
    width: 17.5rem;
    max-height: calc(100vh - var(--header-height) - 2rem);
    max-height: calc(100dvh - var(--header-height) - 2rem);
    padding: 0 .35rem 0 0;
    border-radius: var(--radius-xl);
    background: var(--surface-muted);
    box-shadow: var(--shadow-card);
  }
  .latest-layout { display: block; }
  .hero-grid, .report-grid { grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 40%); gap: 2rem; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1440px) {
  body.has-news-sidebar { --news-sidebar-space: 21.5rem; }
  .news-sidebar { right: 1.5rem; width: 19rem; }
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .topic-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1023px) {
  .desktop-nav { display: none; }.menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 42%; gap: 3rem; }.floating-card-top { left: -10%; }.floating-card-bottom { right: -3%; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }.topic-card { min-height: 230px; }.topic-icon { margin-bottom: 2rem; }
  .latest-layout { grid-template-columns: 1fr; }.news-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); width: auto; max-height: none; padding-right: 0; overflow: visible; box-shadow: none; }.home-news-sidebar { width: min(calc(100% - 2 * var(--gutter)), var(--container)); margin: clamp(2rem, 5vw, 4rem) auto; }.feature-story-card { grid-template-columns: 1fr 44%; }.report-art { min-height: 480px; }
  .footer-grid { gap: 3rem; }
  .about-hero { min-height: auto; }.about-stats { margin-top: 3.5rem; }.mission-intro { gap: 2.5rem; }.story-layout { gap: 3rem; }.principle-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-layout { grid-template-columns: 13rem minmax(0, 1fr); gap: 2rem; }
  .contact-form-layout { grid-template-columns: 1fr; gap: 2.5rem; }.contact-form-copy { position: static; }
  .policy-layout { grid-template-columns: 13rem minmax(0, 1fr); gap: 2rem; }
  .authors-grid { grid-template-columns: 1fr; }.author-card { grid-template-columns: 36% minmax(0, 1fr); }.author-hero-layout { gap: 3rem; }.author-about-layout { gap: 3rem; }.author-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-reading-layout { grid-template-columns: minmax(12rem, 14rem) minmax(0, 1fr); gap: 2rem; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  :root { --gutter: 1rem; }
  html { scroll-behavior: auto; }.menu-open { overflow: hidden; }.search-panel { position: fixed; top: 76px; }
  .hero { padding: 2rem 0 3rem; }.hero-grid, .report-grid { grid-template-columns: 1fr; }
  .media-backdrop { filter: blur(16px) brightness(.74) saturate(.88); }
  .hero-copy h1 { max-width: none; font-size: clamp(2.5rem, 12vw, 3.4rem); }.hero-media { max-width: 100%; justify-self: stretch; margin-top: 1rem; }.hero-image-wrap { aspect-ratio: 4 / 4.8; }
  .floating-card { width: 132px; padding: .75rem; }.floating-card-top { left: 4%; }.floating-card-bottom { right: 3%; }.hero-notes { grid-template-columns: 1fr; margin: 2rem var(--gutter) 0; gap: 1rem; }
  .heading-row { display: block; }.heading-row .text-link { display: inline-block; margin-top: 1.25rem; }
  .topic-grid { display: flex; width: calc(100vw - var(--gutter)); overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 1rem 0; }.topic-card { flex: 0 0 82vw; scroll-snap-align: start; }
  .feature-story-card, .feature-story-card.reverse { grid-template-columns: 1fr; padding: 1rem; gap: 1.5rem; }.feature-story-card .card-copy, .feature-story-card.reverse .card-copy { order: 2; padding: .5rem .5rem 1rem; }.feature-story-card h3 { font-size: 2.2rem; }.card-art { min-height: 230px; }.news-sidebar { grid-template-columns: 1fr; }
  .report-copy { order: 1; }.report-art { min-height: 380px; }.report-art img { width: 125%; }.pick-grid { grid-template-columns: 1fr; }.pick-card { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }.footer-links { grid-template-columns: repeat(2, 1fr); }.footer-bottom { gap: 1rem; flex-direction: column; }
  .about-hero-copy h1 { font-size: clamp(2.6rem, 13vw, 3.5rem); }.about-stats { grid-template-columns: repeat(2, 1fr); }.about-stats > div:nth-child(2) { border-right: 0; }.about-stats > div:nth-child(-n+2) { border-bottom: 1px solid #ececec; }
  .mission-intro, .story-layout { grid-template-columns: 1fr; gap: 2rem; }.mission-media, .mission-media > img { min-height: 430px; }.mission-card { right: 1rem; bottom: 1rem; left: 1rem; }.story-title { position: static; }.timeline { padding-left: 3rem; }.timeline li::before { left: -3rem; }.principle-grid { grid-template-columns: 1fr; }.principle-grid article { min-height: 210px; }
  .blog-hero { min-height: auto; }.blog-hero h1 { font-size: clamp(2.6rem, 13vw, 3.5rem); }.blog-filters { width: 100%; flex-wrap: nowrap; overflow-x: auto; border-radius: var(--radius-lg); }.blog-filters button { flex: 0 0 auto; }.blog-grid { grid-template-columns: 1fr; }
  .article-shell { padding-top: 2.5rem; }.article-header h1 { max-width: none; font-size: clamp(2.45rem, 12vw, 3.25rem); }.article-byline { align-items: flex-start; flex-direction: column; }.article-byline-facts { align-items: flex-end; }.article-facts { justify-content: flex-start; }.article-hero { margin-top: 2rem; }.article-hero-media { aspect-ratio: 4 / 3; }.article-reading-layout { grid-template-columns: 1fr; grid-template-areas: "article-header" "article-rail" "article-hero" "article-content"; }.article-rail { margin-top: 2rem; }.article-rail-sticky { position: static; max-height: none; padding-right: 0; overflow: visible; }.article-rail-author { display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 1rem; }.article-rail-avatar { grid-row: 1 / 5; margin-bottom: 0; }.article-rail-author p { grid-column: 1 / -1; }.article-content { margin-top: 2rem; font-size: 1rem; }.article-content blockquote { margin-inline: 0; padding: 1.25rem; }.related-grid { grid-template-columns: 1fr; }
  .privacy-hero h1 { font-size: clamp(2.65rem, 14vw, 3.6rem); }.privacy-summary-grid { grid-template-columns: 1fr; }.privacy-summary-grid article { min-height: auto; }.privacy-layout { grid-template-columns: 1fr; }.privacy-toc { position: static; }.privacy-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; }
  .contact-hero { min-height: auto; }.contact-hero h1 { max-width: none; font-size: clamp(2.65rem, 14vw, 3.6rem); }.contact-channel-grid { grid-template-columns: 1fr; }.contact-channel-grid article { min-height: auto; }.field-row { grid-template-columns: 1fr; }.contact-form { padding: 1.25rem; }
  .policy-hero h1 { max-width: none; font-size: clamp(2.55rem, 13vw, 3.5rem); }.policy-pillar-grid { grid-template-columns: 1fr; }.policy-pillar-grid article { min-height: auto; }.policy-layout { grid-template-columns: 1fr; }.policy-toc { position: static; }.policy-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; }.ai-rules-grid { grid-template-columns: 1fr; }.policy-contact-card { align-items: flex-start; flex-direction: column; }
  .authors-hero { min-height: auto; }.authors-hero h1 { max-width: none; font-size: clamp(2.65rem, 14vw, 3.6rem); }.authors-directory .heading-row { display: block; }.authors-directory-intro { margin-top: 1rem; }.author-card { grid-template-columns: 1fr; }.author-card-portrait { min-height: 300px; }.author-card-portrait img { height: 300px; }.authors-standards-layout, .author-hero-layout, .author-about-layout { grid-template-columns: 1fr; gap: 2rem; }.author-portrait-large, .author-portrait-large img { min-height: 390px; }.author-portrait-large img { height: 390px; }.author-hero-copy h1 { font-size: clamp(2.8rem, 14vw, 3.7rem); }.author-facts { grid-template-columns: 1fr; }.author-article-grid { grid-template-columns: 1fr; }.author-contact-inner { align-items: flex-start; flex-direction: column; }
  .terms-rules-grid { grid-template-columns: 1fr; }
  .search-page-form > div, .not-found-search > div { display: grid; }.search-page-form .button, .not-found-search .button { width: 100%; }.search-results-heading { align-items: flex-start; flex-direction: column; gap: .7rem; }.search-type-filters { width: 100%; overflow-x: auto; border-radius: var(--radius-lg); }.search-type-filters button { flex: 1 0 auto; justify-content: center; }.search-result-card { grid-template-columns: 1fr; gap: 1rem; }.search-result-image img { height: auto; aspect-ratio: 1.55 / 1; }.search-result-card > div { padding: .5rem; }.not-found-layout { grid-template-columns: 1fr; min-height: auto; }.not-found-code { order: -1; justify-content: flex-start; font-size: clamp(4.5rem, 25vw, 7rem); }.not-found-links { grid-template-columns: 1fr; }.not-found-links a { min-height: 9rem; }
  .accessibility-feature-grid { grid-template-columns: 1fr; }
  .cookie-banner { right: .75rem; bottom: .75rem; width: calc(100% - 1.5rem); gap: 1rem; }.cookie-banner-actions { grid-template-columns: 1fr 1fr; }.cookie-consent-dialog { width: 100%; border-radius: 0; }.cookie-dialog-footer { display: grid; }.cookie-dialog-footer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* WordPress integration */
.desktop-nav .menu, .mobile-menu .menu, .footer-links .menu { margin: 0; padding: 0; list-style: none; }
.desktop-nav .menu { display: flex; align-items: center; gap: .25rem; }
.mobile-menu .menu { display: grid; }
.footer-links .menu li + li { margin-top: .55rem; }
.current-menu-item > a, .current_page_item > a { font-weight: 900; }
.blog-filters a, .search-type-filters a { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: .65rem 1rem; border-radius: var(--radius-pill); color: var(--muted); font-size: .82rem; font-weight: 800; }
.blog-filters a:hover, .search-type-filters a:hover { color: var(--ink); }
.blog-filters a.is-active, .search-type-filters a.is-active { background: var(--ink); color: #fff; }
.navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.page-numbers { display: grid; min-width: 44px; min-height: 44px; padding: .5rem; place-items: center; border-radius: 50%; background: #fff; font-weight: 800; }
.page-numbers.current { background: var(--ink); color: #fff; }
.author-avatar, .article-author-card .avatar { border-radius: 50%; object-fit: cover; }
.author-card-portrait .avatar, .author-portrait-large .avatar { width: 100%; height: 100%; object-fit: cover; }
.article-deck { max-width: 45rem; color: var(--muted); font-size: 1.08rem; }
.article-content > :first-child, .page-content > :first-child { margin-top: 0; }
.article-content h2 { margin-top: 2.5rem; font-family: var(--font-display); font-size: clamp(1.65rem, 3vw, 2.2rem); line-height: 1.2; letter-spacing: -.03em; }
.article-content h3 { margin-top: 2rem; font-size: 1.35rem; }
.article-content a { text-decoration: underline; text-underline-offset: .15em; }
.policy-page-header { margin-bottom: 3rem; }
.policy-page-header h1 { margin: 1rem 0; font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.04; letter-spacing: -.055em; }
.policy-page-header p { color: var(--muted); font-size: 1.05rem; }
.archive-description { max-width: 44rem; color: var(--muted); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.cookie-footer-button { margin-top: .65rem; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.site-footer:has(.footer-links .menu:empty) .footer-links { opacity: .7; }

.article-comments { grid-column: 2; width: min(100%, 45rem); margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid #ededed; }
.article-comments > h2 { margin: 0 0 1.75rem; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 1.85rem); letter-spacing: -.03em; }
.comment-list, .comment-list .children { margin: 0; padding: 0; list-style: none; }
.comment-list .children { margin: 1rem 0 0 clamp(1.25rem, 4vw, 2.75rem); }
.comment-list > li + li, .comment-list .children > li + li { margin-top: 1rem; }
.comment-body { padding: 1.15rem 1.25rem; border: 1px solid rgb(17 17 17 / .07); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-card); }
.comment-pending .comment-body { border-style: dashed; background: #fffdf3; box-shadow: none; }
.comment-meta { display: flex; align-items: flex-start; gap: .75rem; }
.comment-meta img { flex: 0 0 auto; border-radius: 50%; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--border); }
.comment-author-line { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.comment-author { font-weight: 800; }
.comment-author-line time a { color: var(--muted); font-size: .8rem; }
.comment-pending-badge { padding: .3rem .65rem; border-radius: var(--radius-pill); background: #fff8db; color: #7c6500; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.comment-content { margin: .65rem 0 0; color: var(--ink); }
.comment-content > :first-child { margin-top: 0; }
.comment-content > :last-child { margin-bottom: 0; }
.comment-reply { margin-top: .65rem; }
.comment-reply a { font-size: .8rem; font-weight: 800; text-decoration: underline; text-underline-offset: .15rem; }
.comment-pagination { margin-top: 1.5rem; }
.comments-closed { color: var(--muted); }
.comment-form { margin-top: 2rem; padding: clamp(1.4rem, 4vw, 2rem); border: 1px solid rgb(17 17 17 / .07); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-card); }
.comment-form > * { margin-top: 0; margin-bottom: 0; }
.comment-form > * + * { margin-top: 1.15rem; }
.comment-form > h3 { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.01em; }
.comment-form p:empty { display: none; }
.comment-form-comment label { display: block; margin-bottom: .45rem; font-size: .85rem; font-weight: 800; }
.comment-form-comment textarea { width: 100%; min-height: 8rem; padding: .8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; color: var(--ink); resize: vertical; }
.comment-form-notice { color: var(--muted); font-size: .82rem; }
.comment-login-gate { margin-top: 2rem; padding: clamp(1.4rem, 4vw, 2rem); border: 1px solid rgb(17 17 17 / .07); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-card); text-align: center; }
.comment-login-gate > p:first-child { margin-top: 0; font-weight: 700; }
.comment-login-gate-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 1rem; }
.comment-login-gate-notice { color: var(--muted); font-size: .82rem; }
/* Nextend Social Login renders its own buttons, often with an inline
   JS-computed width that can clip the label ("Continue with Goc..."). These
   overrides round the corners and force auto/minimum width so the full
   label fits, since the plugin's inline styles can only be reached with
   !important. First check the plugin's own Buttons tab for a width/style
   setting — that is the more reliable fix. Verify against live output. */
.comment-login-gate-buttons { overflow: visible; }
.comment-login-gate-buttons .nsl-container,
.comment-login-gate-buttons .nsl-container-buttons { flex: 0 0 auto; width: auto !important; max-width: 100% !important; }
.comment-login-gate-buttons .nsl-button {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 15rem;
  border-radius: var(--radius-pill) !important;
  white-space: nowrap;
}
.comment-login-gate-buttons .nsl-button-label-container {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {
  .desktop-nav .menu { display: none; }
  .blog-filters a, .search-type-filters a { flex: 0 0 auto; }
  .not-found-search .search-form > div { display: grid; }
  .article-comments { grid-column: 1; width: 100%; }
}
