/* ═══════════════════════════════════════════════════════════
   THE DIPLOMAT DAILY — Premium Editorial Design
   Inspired by: FT.com, The Atlantic, Foreign Affairs, Reuters
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;600;700;800&display=swap');

:root {
  --ink:       #0a0a0a;
  --ink-2:     #1a1a1a;
  --ink-3:     #2d2d2d;
  --muted:     #5c5c5c;
  --quiet:     #8a8a8a;
  --rule:      #d4d4d4;
  --rule-lt:   #ebebeb;
  --bg:        #fafaf8;
  --bg-warm:   #f5f3ee;
  --white:     #ffffff;
  --accent:    #1a3a5c;   /* deep navy — FT-inspired */
  --accent-2:  #c41e3a;   /* editorial red */
  --gold:      #b5860c;
  --serif:     'Playfair Display', 'Georgia', serif;
  --sans:      'Inter', -apple-system, sans-serif;
  --cond:      'Barlow Condensed', 'Arial Narrow', sans-serif;
  --max:       1260px;
  --col:       760px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MASTHEAD
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.topstrip {
  background: var(--ink);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
}
.topstrip-left  { display: flex; gap: 20px; align-items: center; color: rgba(255,255,255,.5); }
.topstrip-right { display: flex; gap: 16px; align-items: center; margin-left: auto; }
.topstrip a { color: rgba(255,255,255,.5); transition: color .15s; }
.topstrip a:hover { color: #fff; }
.topstrip .date { font-size: 10.5px; color: rgba(255,255,255,.35); letter-spacing: .06em; }
.topstrip .sub-pill {
  background: var(--accent-2);
  color: #fff !important;
  padding: 3px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 24px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.masthead-left {
  display: flex;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--quiet);
}
.masthead-left a { color: var(--quiet); }
.masthead-left a:hover { color: var(--accent); }
.masthead-sep { color: var(--rule); }

/* THE LOGO — clean, typographic, premium */
.site-brand { text-align: center; }
.brand-eyebrow {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
  display: block;
}
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: .95;
  white-space: nowrap;
}
.brand-name em { font-style: italic; color: var(--accent); }
.brand-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
  margin: 8px auto 5px;
}
.brand-tagline {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--quiet);
}

