/* Vanity Stardom — editorial stylesheet */
:root {
  --ink: #111111;
  --ink-2: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e4e1dc;
  --line-strong: #111111;
  --paper: #ffffff;
  --paper-2: #f7f5f1;
  --accent: #a4161a;
  --accent-ink: #7d0f13;
  --gold: #b08d57;
  --serif-display: 'Playfair Display', 'Didot', 'Bodoni MT', Georgia, serif;
  --serif-text: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --wrap: 1240px;
  --gutter: 16px;
  color-scheme: light;
}
@media (min-width: 760px) { :root { --gutter: 28px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.55 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.sr-only, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 820px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }

/* ---------- type atoms ---------- */
.eyebrow { font: 600 11px/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.eyebrow.light { color: var(--gold); }
.kicker { display: inline-block; font: 700 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.kicker:hover { color: var(--accent-ink); }
.meta { font: 500 12px/1.4 var(--sans); color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 10px; }
.meta .dot { opacity: .6; }
.rule-h { font: 700 13px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; margin: 0; padding-top: 14px; border-top: 3px solid var(--line-strong); flex: 1; }
.rule-h a:hover { color: var(--accent); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; font: 600 13px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; border: 1px solid transparent; border-radius: 0; transition: background .2s, color .2s, border-color .2s; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-outline { border-color: currentColor; }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-lg { padding: 17px 30px; font-size: 14px; }

/* ---------- header ---------- */
.topbar { background: var(--ink); color: #d9d6d0; font: 500 12px/1 var(--sans); }
.topbar-in { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar a:hover { color: #fff; }
@media (max-width: 640px) { .topbar-links a:not([aria-label]) { display: none; } }

.masthead { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; transition: box-shadow .2s; }
.masthead.is-stuck { box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(0,0,0,.06); }
.masthead-in { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; padding-top: 22px; padding-bottom: 18px; transition: padding .2s; }
.masthead.is-stuck .masthead-in { padding-top: 10px; padding-bottom: 8px; }
.logo { justify-self: center; }
.logo img { height: 46px; width: auto; transition: height .2s; }
.masthead.is-stuck .logo img { height: 28px; }
@media (max-width: 640px) { .logo img { height: 24px; } .masthead.is-stuck .logo img { height: 20px; } .masthead-in { padding-top: 14px; padding-bottom: 12px; } }
.icon-btn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: none; border: 0; color: var(--ink); padding: 0; }
.icon-btn:hover { color: var(--accent); }
.search-btn { justify-self: end; }

.nav { border-top: 1px solid var(--line); }
.nav-in { list-style: none; margin: 0 auto; display: flex; justify-content: safe center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.nav-in::-webkit-scrollbar { display: none; }
.nav a { display: block; padding: 13px 11px; font: 600 11.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current] { border-bottom-color: var(--accent); color: var(--accent); }
.nav-cta a { color: var(--accent); }
.masthead.is-stuck .nav { display: none; }
@media (max-width: 900px) { .nav-in { justify-content: flex-start; } }
@media (max-width: 640px) { .nav a { padding: 12px 10px; font-size: 11px; } }

.drawer { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 80; }
.drawer-panel { position: absolute; inset: 0 auto 0 0; width: min(360px, 88vw); background: var(--paper); padding: 16px 24px 32px; overflow-y: auto; animation: slide .25s ease; }
@keyframes slide { from { transform: translateX(-100%); } to { transform: none; } }
.drawer-close { margin-left: -10px; }
.drawer ul { list-style: none; margin: 14px 0 22px; padding: 0; }
.drawer li a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); font: 600 22px/1.2 var(--serif-display); }
.drawer li a:hover { color: var(--accent); }
.drawer .drawer-small a { font: 500 14px/1.2 var(--sans); border: 0; padding: 7px 0; color: var(--muted); }
.drawer-search input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); font: 15px var(--sans); margin-top: 8px; }
.drawer .btn { width: 100%; }

/* ---------- thumbs ---------- */
.thumb { display: block; position: relative; overflow: hidden; background: var(--paper-2); }
.thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.thumb.r-3x2 { aspect-ratio: 3 / 2; }
.thumb.r-1x1 { aspect-ratio: 1; }
.thumb.r-4x5 { aspect-ratio: 4 / 5; }
article:hover .thumb img { transform: scale(1.035); }
.thumb-fallback { position: absolute; inset: 0; display: grid; place-items: center; font: 600 34px var(--serif-display); color: #c9c3b8; letter-spacing: .08em; }

/* ---------- cards ---------- */
.card-body { padding-top: 14px; }
.card-title { font: 600 19px/1.25 var(--serif-display); margin: 0; letter-spacing: -.005em; }
.card-title a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .3s; }
.card-title a:hover, .row-title a:hover, .list-title a:hover, .hero-title a:hover { background-size: 100% 1px; }
.card-title.xl { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; }
.card-sm .card-title { font-size: 18px; }
.card-dek { font: 400 16px/1.5 var(--serif-text); color: var(--ink-2); margin: 10px 0 0; }
.row-card { display: grid; grid-template-columns: 1fr 88px; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: start; }
.row-card:last-child { border-bottom: 0; }
.row-card .kicker { margin-bottom: 6px; font-size: 10px; }
.row-title { font: 600 16px/1.3 var(--serif-display); margin: 0; }
.row-title a, .list-title a, .hero-title a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .3s; }
.row-card .meta { margin-top: 6px; }

/* ---------- home hero ---------- */
.hero { display: grid; gap: 28px; padding-top: 32px; padding-bottom: 12px; }
@media (min-width: 1000px) {
  .hero { grid-template-columns: 1fr 2.1fr 1fr; gap: 0; }
  .hero > * { padding: 0 24px; }
  .hero > *:first-child { padding-left: 0; }
  .hero > *:last-child { padding-right: 0; }
  .hero-lead { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .hero-side .card + .card { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
}
@media (max-width: 999px) {
  .hero-lead { order: -1; }
  .hero-side { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 560px) { .hero-side { grid-template-columns: 1fr; } }
.hero-body { padding-top: 18px; text-align: center; }
.hero-title { font: 700 clamp(28px, 3.6vw, 44px)/1.1 var(--serif-display); margin: 0; letter-spacing: -.015em; }
.hero-dek { font: 400 18px/1.5 var(--serif-text); color: var(--ink-2); margin: 14px auto 0; max-width: 620px; }
.hero-body .meta { justify-content: center; }
.hero-mini { margin-top: 18px; border-top: 1px solid var(--line); }

.most-read ol { list-style: none; margin: 8px 0 0; padding: 0; counter-reset: mr; }
.most-read li a { display: grid; grid-template-columns: 34px 1fr; gap: 8px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.most-read li:last-child a { border-bottom: 0; }
.mr-n { font: 500 italic 30px/1 var(--serif-display); color: var(--accent); }
.mr-t { font: 600 15px/1.3 var(--serif-display); }
.most-read a:hover .mr-t { color: var(--accent); }

/* ---------- blocks ---------- */
.block { padding-top: 44px; padding-bottom: 20px; }
.block-head { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 24px; }
.block-head .more { font: 600 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding-bottom: 1px; white-space: nowrap; }
.block-head .more:hover { color: var(--accent); }
.grid-4, .grid-3 { display: grid; gap: 32px 24px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.split { display: grid; gap: 28px; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.55fr 1fr; gap: 36px; }
  .section-0 .split { grid-template-columns: 1fr 1.55fr; }
  .section-0 .split .card-xl { order: 2; }
  .split-list { border-top: 1px solid var(--line); }
  .split-list .row-card:first-child { padding-top: 16px; }
}
.more-stories { text-align: center; padding: 20px 0 40px; }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; margin: 48px 0 12px; }
.cta-in { display: grid; gap: 28px; padding-top: 56px; padding-bottom: 56px; }
@media (min-width: 900px) { .cta:not(.cta-compact) .cta-in { grid-template-columns: 1.3fr 1fr; align-items: center; column-gap: 64px; } .cta-actions { grid-column: 1 / -1; } }
.cta-h { font: 700 clamp(30px, 4vw, 48px)/1.08 var(--serif-display); margin: 0; letter-spacing: -.015em; }
.cta-p { font: 400 18px/1.55 var(--serif-text); color: #cfcac2; margin: 16px 0 0; max-width: 620px; }
.cta .eyebrow { color: var(--gold); }
.cta-list { list-style: none; margin: 0; padding: 0; }
.cta-list li { padding: 12px 0 12px 28px; border-bottom: 1px solid #2c2c2c; position: relative; font-size: 15px; color: #e8e4dd; }
.cta-list li::before { content: ''; position: absolute; left: 0; top: 19px; width: 14px; height: 1px; background: var(--gold); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.cta-note { font-size: 12px; color: #9b968e; letter-spacing: .04em; }
.cta-compact { margin: 28px 0 0; }
.cta-compact .cta-in { padding: 28px 24px; gap: 18px; }
.cta-compact .cta-h { font-size: 26px; }
.cta-compact .cta-p { font-size: 15px; }
.cta-compact .btn { width: 100%; }

.insta { background: var(--paper-2); margin: 40px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.insta-in { text-align: center; padding-top: 40px; padding-bottom: 40px; }
.insta-h { font: 500 italic clamp(20px, 2.4vw, 28px)/1.3 var(--serif-display); margin: 0 0 20px; }

/* ---------- article ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 60; }
.article-head { text-align: center; padding-top: 36px; max-width: 980px; }
.crumbs { font: 500 12px/1 var(--sans); color: var(--muted); display: flex; justify-content: center; gap: 8px; margin-bottom: 22px; }
.crumbs a:hover { color: var(--accent); }
.article-title { font: 700 clamp(32px, 5vw, 58px)/1.08 var(--serif-display); letter-spacing: -.02em; margin: 4px auto 0; max-width: 940px; text-wrap: balance; }
.article-dek { font: 400 italic clamp(19px, 2vw, 23px)/1.45 var(--serif-text); color: var(--ink-2); max-width: 760px; margin: 20px auto 0; text-wrap: pretty; }
.byline { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px; margin: 28px auto 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: 760px; text-align: left; }
.byline-text { display: flex; flex-direction: column; font-size: 14px; gap: 2px; }
.byline-text a { font-weight: 600; }
.byline-text a:hover { color: var(--accent); }
.byline-text .muted { font-size: 13px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-grid; place-items: center; font: 600 18px/1 var(--serif-display); flex: none; }
.avatar.lg { width: 60px; height: 60px; font-size: 26px; }
.avatar.xl { width: 84px; height: 84px; font-size: 36px; margin: 0 auto 16px; display: grid; }
.share { display: flex; gap: 6px; margin-left: auto; }
@media (max-width: 640px) { .share { margin-left: 0; width: 100%; justify-content: center; } }
.share a, .share button { width: 36px; height: 36px; display: inline-grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 50%; transition: all .2s; }
.share a:hover, .share button:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.share button.copied { background: var(--accent); border-color: var(--accent); color: #fff; }

.article-hero { max-width: 1100px; margin: 32px auto 0; padding: 0 var(--gutter); }
.article-hero img { width: 100%; max-height: 720px; object-fit: cover; }
.article-hero figcaption { font-size: 12px; color: var(--muted); padding-top: 8px; }
@media (max-width: 640px) { .article-hero { padding: 0; } }

.article-layout { display: grid; gap: 48px; padding-top: 40px; }
@media (min-width: 1080px) { .article-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 72px; } .article-main { padding-left: 60px; } }
.article-main { min-width: 0; max-width: 740px; }
.sticky { position: sticky; top: 90px; }
.article-aside .rule-h, .archive-aside .rule-h { display: block; }

.prose { font: 400 20px/1.7 var(--serif-text); color: #1d1d1d; overflow-wrap: break-word; }
@media (max-width: 640px) { .prose { font-size: 18px; } }
.prose > * { margin: 0 0 1.15em; }
.prose > p:first-child::first-letter { float: left; font: 700 4.1em/.82 var(--serif-display); margin: .06em .12em 0 0; color: var(--ink); }
.prose h2, .prose h3, .prose h4 { font-family: var(--serif-display); line-height: 1.2; margin: 1.7em 0 .6em; letter-spacing: -.01em; }
.prose h2 { font-size: 1.55em; }
.prose h3 { font-size: 1.3em; }
.prose h4 { font-size: 1.1em; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-ink); }
.prose strong { font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--accent); }
.prose blockquote { margin: 1.6em 0; padding: 0 0 0 24px; border-left: 3px solid var(--accent); font: 500 italic 1.2em/1.45 var(--serif-display); color: var(--ink); }
.prose hr { border: 0; text-align: center; margin: 2em 0; }
.prose hr::after { content: '◆ ◆ ◆'; font-size: 10px; letter-spacing: 1em; color: var(--gold); }
.prose img { margin: 1.6em auto; width: auto; max-height: 820px; }
.prose figure { margin: 1.6em 0; }
.prose figure img { margin: 0 auto; }
.prose figcaption { font: 400 13px/1.45 var(--sans); color: var(--muted); padding-top: 8px; text-align: center; }
.prose .table-wrap { overflow-x: auto; }
.prose table { border-collapse: collapse; font-size: .85em; width: 100%; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
.prose pre { white-space: pre-wrap; font-size: .8em; background: var(--paper-2); padding: 16px; }
.embed { margin: 1.6em 0; }
.embed.social { display: flex; justify-content: center; min-height: 120px; }
.embed.social blockquote { border: 1px solid var(--line); padding: 20px; font: 14px var(--sans); max-width: 540px; width: 100%; margin: 0; }
.embed.yt button { position: relative; display: block; width: 100%; padding: 0; border: 0; background: #000; aspect-ratio: 16/9; overflow: hidden; }
.embed.yt img { width: 100%; height: 100%; object-fit: cover; margin: 0; opacity: .85; max-height: none; }
.embed.yt iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.yt-play { position: absolute; left: 50%; top: 50%; width: 72px; height: 50px; margin: -25px 0 0 -36px; background: var(--accent); border-radius: 12px; }
.yt-play::after { content: ''; position: absolute; left: 29px; top: 15px; border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent #fff; }
.embed-link { font-size: .8em; }

.key-points { background: var(--paper-2); border-top: 3px solid var(--ink); padding: 22px 26px; margin: 0 0 32px; }
.key-points h2 { font: 700 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; margin: 0 0 12px; }
.key-points ul { margin: 0; padding-left: 1.1em; font: 400 17px/1.55 var(--serif-text); }
.key-points li { margin: 6px 0; }
.key-points li::marker { color: var(--accent); }
.faq { margin: 40px 0 0; border-top: 3px solid var(--ink); padding-top: 18px; }
.faq h2 { font: 700 26px/1.2 var(--serif-display); margin: 0 0 12px; }
.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq summary { font: 600 18px/1.35 var(--serif-display); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details div { font: 400 17px/1.6 var(--serif-text); color: var(--ink-2); padding-top: 10px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0 0; }
.tags a { font: 500 12px/1 var(--sans); letter-spacing: .04em; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; }
.tags a:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.author-box { display: flex; gap: 18px; align-items: center; margin: 36px 0 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.author-box .eyebrow { margin: 0 0 4px; color: var(--muted); }
.author-name { font: 600 22px/1.2 var(--serif-display); margin: 0; }
.author-name a:hover { color: var(--accent); }
.author-box p.muted { margin: 6px 0 0; font-size: 14px; }
.editorial-note { font-size: 13px; color: var(--muted); margin: 20px 0 0; }
.editorial-note a { color: var(--ink); text-decoration: underline; }
.related { border-top: 1px solid var(--line); margin-top: 56px; }
.prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 32px; padding-bottom: 56px; }
.prevnext a { display: block; padding: 20px 0; border-top: 3px solid var(--ink); }
.prevnext .pn-next { text-align: right; }
.prevnext .eyebrow { color: var(--muted); }
.pn-t { font: 600 18px/1.3 var(--serif-display); display: block; }
.prevnext a:hover .pn-t { color: var(--accent); }
@media (max-width: 640px) { .prevnext { grid-template-columns: 1fr; } .prevnext .pn-next { text-align: left; } }

/* ---------- archive ---------- */
.archive-head { text-align: center; padding: 48px 0 36px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.archive-title { font: 700 clamp(36px, 6vw, 72px)/1.02 var(--serif-display); margin: 0; letter-spacing: -.02em; text-wrap: balance; }
.archive-dek { font: 400 italic 20px/1.5 var(--serif-text); color: var(--ink-2); max-width: 680px; margin: 16px auto 0; }
.archive-count { font: 500 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 18px 0 0; }
.archive-layout { display: grid; gap: 48px; padding-top: 40px; padding-bottom: 56px; }
@media (min-width: 1080px) { .archive-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; } }
.archive-main { min-width: 0; }
.archive-lead { display: grid; gap: 24px; padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
@media (min-width: 760px) { .archive-lead { grid-template-columns: 1.4fr 1fr; align-items: center; } }
.archive-lead .hero-dek { margin-left: 0; }
.archive-main .grid-3 { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.list-card { display: grid; gap: 16px; padding: 28px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 640px) { .list-card { grid-template-columns: 260px 1fr; gap: 28px; align-items: start; } }
.list-title { font: 600 24px/1.2 var(--serif-display); margin: 0; letter-spacing: -.01em; }
.pager { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 36px; font: 600 13px/1 var(--sans); }
.pager > a { text-transform: uppercase; letter-spacing: .08em; }
.pager-nums { display: flex; gap: 4px; flex-wrap: wrap; }
.pager-nums > * { min-width: 38px; height: 38px; display: inline-grid; place-items: center; border: 1px solid var(--line); padding: 0 8px; }
.pager-nums span[aria-current] { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager-nums a:hover, .pager > a:hover { color: var(--accent); border-color: var(--accent); }
.pager-nums span:not([aria-current]) { border: 0; }

/* ---------- pages / forms ---------- */
.page-prose { padding: 40px 0 64px; font-size: 19px; }
.page-prose > p:first-child::first-letter { all: unset; }
.feature-hero { background: var(--ink); color: #fff; text-align: center; padding: 64px 0 56px; }
.feature-title { font: 700 clamp(34px, 5.5vw, 62px)/1.05 var(--serif-display); margin: 0; letter-spacing: -.02em; text-wrap: balance; }
.feature-dek { font: 400 19px/1.55 var(--serif-text); color: #cfcac2; margin: 18px auto 0; max-width: 640px; }
.feature-body { padding-top: 44px; padding-bottom: 72px; }
.feature-points { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 44px; }
.feature-points > div { border-top: 3px solid var(--ink); padding-top: 14px; }
.fp-n { font: 500 italic 26px/1 var(--serif-display); color: var(--accent); }
.feature-points h2 { font: 600 20px/1.2 var(--serif-display); margin: 8px 0 6px; }
.feature-points p { margin: 0; color: var(--muted); font-size: 15px; }
.form fieldset { border: 0; border-top: 1px solid var(--line); padding: 24px 0 8px; margin: 0; }
.form legend { font: 700 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--accent); padding: 0 12px 0 0; }
.form label { display: block; font: 600 14px/1.3 var(--sans); margin: 0 0 18px; }
.form label > span:not(.phone) { color: var(--accent); }
.form small { font-weight: 400; color: var(--muted); }
.form input[type=text], .form input[type=email], .form input[type=url], .form input[type=tel], .form select, .form textarea, .form input[type=file] {
  display: block; width: 100%; margin-top: 8px; padding: 13px 14px; font: 400 16px/1.4 var(--sans); color: var(--ink); background: #fff; border: 1px solid #cfcac2; border-radius: 0; }
.form textarea { resize: vertical; font-family: var(--serif-text); font-size: 17px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,17,17,.08); }
.f-grid { display: grid; gap: 0 20px; }
@media (min-width: 700px) { .f-grid { grid-template-columns: 1fr 1fr; } .f-full { grid-column: 1 / -1; } }
.phone { display: grid; grid-template-columns: 120px 1fr; gap: 8px; }
.wc { display: block; text-align: right; margin-top: 6px; }
.consent { display: flex !important; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: 14px !important; color: var(--ink-2); margin: 10px 0 24px !important; }
.consent input { margin-top: 3px; }
.form .btn { width: 100%; }
@media (min-width: 700px) { .form .btn { width: auto; } }
.form .muted { margin-top: 18px; }
.thanks { text-align: center; padding-top: 64px; padding-bottom: 40px; }
.thanks-mark { width: 84px; height: 84px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; margin: 0 auto 24px; }
.thanks-steps { text-align: left; max-width: 460px; margin: 32px auto; padding-left: 1.2em; font: 400 18px/1.8 var(--serif-text); }
.thanks-steps li::marker { color: var(--accent); font-weight: 600; }
.thanks .btn { margin-top: 12px; }
.search-form { display: flex; gap: 0; max-width: 640px; margin: 18px auto 0; }
.search-form input { flex: 1; min-width: 0; padding: 15px 16px; font: 400 18px var(--serif-text); border: 1px solid var(--ink); border-right: 0; background: #fff; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #bfbab2; margin-top: 40px; font-size: 14px; }
.footer-top { display: grid; gap: 36px; padding: 56px 0 40px; }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; line-height: 1.6; margin: 0 0 14px; }
.footer-social { color: #fff; font-weight: 600; }
.footer-h { font: 700 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #fff; margin: 4px 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 10px; }
.footer a:hover { color: #fff; }
.footer .muted { color: #837e76; font-size: 12px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 20px 0 28px; border-top: 1px solid #2a2a2a; font-size: 12px; color: #837e76; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } html { scroll-behavior: auto; } }
@media print { .topbar, .masthead, .footer, .article-aside, .share, .related, .prevnext, .cta { display: none !important; } }
.archive-lead .hero-title { font-size: clamp(26px, 2.8vw, 36px); line-height: 1.12; }
.avatar { overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-role { margin: 2px 0 0 !important; }
.author-links { display: flex; justify-content: center; gap: 18px; margin: 14px 0 0; font: 600 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.author-links:empty { display: none; }
.author-links a:hover { color: var(--accent); }
.partner { display: inline-block; margin-left: 10px; font: 600 10px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 4px 7px; vertical-align: 1px; }
.preview-bar { background: #fdf1dc; color: #7a4f00; text-align: center; font: 600 13px/1 var(--sans); padding: 10px; } .preview-bar a { text-decoration: underline; }

/* Byline: author under the headline, left-aligned news layout */
.article-head { text-align: left; max-width: var(--wrap); }
.article-head > * { max-width: 860px; }
@media (min-width: 1080px) { .article-head { padding-left: calc(var(--gutter) + 60px); } }
.article-head .crumbs { justify-content: flex-start; }
.article-title { margin-left: 0; font-size: clamp(30px, 4.4vw, 50px); }
.article-dek { margin: 16px 0 0; font-style: normal; font-size: clamp(18px, 1.9vw, 21px); color: var(--ink-2); }
.byline { display: flex; align-items: center; gap: 12px; margin: 22px 0 0; padding: 0; border: 0; justify-content: flex-start; max-width: none; }
.byline-text { gap: 3px; }
.byline-name { font: 700 16px/1.2 var(--sans); color: var(--ink); }
.byline-name:hover { color: var(--accent); }
.byline-cat { font: 600 13px/1.2 var(--sans); color: var(--accent); }
.byline-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 20px; margin-top: 16px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.byline-dates { display: flex; flex-wrap: wrap; gap: 4px 14px; font: 500 13px/1.4 var(--sans); color: var(--muted); }
.byline-dates span + span::before { content: '·'; margin-right: 14px; opacity: .6; }
.byline-meta .share { margin-left: 0; width: auto; }
@media (max-width: 640px) { .byline-dates { flex-direction: column; gap: 2px; } .byline-dates span + span::before { display: none; } }
.article-hero { max-width: var(--wrap); padding: 0 var(--gutter); }

/* ---------- Forbes-style type: Georgia for headlines and reading, Work Sans for labels ---------- */
:root {
  --serif-display: Georgia, 'Times New Roman', Times, serif;
  --serif-text: Georgia, 'Times New Roman', Times, serif;
  --sans: 'Work Sans', 'Helvetica Neue', Arial, system-ui, sans-serif;
}
.hero-title, .article-title, .archive-title, .cta-h, .feature-title { font-weight: 700; letter-spacing: -.01em; }
.card-title, .row-title, .list-title, .mr-t, .pn-t, .author-name { font-weight: 700; letter-spacing: 0; }
.article-title { line-height: 1.12; }
.mr-n { font-style: normal; font-weight: 700; }
.prose { font-size: 19px; line-height: 1.75; }
.prose > p:first-child::first-letter { font-weight: 700; }
.article-dek, .archive-dek { font-style: normal; }

/* ---------- whole images, never cropped: picture sits on a soft blurred copy of itself ---------- */
.thumb { background: #ece9e4; isolation: isolate; }
.thumb::before { content: ''; position: absolute; inset: -24px; background: var(--bg, none) center / cover no-repeat; filter: blur(22px) saturate(1.1) brightness(.92); z-index: 0; }
.thumb img { object-fit: contain; z-index: 1; }
article:hover .thumb img { transform: none; }
.article-hero { text-align: center; }
.article-hero img { width: auto; max-width: 100%; max-height: 760px; object-fit: contain; margin: 0 auto; }

/* ---------- footer legal row ---------- */
.footer-legal { border-top: 1px solid #2a2a2a; padding: 22px 0 30px; font-size: 12.5px; color: #8f8a82; }
.footer-copy { margin: 0 0 10px; color: #cfcac2; font-weight: 500; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { color: #a8a39b; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: none; }
.byline-role { font: 500 13px/1.2 var(--sans); color: var(--muted); }

/* ---------- Forbes-style footer ---------- */
.footer.fb { background: #f2f2f2; color: #333; border-top: 1px solid #e0e0e0; margin-top: 56px; font: 400 15px/1.5 var(--sans); }
.fb-top { display: grid; gap: 36px; padding: 48px 0 36px; }
@media (min-width: 960px) { .fb-top { grid-template-columns: 1fr 2fr; gap: 56px; } }
.fb-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.fb-brand p { color: #555; max-width: 360px; margin: 0 0 14px; }
.fb-social { color: #111; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.fb-cols { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.fb-h { font: 700 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #111; margin: 4px 0 16px; }
.footer.fb ul { list-style: none; margin: 0; padding: 0; }
.footer.fb li { margin: 0 0 10px; }
.footer.fb a { color: #333; }
.footer.fb a:hover { color: #000; text-decoration: underline; }
.footer.fb .muted { color: #777; font-size: 12px; }
.fb-legal { display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: baseline; border-top: 1px solid #ddd; padding: 20px 0 30px; font-size: 13.5px; }
.fb-copy { margin: 0; color: #333; flex: 0 0 auto; }
.fb-links { display: flex; flex-wrap: wrap; align-items: center; row-gap: 6px; flex: 1 1 520px; }
.fb-links a { color: #333; padding: 0 10px; border-left: 1px solid #999; line-height: 1.1; display: inline-flex; align-items: center; gap: 6px; }
.fb-links a:first-child { padding-left: 0; border-left: 0; }
.fb-links a:hover { color: #000; }
.cookie-box { background: var(--paper-2); border: 1px solid var(--line); padding: 18px 20px; margin: 0 0 1.5em; font-family: var(--sans); font-size: 15px; }
.cookie-box .btn { margin: 4px 6px 4px 0; }
