/* ============================================================================
   Aurora — an independent technology review. Crafted editorial design: warm paper,
   near-black ink, ONE flat cobalt accent, a distinctive grotesk display face, hairline
   rules, numbered indices, drop caps and pull quotes. Deliberately NO gradients, no
   glassmorphism — restraint and typography instead. Every colour is a token so a
   per-site variant can retint without touching structure.
   ========================================================================== */
:root {
  --au-accent: #2b34cc;        /* flat cobalt, used sparingly */
  --au-accent-ink: #1f269c;
  --au-ink: #15161b;
  --au-ink-2: #3d404b;
  --au-ink-3: #6d707c;
  --au-ink-4: #9a9ca6;
  --au-paper: #faf9f6;          /* warm paper */
  --au-surface: #ffffff;
  --au-wash: #f2f1ec;           /* alt-section tint */
  --au-line: #e4e3dc;
  --au-line-strong: #16171c;    /* the editorial hairline (near-black) */
  --au-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --au-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --au-maxw: 1200px;
  --au-gut: 28px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--au-ink); background: var(--au-paper);
  font-family: var(--au-body); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.au-wrap { max-width: var(--au-maxw); margin: 0 auto; padding: 0 var(--au-gut); }
.au-rule { height: 1px; background: var(--au-line); border: 0; margin: 0; }