.masthead-right { display: flex; justify-content: flex-end; }
.hdr-search {
  display: flex;
  border: 1.5px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
  max-width: 200px;
}
.hdr-search input {
  flex: 1;
  padding: 7px 11px;
  font-size: 12.5px;
  font-family: var(--sans);
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.hdr-search input::placeholder { color: var(--quiet); }
.hdr-search button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .15s;
}
.hdr-search button:hover { background: var(--ink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRIMARY NAV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-bar {
  background: var(--accent);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-bar-inner::-webkit-scrollbar { display: none; }
.nav-link {
  padding: 0 14px;
  height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--cond);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all .15s;
}
.nav-link:hover, .nav-link.active { color: #fff; border-bottom-color: #fff; }
.nav-link.highlight { color: #ffd700; }
.nav-spacer { flex: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TICKER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker-bar {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-pill {
  background: var(--accent-2);
  color: #fff;
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-overflow { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex;
  animation: ticker 80s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.t-i { font-size: 12.5px; font-family: var(--sans); font-weight: 500; padding: 0 28px 0 0; white-space: nowrap; color: var(--ink-3); }
.t-i a { color: inherit; }
.t-i a:hover { color: var(--accent-2); }
.t-dot { color: var(--accent-2); padding-right: 28px; font-size: 8px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.sec-head-title {
  font-family: var(--cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}
.sec-head-more {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
}
.sec-head-more:hover { color: var(--accent-2); }
.sec-kicker {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.home-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px;
}

/* HERO — full-width image + overlay */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border: 1px solid var(--rule);
  margin-bottom: 36px;
  overflow: hidden;
}
.hero-lead { position: relative; overflow: hidden; }
.hero-lead-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-lead:hover .hero-lead-img { transform: scale(1.02); }
.hero-lead-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(5,12,22,.97) 50%);
  padding: 40px 28px 28px;
  color: #fff;
}
.hero-lead-kicker {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--accent-2);
  display: inline-block;
  padding: 3px 9px;
  margin-bottom: 12px;
}
.hero-lead-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 10px;
  color: #fff;
}
.hero-lead-title a { color: #fff; }
.hero-lead-title a:hover { color: rgba(255,255,255,.85); }
.hero-lead-deck {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-lead-meta { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 10px; }

/* Hero stack */
.hero-stack {
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  background: #fafaf8;
}
.hero-stack-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-stack-item:last-child { border-bottom: none; flex: 1; }
.hero-stack-img {
  width: 100px;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.hero-stack-item:hover .hero-stack-img { opacity: .92; }
.hero-stack-body { padding: 14px 16px; }
.hero-stack-kicker {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 5px;
}
.hero-stack-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--ink);
}
.hero-stack-title a:hover { color: var(--accent); }
.hero-stack-meta { font-size: 10.5px; color: var(--quiet); margin-top: 6px; }

/* ── BODY GRID ── */
.home-grid { display: grid; grid-template-columns: 1fr 308px; gap: 36px; }
.home-feed { }
.home-rail { border-left: 1px solid var(--rule); padding-left: 28px; }

/* ── ARTICLE ROW ── */
.feed-item {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-lt);
}
.feed-item:first-child { padding-top: 0; }
.feed-img {
  width: 148px;
  height: 100px;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
  flex-shrink: 0;
}
.feed-item:hover .feed-img { opacity: .9; }
.feed-kicker {
  font-family: var(--cond);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 5px;
}
.feed-kicker a { color: var(--accent-2); }
.feed-kicker a:hover { text-decoration: underline; }
.feed-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
}
.feed-title a:hover { color: var(--accent); }
.feed-deck {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 7px;
}
.feed-meta {
  font-size: 11px;
  color: var(--quiet);
  display: flex;
  gap: 7px;
  align-items: center;
}
.feed-author { font-weight: 600; color: var(--muted); }
.feed-author:hover { color: var(--accent); }

/* ── RAIL WIDGETS ── */
.rail-widget { margin-bottom: 32px; }

.rail-list { display: flex; flex-direction: column; }
.rail-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-lt);
  align-items: start;
}
.rail-item:last-child { border-bottom: none; }
.rail-img { width: 64px; height: 48px; object-fit: cover; }
.rail-kicker { font-family: var(--cond); font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 3px; }
.rail-title { font-family: var(--serif); font-size: 13.5px; font-weight: 700; line-height: 1.38; color: var(--ink); }
.rail-title a:hover { color: var(--accent); }
.rail-meta { font-size: 10px; color: var(--quiet); margin-top: 3px; }

/* Author grid */
.author-rail { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.author-mini { text-align: center; padding: 10px 4px; }
.author-mini-img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 7px;
  border: 2px solid var(--rule);
}
.author-mini-name { font-family: var(--serif); font-size: 12.5px; font-weight: 700; line-height: 1.3; color: var(--ink); }
.author-mini-name a:hover { color: var(--accent); }
.author-mini-role { font-size: 10px; color: var(--quiet); margin-top: 2px; }

/* Newsletter rail */
.nl-box {
  background: var(--accent);
  padding: 20px;
  color: #fff;
}
.nl-box-title { font-family: var(--serif); font-size: 19px; font-weight: 800; margin-bottom: 6px; color: #fff; }
.nl-box p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 14px; }
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-form input {
  padding: 9px 12px; font-size: 13px; font-family: var(--sans);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form button {
  background: var(--accent-2); color: #fff; border: none;
  padding: 10px; font-family: var(--cond); font-size: 13px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
}
.nl-form button:hover { background: #a01830; }

/* Country pills */
.c-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.c-pill {
  font-family: var(--cond); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px;
  border: 1.5px solid var(--rule);
  color: var(--muted); transition: all .15s;
}
.c-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--bg); }

/* ── MAGAZINE GRID ── */
.mag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 32px 0; }
.mag-card { border: 1px solid var(--rule); background: var(--white); overflow: hidden; }
.mag-card-fig { overflow: hidden; }
.mag-card-img { width: 100%; height: 176px; object-fit: cover; transition: transform .4s; }
.mag-card:hover .mag-card-img { transform: scale(1.03); }
.mag-card-body { padding: 16px 16px 18px; }
.mag-card-kicker { font-family: var(--cond); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 7px; }
.mag-card-title { font-family: var(--serif); font-size: 18px; font-weight: 700; line-height: 1.35; color: var(--ink); margin-bottom: 8px; }
.mag-card-title a:hover { color: var(--accent); }
.mag-card-deck { font-size: 13px; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.mag-card-meta { font-size: 11px; color: var(--quiet); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ARTICLE PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.art-wrap { max-width: var(--max); margin: 0 auto; padding: 32px 24px; }
.art-layout { display: grid; grid-template-columns: var(--col) 1fr; gap: 52px; align-items: start; }
.art-main {}

.art-breadcrumb {
  font-size: 11.5px; color: var(--quiet); margin-bottom: 14px;
  display: flex; gap: 5px; align-items: center; font-family: var(--sans);
}
.art-breadcrumb a { color: var(--accent); }
.art-breadcrumb a:hover { text-decoration: underline; }

.art-kicker {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--accent-2); color: #fff;
  display: inline-block; padding: 4px 10px; margin-bottom: 16px;
}

.art-title {
  font-family: var(--serif); font-size: 36px; font-weight: 800;
  line-height: 1.2; color: var(--ink); margin-bottom: 14px;
  letter-spacing: -.01em;
}

.art-subtitle {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  font-style: italic; color: var(--muted); line-height: 1.5;
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--rule);
}

.art-byline {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--rule); margin-bottom: 24px;
}
.byline-av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.byline-info {}
.byline-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.byline-name a:hover { color: var(--accent); }
.byline-role { font-size: 11.5px; color: var(--quiet); }
.byline-right { margin-left: auto; text-align: right; }
.byline-date { font-size: 12px; color: var(--quiet); }
.byline-read { font-size: 11px; color: var(--quiet); margin-top: 1px; }