/* ---------- masthead ---------- */
.au-topline { border-bottom: 1px solid var(--au-line); font-size: 12px; color: var(--au-ink-3); }
.au-topline .au-wrap { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.au-topline .au-date { letter-spacing: .01em; }
.au-topline .au-tag { text-transform: uppercase; letter-spacing: .16em; font-weight: 600; font-size: 10.5px; }

.au-mast { border-bottom: 2px solid var(--au-line-strong); background: var(--au-paper); position: sticky; top: 0; z-index: 40; }
.au-mast-in { display: flex; align-items: center; gap: 28px; height: 74px; }
.au-brand { display: flex; align-items: baseline; gap: 10px; font-family: var(--au-display); font-weight: 700; font-size: 26px; letter-spacing: -0.03em; color: var(--au-ink); }
.au-brand .au-logo { width: 26px; height: 26px; position: relative; top: 4px; }
.au-brand sup { font-family: var(--au-body); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--au-accent); top: -1.1em; }
.au-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.au-nav a { padding: 8px 12px; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: var(--au-ink-2); transition: color .14s; position: relative; }
.au-nav a:hover, .au-nav a.is-active { color: var(--au-ink); }
.au-nav a.is-active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--au-accent); }
.au-mast-cta { margin-left: 8px; }
.au-btn { display: inline-flex; align-items: center; gap: 8px; font: inherit; font-size: 13px; font-weight: 600; padding: 10px 18px; border: 1.5px solid var(--au-line-strong); background: var(--au-ink); color: #fff; cursor: pointer; border-radius: 0; transition: background .15s, color .15s; }
.au-btn:hover { background: var(--au-accent); border-color: var(--au-accent); }
.au-btn-ghost { background: transparent; color: var(--au-ink); }
.au-btn-ghost:hover { background: var(--au-ink); color: #fff; border-color: var(--au-ink); }

/* ---------- shared bits ---------- */
.au-kicker { display: inline-block; font-family: var(--au-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--au-accent); }
.au-kicker.on-dark { color: #fff; }
.au-byline { font-size: 13px; color: var(--au-ink-3); }
.au-byline b { color: var(--au-ink); font-weight: 600; }
.au-more { font-family: var(--au-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--au-ink); border-bottom: 2px solid var(--au-accent); padding-bottom: 2px; }
.au-more:hover { color: var(--au-accent); }
.au-ph { display: block; background: var(--au-wash); position: relative; }
.au-ph::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 13px, rgba(21,22,27,.035) 13px, rgba(21,22,27,.035) 14px); }
.au-ph.t2 { background: #e9ebf2; } .au-ph.t3 { background: #ece7e1; } .au-ph.t4 { background: #e6ebe8; }
.au-ph.ink { background: var(--au-ink); } .au-ph.ink::after { opacity: .4; }

/* ---------- section heading ---------- */
.au-sec { padding: 52px 0; }
.au-sec.wash { background: var(--au-wash); }
.au-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 16px; margin-bottom: 28px; border-bottom: 2px solid var(--au-line-strong); }
.au-sec-head h2 { font-family: var(--au-display); font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -0.02em; font-weight: 600; margin: 0; }
.au-sec-head .au-idx { font-family: var(--au-display); color: var(--au-accent); font-weight: 500; margin-right: 10px; }

/* ---------- hero: editorial lead ---------- */
.au-hero { padding: 56px 0 12px; }
.au-hero-lead { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.au-hero-lead .au-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.au-hero-lead .au-eyebrow .ln { flex: 1; height: 1px; background: var(--au-line-strong); }
.au-hero h1 { font-family: var(--au-display); font-size: clamp(38px, 5.2vw, 62px); line-height: 1.0; letter-spacing: -0.035em; font-weight: 600; margin: 0; }
.au-hero h1 a:hover { color: var(--au-accent); }
.au-hero .au-dek { font-size: clamp(17px, 1.6vw, 19px); color: var(--au-ink-2); margin: 20px 0 0; max-width: 40ch; line-height: 1.5; }
.au-hero .au-herometa { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.au-hero-fig { aspect-ratio: 4/5; overflow: hidden; }
.au-hero-fig img, .au-hero-fig .au-ph { width: 100%; height: 100%; object-fit: cover; }

/* secondary story row (3-up, vertical hairlines) */
.au-subrow { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 2px solid var(--au-line-strong); }
.au-sub { padding: 22px 26px 6px; border-right: 1px solid var(--au-line); }
.au-sub:first-child { padding-left: 0; }
.au-sub:last-child { border-right: 0; padding-right: 0; }
.au-sub .au-kicker { margin-bottom: 8px; }
.au-sub h3 { font-family: var(--au-display); font-size: 20px; line-height: 1.14; letter-spacing: -0.015em; font-weight: 500; margin: 0 0 10px; }
.au-sub h3 a:hover { color: var(--au-accent); }

/* ---------- numbered editorial index (the signature blog / latest layout) ---------- */
.au-index { border-top: 2px solid var(--au-line-strong); }
.au-entry { display: grid; grid-template-columns: 64px 1fr 190px; gap: 26px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--au-line); }
.au-entry:hover .au-entry-num { color: var(--au-accent); }
.au-entry-num { font-family: var(--au-display); font-size: 30px; font-weight: 500; color: var(--au-ink-4); line-height: 1; letter-spacing: -0.02em; transition: color .15s; }
.au-entry-main .au-kicker { margin-bottom: 8px; }
.au-entry-main h3 { font-family: var(--au-display); font-size: clamp(21px, 2.1vw, 26px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 500; margin: 0 0 8px; }
.au-entry-main h3 a:hover { color: var(--au-accent); }
.au-entry-main p { margin: 0 0 10px; color: var(--au-ink-2); font-size: 15px; max-width: 62ch; }
.au-entry-thumb { aspect-ratio: 4/3; overflow: hidden; }
.au-entry-thumb img, .au-entry-thumb .au-ph { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) { .au-entry { grid-template-columns: 40px 1fr; } .au-entry-thumb { display: none; } }

/* ---------- compact card row (used sparingly, e.g. "more from") ---------- */
.au-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.au-card { display: flex; flex-direction: column; }
.au-card-fig { aspect-ratio: 3/2; overflow: hidden; margin-bottom: 14px; }
.au-card-fig img, .au-card-fig .au-ph { width: 100%; height: 100%; object-fit: cover; }
.au-card .au-kicker { margin-bottom: 7px; }
.au-card h3 { font-family: var(--au-display); font-size: 19px; line-height: 1.18; letter-spacing: -0.015em; font-weight: 500; margin: 0 0 8px; }
.au-card h3 a:hover { color: var(--au-accent); }
.au-card .au-byline { margin-top: auto; }

/* ---------- Reviews — "we tested" feature cards ---------- */
.au-reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.au-review { display: grid; grid-template-columns: 170px 1fr; gap: 22px; }
.au-review-fig { overflow: hidden; }
.au-review-fig > * { width: 100%; height: 100%; min-height: 176px; object-fit: cover; }
.au-review-body { display: flex; flex-direction: column; }
.au-review-body .au-kicker { margin-bottom: 9px; }
.au-review-body h3 { font-family: var(--au-display); font-size: 21px; line-height: 1.16; letter-spacing: -0.018em; font-weight: 500; margin: 0 0 8px; }
.au-review-body h3 a:hover { color: var(--au-accent); }
.au-review-body p { margin: 0 0 14px; color: var(--au-ink-2); font-size: 14.5px; }
.au-verdict { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--au-line); }
.au-score { font-family: var(--au-display); font-size: 25px; font-weight: 600; color: var(--au-ink); letter-spacing: -0.02em; line-height: 1; }
.au-score span { color: var(--au-ink-4); font-size: 16px; }
.au-score-lbl { font-size: 10.5px; text-transform: uppercase; letter-spacing: .09em; color: var(--au-ink-4); line-height: 1.2; }
.au-verdict .au-byline { margin-left: auto; }
@media (max-width: 900px) { .au-reviews { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .au-review { grid-template-columns: 1fr; } .au-review-fig { aspect-ratio: 16/9; } .au-review-fig > * { min-height: 0; } }

/* ---------- Field notes — quick dispatches (4-up, vertical hairlines) ---------- */
.au-notes { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--au-line-strong); }
.au-note { display: block; padding: 24px 24px 10px; border-right: 1px solid var(--au-line); }
.au-note:first-child { padding-left: 0; }
.au-note:last-child { border-right: 0; padding-right: 0; }
.au-note .au-kicker { display: block; margin-bottom: 10px; }
.au-note h4 { font-family: var(--au-display); font-size: 17px; line-height: 1.22; letter-spacing: -0.01em; font-weight: 500; margin: 0 0 10px; transition: color .16s ease; }
.au-note:hover h4 { color: var(--au-accent); }
.au-note .au-byline { font-size: 12.5px; }
@media (max-width: 860px) { .au-notes { grid-template-columns: repeat(2, 1fr); }
  .au-note { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--au-line); }
  .au-note:nth-child(2n) { padding-left: 24px; } }
@media (max-width: 520px) { .au-notes { grid-template-columns: 1fr; } .au-note:nth-child(2n) { padding-left: 0; } }

/* ---------- The Map (resource directory / backlink rail) ---------- */
.au-mapwrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.au-mapwrap .au-intro h2 { font-family: var(--au-display); font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.025em; font-weight: 600; margin: 0 0 12px; line-height: 1.05; }
.au-mapwrap .au-intro p { color: var(--au-ink-2); margin: 0; max-width: 34ch; }
@media (max-width: 820px) { .au-mapwrap { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- CTA: flat ink block ---------- */
.au-cta { background: var(--au-ink); color: #fff; padding: 56px var(--au-gut); }
.au-cta-in { max-width: var(--au-maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.au-cta h2 { font-family: var(--au-display); font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.025em; font-weight: 600; margin: 0; max-width: 18ch; line-height: 1.04; }
.au-cta p { color: rgba(255,255,255,.66); margin: 10px 0 0; max-width: 44ch; }
.au-cta .au-btn { background: #fff; color: var(--au-ink); border-color: #fff; }
.au-cta .au-btn:hover { background: var(--au-accent); color: #fff; border-color: var(--au-accent); }

/* ---------- footer ---------- */
.au-foot { border-top: 2px solid var(--au-line-strong); padding: 48px 0 64px; }
.au-foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.au-foot-brand { font-family: var(--au-display); font-weight: 700; font-size: 22px; letter-spacing: -0.03em; }
.au-foot-brand + p { color: var(--au-ink-3); font-size: 14px; margin: 10px 0 0; max-width: 32ch; }
.au-foot h5 { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--au-ink-4); margin: 0 0 14px; }
.au-foot a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--au-ink-2); }
.au-foot a:hover { color: var(--au-accent); }
.au-foot-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--au-line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--au-ink-3); }

/* ============================================================
   Single post — universal post layout: TOC (mandatory) + editorial typography
   ============================================================ */
.au-article { padding-top: 30px; }
.au-crumb { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--au-ink-3); display: flex; gap: 8px; }
.au-crumb a:hover { color: var(--au-accent); }
.au-art-head { max-width: 820px; margin: 22px 0 0; }
.au-art-head h1 { font-family: var(--au-display); font-size: clamp(30px, 4.6vw, 52px); line-height: 1.04; letter-spacing: -0.032em; font-weight: 600; margin: 14px 0 0; }
.au-art-head .au-standfirst { font-size: clamp(18px, 1.8vw, 21px); line-height: 1.5; color: var(--au-ink-2); margin: 18px 0 0; max-width: 60ch; }
.au-art-meta { display: flex; align-items: center; gap: 18px; margin: 24px 0 0; padding: 16px 0; border-top: 1px solid var(--au-line); border-bottom: 1px solid var(--au-line); font-size: 14px; color: var(--au-ink-3); flex-wrap: wrap; }
.au-art-meta .who { display: flex; align-items: center; gap: 10px; color: var(--au-ink); font-weight: 600; }
.au-art-meta .au-ava { width: 30px; height: 30px; border-radius: 50%; background: var(--au-wash); border: 1px solid var(--au-line); flex: none; }
.au-art-fig { margin: 30px 0 0; }
.au-art-fig .au-ph, .au-art-fig img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.au-art-fig figcaption { font-size: 13px; color: var(--au-ink-3); margin-top: 10px; padding-left: 2px; border-left: 2px solid var(--au-accent); padding-left: 10px; }

.au-art-body { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 56px; margin: 44px 0 0; align-items: start; }

/* Table of contents — REQUIRED in every theme */
.au-toc { position: sticky; top: 96px; align-self: start; }
.au-toc-h { font-size: 11px; text-transform: uppercase; letter-spacing: .13em; color: var(--au-ink-4); padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--au-line); }
.au-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.au-toc li { counter-increment: toc; }
.au-toc a { display: block; padding: 8px 0 8px 30px; font-size: 13.5px; line-height: 1.35; color: var(--au-ink-3); position: relative; transition: color .14s; border-bottom: 1px solid var(--au-line); }
.au-toc a::before { content: counter(toc, decimal-leading-zero); position: absolute; left: 0; top: 8px; font-family: var(--au-display); font-size: 12px; color: var(--au-ink-4); }
.au-toc a:hover { color: var(--au-ink); }
.au-toc a.is-active { color: var(--au-accent); }
.au-toc a.is-active::before { color: var(--au-accent); }

/* article richtext (.au-rt = the universal content wrapper) */
.au-rt { font-size: 18.5px; line-height: 1.75; color: var(--au-ink); max-width: 68ch; }
.au-rt > *:first-child { margin-top: 0; }
.au-rt p { margin: 0 0 1.2em; }
.au-rt > p:first-of-type::first-letter { font-family: var(--au-display); font-weight: 600; float: left; font-size: 3.4em; line-height: .82; padding: 6px 12px 0 0; color: var(--au-accent); }
.au-rt h2 { font-family: var(--au-display); font-size: 27px; letter-spacing: -0.02em; line-height: 1.18; font-weight: 600; margin: 1.9em 0 .5em; padding-top: .3em; }
.au-rt h3 { font-family: var(--au-display); font-size: 20px; letter-spacing: -0.01em; font-weight: 600; margin: 1.7em 0 .4em; }
.au-rt a { color: var(--au-accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.au-rt ul, .au-rt ol { margin: 0 0 1.3em; padding-left: 1.4em; }
.au-rt li { margin: .45em 0; }
.au-rt li::marker { color: var(--au-accent); }
.au-rt blockquote { margin: 1.8em 0; padding: 0; border: 0; font-family: var(--au-display); font-size: 26px; line-height: 1.3; letter-spacing: -0.015em; font-weight: 500; color: var(--au-ink); }
.au-rt blockquote::before { content: "\201C"; display: block; font-family: var(--au-display); font-size: 60px; line-height: .5; color: var(--au-accent); margin-bottom: 10px; }
.au-rt img { margin: 1.7em 0; }
.au-rt figure { margin: 1.7em 0; }
.au-rt figcaption { font-size: 13.5px; color: var(--au-ink-3); margin-top: 8px; }
.au-rt code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .86em; background: var(--au-wash); padding: 2px 6px; border: 1px solid var(--au-line); }
.au-rt hr { border: 0; height: 1px; background: var(--au-line); margin: 2.2em 0; }

.au-endmark { margin: 40px 0 0; padding-top: 20px; border-top: 2px solid var(--au-line-strong); display: flex; gap: 8px; flex-wrap: wrap; }
.au-tag { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--au-ink-2); border: 1px solid var(--au-line); padding: 5px 11px; }
.au-tag:hover { border-color: var(--au-accent); color: var(--au-accent); }
.au-share { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.au-share a { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--au-ink-3); border-bottom: 1px solid transparent; }
.au-share a:hover { color: var(--au-ink); border-bottom-color: var(--au-accent); }

.au-art-body.no-toc { grid-template-columns: minmax(0, 760px); justify-content: center; }
@media (max-width: 860px) {
  .au-art-body { grid-template-columns: 1fr; gap: 26px; }
  .au-toc { position: static; border: 1px solid var(--au-line); padding: 16px 18px; }
  .au-rt { max-width: none; }
}

/* archive / blog head + section filter (used by the WP index-loop template) */
.au-arch-head { padding: 46px 0 0; }
.au-arch-head .au-kicker { display: block; margin-bottom: 14px; }
.au-arch-head h1 { font-family: var(--au-display); font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.035em; line-height: 1; font-weight: 600; margin: 0; }
.au-arch-head p { color: var(--au-ink-2); max-width: 54ch; margin: 16px 0 0; font-size: 18px; }
.au-filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0 6px; padding-bottom: 22px; border-bottom: 2px solid var(--au-line-strong); }
.au-filter a { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; padding: 8px 14px; border: 1px solid var(--au-line-strong); color: var(--au-ink-2); }
.au-filter a.on { background: var(--au-ink); color: #fff; }
.au-filter a:hover { border-color: var(--au-accent); color: var(--au-accent); }
.au-filter a.on:hover { color: #fff; background: var(--au-accent); border-color: var(--au-accent); }

/* ---------- pages: About / Contact / Terms / Privacy ---------- */
.au-page { padding: 40px 0 20px; }
.au-page-lead { max-width: 760px; }
.au-page-lead .au-kicker { margin-bottom: 14px; }
.au-page-lead h1 { font-family: var(--au-display); font-size: clamp(32px, 4.4vw, 50px); line-height: 1.03; letter-spacing: -0.03em; font-weight: 600; margin: 0; }
.au-page-body { max-width: 760px; margin: 34px 0 0; font-size: 18px; line-height: 1.75; color: var(--au-ink); }
.au-page-body .blj-lead, .au-page-body > p:first-child { font-size: 21px; line-height: 1.55; color: var(--au-ink-2); }
.au-page-body h2 { font-family: var(--au-display); font-size: 25px; letter-spacing: -0.02em; font-weight: 600; margin: 1.7em 0 .5em; padding-top: 1.2em; border-top: 1px solid var(--au-line); }
.au-page-body h3 { font-family: var(--au-display); font-size: 19px; font-weight: 600; margin: 1.5em 0 .4em; }
.au-page-body ul { padding-left: 1.3em; }
.au-page-body li { margin: .45em 0; }
.au-page-body a { color: var(--au-accent); text-decoration: underline; text-underline-offset: 3px; }
.au-page-body strong { font-weight: 600; }
.blj-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 1.4em; }
.blj-chips span { font-family: var(--au-body); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--au-ink-2); border: 1px solid var(--au-line); padding: 7px 13px; }
.blj-info-card { margin: 1.6em 0; padding: 24px 26px; border: 2px solid var(--au-line-strong); }
.blj-info-card h3 { margin: 0 0 6px; border: 0; padding: 0; }
.blj-info-card a { font-weight: 600; font-size: 18px; }
.blj-note { color: var(--au-ink-3); }
.au-page-num { display: grid; grid-template-columns: 40px 1fr; gap: 4px 16px; }

/* ============================================================
   The Map — .blj-map backlink rail, styled as an editorial directory
   ============================================================ */
.blj-map-title { font-family: var(--au-display); font-size: 15px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin: 0 0 14px; padding-bottom: 12px; border-bottom: 2px solid var(--au-line-strong); }
.blj-map-search { position: relative; margin: 0 0 12px; }
.blj-map-search input { width: 100%; padding: 11px 38px 11px 14px; border: 1px solid var(--au-line-strong); background: var(--au-surface); font: inherit; font-size: 14px; color: var(--au-ink); outline: none; border-radius: 0; }
.blj-map-search input:focus { border-color: var(--au-accent); }
.blj-map-search svg { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--au-ink-4); }
.blj-map-list { display: flex; flex-direction: column; max-height: 440px; overflow: auto; }
.blj-map-dir { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--au-ink); color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.blj-map-entry { display: flex; flex-direction: column; gap: 2px; padding: 13px 2px; border-bottom: 1px solid var(--au-line); }
.blj-map-anchor { font-weight: 600; font-size: 15px; color: var(--au-ink); }
.blj-map-anchor:hover { color: var(--au-accent); }
.blj-map-host { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--au-accent); text-transform: lowercase; }
.blj-map-src { font-size: 12.5px; color: var(--au-ink-3); }
.blj-map-src:hover { color: var(--au-ink); }
.blj-map-empty { color: var(--au-ink-3); padding: 16px 2px; }