.art-hero-img { width: 100%; margin-bottom: 8px; }
.art-hero-img img { width: 100%; max-height: 440px; object-fit: cover; }
.art-caption { font-size: 12px; color: var(--quiet); padding: 6px 0 22px; border-bottom: 1px solid var(--rule-lt); }

.art-summary {
  background: var(--bg-warm); border-left: 4px solid var(--accent);
  padding: 18px 22px; margin-bottom: 30px;
  font-size: 15.5px; line-height: 1.72; color: var(--ink-3); font-style: italic;
}

.art-section { margin-bottom: 30px; }
.art-section-h {
  font-family: var(--serif); font-size: 21px; font-weight: 700;
  color: var(--ink); margin-bottom: 13px; padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-lt);
}
.art-section-body { font-size: 16px; line-height: 1.82; color: #2a2a2a; }
.art-section-body p { margin-bottom: 18px; }

.art-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--rule); }
.art-tag {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border: 1.5px solid var(--rule);
  color: var(--muted); transition: all .15s;
}
.art-tag:hover { border-color: var(--accent); color: var(--accent); }

.share-row {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--rule);
}
.share-lbl { font-family: var(--cond); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--quiet); }
.shr-btn {
  padding: 6px 16px; font-size: 12px; font-weight: 700; border: none; cursor: pointer;
  font-family: var(--cond); letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: opacity .15s;
}
.shr-btn:hover { opacity: .85; }
.shr-tw { background: #1da1f2; color: #fff; }
.shr-li { background: #0077b5; color: #fff; }
.shr-cp { background: var(--bg-warm); color: var(--muted); border: 1.5px solid var(--rule); }

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent-2); z-index: 9999; width: 0; transition: width .1s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY / SEARCH PAGES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-wrap { max-width: var(--max); margin: 0 auto; padding: 32px 24px; }
.page-hdr { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 3px solid var(--ink); }
.page-hdr-title { font-family: var(--serif); font-size: 30px; font-weight: 800; color: var(--ink); }
.page-hdr-count { font-size: 13px; color: var(--quiet); }

.cat-layout { display: grid; grid-template-columns: 1fr 280px; gap: 36px; }
.cat-list {}
.cat-item {
  display: grid; grid-template-columns: 168px 1fr;
  gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--rule-lt); align-items: start;
}
.cat-item:first-child { padding-top: 0; }
.cat-img { width: 168px; height: 116px; object-fit: cover; transition: opacity .2s; }
.cat-item:hover .cat-img { opacity: .9; }
.cat-kicker { font-family: var(--cond); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 6px; }
.cat-title { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.33; color: var(--ink); margin-bottom: 7px; }
.cat-title a:hover { color: var(--accent); }
.cat-deck { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-meta { font-size: 11px; color: var(--quiet); }

.cat-sidebar {}
.filter-list { display: flex; flex-direction: column; gap: 0; }
.filter-link {
  display: block; padding: 9px 0; border-bottom: 1px solid var(--rule-lt);
  font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .15s;
}
.filter-link:hover, .filter-link.active { color: var(--accent-2); }
.filter-link:last-child { border-bottom: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   AUTHOR PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.author-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #0d2640 100%);
  padding: 48px 24px;
  color: #fff;
}
.author-banner-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
}
.author-banner-av {
  width: 116px; height: 116px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.3);
}
.author-banner-kicker { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 7px; }
.author-banner-name { font-family: var(--serif); font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.author-banner-desig { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.author-banner-loc { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.exp-tag { font-family: var(--cond); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); }
.author-banner-bio { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.7; max-width: 680px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUPPORT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.support-hero {
  background: linear-gradient(160deg, var(--accent) 0%, #071624 100%);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.support-hero-tag { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.support-hero-title { font-family: var(--serif); font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.support-hero-title em { font-style: italic; color: #ffd585; }
.support-hero-sub { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 640px; margin: 0 auto 32px; }
.support-hero-cta {
  display: inline-block; background: var(--accent-2); color: #fff !important;
  padding: 14px 36px; font-family: var(--cond); font-size: 15px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; transition: background .2s;
}
.support-hero-cta:hover { background: #a01830; }

.support-wrap { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.support-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 60px; }
.why-card { text-align: center; padding: 28px 20px; border: 1px solid var(--rule); }
.why-icon { font-size: 36px; margin-bottom: 14px; }
.why-title { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.why-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

.support-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.tier-card {
  border: 2px solid var(--rule); padding: 28px 22px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.tier-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.tier-card.featured { border-color: var(--accent-2); background: #fff8f8; }
.tier-featured-badge { font-family: var(--cond); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--accent-2); color: #fff; padding: 3px 10px; display: inline-block; margin-bottom: 12px; }
.tier-name { font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--quiet); margin-bottom: 12px; }
.tier-price { font-family: var(--serif); font-size: 40px; font-weight: 900; color: var(--ink); line-height: 1; }
.tier-price sup { font-size: 20px; vertical-align: super; }
.tier-period { font-size: 12px; color: var(--quiet); margin-bottom: 18px; }
.tier-perks { list-style: none; margin-bottom: 22px; text-align: left; }
.tier-perks li { font-size: 13.5px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--rule-lt); display: flex; gap: 8px; }
.tier-perks li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.tier-btn {
  display: block; width: 100%; padding: 11px; font-family: var(--cond);
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--accent); color: var(--accent); background: transparent;
  cursor: pointer; transition: all .15s;
}
.tier-btn:hover, .tier-card.featured .tier-btn { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }

.support-mission { background: var(--bg-warm); padding: 48px; margin-bottom: 48px; }
.support-mission-title { font-family: var(--serif); font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.support-mission p { font-size: 15.5px; line-height: 1.78; color: var(--ink-3); margin-bottom: 14px; }

.support-onetime { text-align: center; padding: 40px; border: 1px solid var(--rule); }
.support-onetime-title { font-family: var(--serif); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.support-onetime p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.onetime-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.onetime-btn {
  padding: 10px 22px; font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; border: 2px solid var(--accent);
  color: var(--accent); background: transparent; cursor: pointer; transition: all .15s;
}
.onetime-btn:hover { background: var(--accent); color: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 48px 24px; }
.about-title { font-family: var(--serif); font-size: 40px; font-weight: 900; margin-bottom: 6px; }
.about-rule { width: 60px; height: 4px; background: var(--accent-2); margin: 0 0 24px; }
.about-lead { font-size: 19px; font-style: italic; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.about-section { margin-bottom: 40px; }
.about-h2 { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--ink); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--rule); }
.about-section p { font-size: 15.5px; line-height: 1.8; color: var(--ink-3); margin-bottom: 14px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 20px; margin-top: 20px; }
.team-card { text-align: center; }
.team-av { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; margin: 0 auto 8px; border: 2px solid var(--rule); }
.team-name { font-family: var(--serif); font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.team-name a:hover { color: var(--accent); }
.team-role { font-family: var(--cond); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 3px; }
.team-loc { font-size: 10.5px; color: var(--quiet); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SEARCH PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.search-bar { background: var(--bg-warm); border-bottom: 1px solid var(--rule); padding: 24px; }
.search-bar-inner { max-width: var(--max); margin: 0 auto; }
.search-form { display: flex; border: 2px solid var(--ink); max-width: 560px; }
.search-form input { flex: 1; padding: 12px 16px; font-size: 16px; font-family: var(--sans); border: none; outline: none; background: #fff; }
.search-form button { background: var(--ink); color: #fff; border: none; padding: 12px 24px; font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.search-form button:hover { background: var(--accent-2); }
.search-count { font-size: 13px; color: var(--quiet); margin-top: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   404
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.err-page { text-align: center; padding: 80px 24px; }
.err-code { font-family: var(--cond); font-size: 96px; font-weight: 900; color: var(--accent-2); line-height: 1; }
.err-title { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); margin: 12px 0 10px; }
.err-text { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.err-btn { display: inline-block; background: var(--accent); color: #fff; padding: 12px 28px; font-family: var(--cond); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: 13px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.55); margin-top: 52px; }
.footer-top { max-width: var(--max); margin: 0 auto; padding: 44px 24px 36px; display: grid; grid-template-columns: 280px 1fr; gap: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { }
.footer-logo { font-family: var(--serif); font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-logo em { font-style: italic; color: rgba(255,255,255,.5); }
.footer-tagline { font-size: 12.5px; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 18px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-family: var(--cond); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-social a:hover { color: rgba(255,255,255,.9); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer-col-head { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { background: #050505; }
.footer-bottom-inner { max-width: var(--max); margin: 0 auto; padding: 14px 24px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.28); letter-spacing: .03em; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1100px) {
  .home-grid { grid-template-columns: 1fr 260px; }
  .art-layout { grid-template-columns: 1fr; }
  .art-layout .home-rail { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stack { display: none; }
  .hero-lead-img { height: 280px; }
  .hero-lead-title { font-size: 22px; }
  .home-grid { grid-template-columns: 1fr; }
  .home-rail { display: none; }
  .mag-grid { grid-template-columns: 1fr 1fr; }
  .cat-layout { grid-template-columns: 1fr; }
  .cat-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .support-tiers, .support-why { grid-template-columns: 1fr; }
  .masthead-inner { grid-template-columns: 1fr; justify-items: center; gap: 12px; }
  .masthead-left, .masthead-right { display: none; }
  .brand-name { font-size: 36px; }
}
@media (max-width: 600px) {
  .feed-item { grid-template-columns: 1fr; }
  .feed-img { width: 100%; height: 180px; }
  .cat-item { grid-template-columns: 1fr; }
  .cat-img { width: 100%; height: 180px; }
  .mag-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .art-title { font-size: 26px; }
  .hero-lead-img { height: 220px; }
  .hero-lead-body { padding: 20px 16px 16px; }
  .hero-lead-title { font-size: 18px; }
  .author-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .author-banner-av { margin: 0 auto; }
  .home-wrap, .art-wrap, .page-wrap { padding: 16px; }
  .topstrip { display: none; }
  .support-hero-title { font-size: 32px; }
  .support-mission { padding: 24px; }
}