/* ---------- pagination ---------- */
.au-pagination { display: flex; gap: 4px; justify-content: center; margin: 48px 0 0; flex-wrap: wrap; }
.au-pagination .page-numbers { min-width: 42px; text-align: center; padding: 9px 14px; border: 1px solid var(--au-line-strong); font-family: var(--au-display); font-weight: 500; font-size: 14px; }
.au-pagination .page-numbers.current { background: var(--au-ink); color: #fff; }
.au-pagination a.page-numbers:hover { background: var(--au-accent); color: #fff; border-color: var(--au-accent); }
.au-empty { padding: 60px 0; color: var(--au-ink-3); }

/* ============================================================
   Motion — restrained, professional. Scroll-reveal (fade + rise), image hover-zoom,
   nav underline, a masthead that lifts once scrolled. All gated on prefers-reduced-motion.
   ============================================================ */
.js-reveal .au-hero-copy, .js-reveal .au-hero-fig, .js-reveal .au-sub,
.js-reveal .au-entry, .js-reveal .au-review, .js-reveal .au-note, .js-reveal .au-card,
.js-reveal .au-sec-head, .js-reveal .au-mapwrap > *, .js-reveal .au-cta-in > *,
.js-reveal .au-arch-head, .js-reveal .au-filter, .js-reveal .au-art-head, .js-reveal .au-art-fig {
  opacity: 0; transform: translateY(16px);
  transition: opacity .62s cubic-bezier(.22,.7,.24,1), transform .62s cubic-bezier(.22,.7,.24,1);
  will-change: opacity, transform;
}
.js-reveal .is-in { opacity: 1; transform: none; }

/* image hover-zoom (editorial, contained) */
.au-hero-fig, .au-entry-thumb, .au-card-fig, .au-art-fig { overflow: hidden; }
.au-hero-fig > *, .au-entry-thumb > *, .au-card-fig > * { transition: transform .7s cubic-bezier(.22,.7,.24,1); }
.au-hero-fig:hover > *, .au-entry:hover .au-entry-thumb > *, .au-card:hover .au-card-fig > * { transform: scale(1.045); }

/* headline + link micro-motion */
.au-entry-main h3 a, .au-sub h3 a, .au-card h3 a, .au-hero h1 a { transition: color .18s ease; }
.au-nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--au-accent); transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.22,.7,.24,1); }
.au-nav a:hover::after { transform: scaleX(1); }
.au-nav a.is-active::after { transform: scaleX(1); }
.au-more { transition: color .18s ease; }
.au-btn { transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease; }
.au-btn:active { transform: translateY(1px); }
.au-entry-num { transition: color .2s ease; }
.blj-map-entry { transition: background .16s ease, padding-left .16s ease; }
.blj-map-entry:hover { background: var(--au-wash); padding-left: 12px; }

/* masthead lifts once the page is scrolled */
.au-mast { transition: box-shadow .22s ease; }
.au-mast.is-stuck { box-shadow: 0 10px 30px -22px rgba(21,22,27,.5); }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .au-hero-copy, .js-reveal .au-hero-fig, .js-reveal .au-sub,
  .js-reveal .au-entry, .js-reveal .au-review, .js-reveal .au-note, .js-reveal .au-card,
  .js-reveal .au-sec-head, .js-reveal .au-mapwrap > *, .js-reveal .au-cta-in > *,
  .js-reveal .au-arch-head, .js-reveal .au-filter, .js-reveal .au-art-head, .js-reveal .au-art-fig { opacity: 1; transform: none; transition: none; }
  .au-hero-fig > *, .au-entry-thumb > *, .au-card-fig > * { transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .au-hero-lead { grid-template-columns: 1fr; gap: 26px; }
  .au-hero-fig { aspect-ratio: 16/9; }
  .au-subrow { grid-template-columns: 1fr; }
  .au-sub { border-right: 0; border-bottom: 1px solid var(--au-line); padding: 20px 0; }
  .au-cards { grid-template-columns: 1fr; }
  .au-foot-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .au-cta-in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  :root { --au-gut: 18px; }
  .au-nav { display: none; }
  .au-entry { grid-template-columns: 34px 1fr; }
}
