/* ── VARIABLES ─────────────────────────────────────────────────────────────── */
:root {
  --red:    #D0021B;
  --red-dk: #A50016;
  --green:  #1A7A3F;
  --purple: #5C2D91;
  --blue:   #0047AB;
  --gold:   #B8860B;
  --text:   #1A1A1A;
  --text-2: #444;
  --text-3: #888;
  --border: #E8E3DC;
  --bg:     #FFFFFF;
  --bg-2:   #F8F5F0;
  --serif:  'Playfair Display', Georgia, serif;
  --body:   'Source Serif 4', Georgia, serif;
  --sans:   'Barlow', system-ui, sans-serif;
  --radius: 0px;
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); }
::selection { background: var(--red); color: white; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #CCC; }

/* ── BREAKING BAR ─────────────────────────────────────────────────────────── */
.breaking-bar {
  background: var(--red);
  display: flex; align-items: center; gap: 0;
  height: 34px; overflow: hidden;
}
.breaking-label {
  font-family: var(--sans); font-weight: 700; font-size: 10px;
  letter-spacing: .14em; color: white; text-transform: uppercase;
  background: #A50016; padding: 0 16px; height: 100%;
  display: flex; align-items: center; flex-shrink: 0;
  white-space: nowrap;
}
.breaking-track-wrap { flex: 1; overflow: hidden; height: 100%; position: relative; }
.breaking-track {
  display: flex; align-items: center; height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}
.breaking-item {
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  color: white; padding: 0 40px; letter-spacing: .01em;
}
.breaking-item::after { content: '·'; margin-left: 40px; opacity: .5; }
@keyframes ticker-scroll {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}

/* ── UTILITY BAR ──────────────────────────────────────────────────────────── */
.util-bar { background: #F2EDE6; border-bottom: 1px solid var(--border); }
.util-inner {
  max-width: 1280px; margin: 0 auto; padding: 6px 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.util-left { display: flex; align-items: center; gap: 8px; }
.util-left span, .util-left a {
  font-family: var(--sans); font-size: 11px; color: var(--text-3);
}
.util-link:hover { color: var(--red); }
.util-sep { color: #CCC; }
.util-premium {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: .04em; color: var(--red);
  background: none; border: 1px solid var(--red);
  padding: 3px 12px; transition: all .15s;
}
.util-premium:hover, .util-premium.active {
  background: var(--red); color: white;
}

/* ── HEADER ───────────────────────────────────────────────────────────────── */
.site-header { background: white; border-bottom: 2px solid var(--text); }
.header-ad-wrap {
  display: flex; justify-content: center;
  padding: 12px 20px 0;
}
.logo-row {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.site-logo {
  font-family: var(--serif); font-weight: 900; font-style: normal;
  font-size: 64px; line-height: 1; letter-spacing: -.03em;
  color: var(--text); display: flex; align-items: baseline; gap: 1px;
}
.site-logo em { color: var(--red); font-style: italic; }
.site-logo span { font-size: 16px; color: #BBB; font-weight: 400; margin-left: 3px; font-style: normal; margin-bottom: 4px; }
.logo-tagline {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: var(--text-3); letter-spacing: .18em; text-transform: uppercase;
  margin-top: 4px;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.main-nav { background: white; }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: center;
  overflow-x: auto; scrollbar-width: none; padding: 0 20px;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item {
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  background: none; border: none; color: var(--text-2);
  padding: 12px 18px; border-bottom: 3px solid transparent;
  transition: all .15s; white-space: nowrap;
}
.nav-item:hover { color: var(--text); }
.nav-item.active { color: var(--red); border-bottom-color: var(--red); }
.nav-hot { color: var(--red) !important; }

/* ── PAGE WRAP ────────────────────────────────────────────────────────────── */
.site-main { background: var(--bg-2); }
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 24px 16px 40px; }

/* ── HERO SECTION ─────────────────────────────────────────────────────────── */
.hero-section {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 2px; margin-bottom: 2px; background: var(--border);
}
.hero-main { background: white; cursor: pointer; position: relative; overflow: hidden; }
.hero-main:hover .hero-img { transform: scale(1.03); }
.hero-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .4s ease;
  background: linear-gradient(135deg, #1a0a0a 0%, #3d0a0a 100%);
}
.hero-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,.3);
  letter-spacing: .1em; text-transform: uppercase;
}
.hero-img-wrap { overflow: hidden; }
.hero-content { padding: 20px 24px 24px; }
.hero-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.1;
  letter-spacing: -.02em; color: var(--text);
  margin-bottom: 10px;
}
.hero-title:hover { color: var(--red); }
.hero-deck { font-family: var(--body); font-size: 15px; color: var(--text-2); line-height: 1.6; }
.hero-byline { font-family: var(--sans); font-size: 11px; color: var(--text-3); margin-top: 10px; }

/* Hero side stack */
.hero-side { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
.hero-side-card {
  background: white; cursor: pointer;
  display: flex; flex-direction: column;
  flex: 1; overflow: hidden;
  transition: box-shadow .15s;
}
.hero-side-card:hover { box-shadow: inset 3px 0 0 var(--red); }
.hero-side-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3d 100%);
}
.hero-side-body { padding: 12px 14px 14px; flex: 1; }
.hero-side-title {
  font-family: var(--serif); font-weight: 800;
  font-size: 15px; line-height: 1.2; color: var(--text);
  margin-bottom: 5px;
}
.hero-side-card:hover .hero-side-title { color: var(--red); }
.hero-side-deck { font-family: var(--body); font-size: 12px; color: var(--text-3); line-height: 1.4; }

/* ── CAT BADGE ────────────────────────────────────────────────────────────── */
.badge {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  color: white; padding: 2px 8px; display: inline-block;
  flex-shrink: 0;
}
.badge-red    { background: var(--red); }
.badge-green  { background: var(--green); }
.badge-purple { background: var(--purple); }
.badge-blue   { background: var(--blue); }
.badge-gold   { background: var(--gold); }

.time-meta { font-family: var(--sans); font-size: 11px; color: var(--text-3); }
.exclusive-tag {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 4px;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
  display: inline-block; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

/* ── AD SLOTS ─────────────────────────────────────────────────────────────── */
.ad-slot {
  background: #EEE9E2; border: 1px dashed #D5CEC6;
  display: flex; align-items: center; justify-content: center;
}
.ad-lbl { font-family: var(--sans); font-size: 9px; color: #BBB; letter-spacing: .1em; text-transform: uppercase; }
.ad-leaderboard { width: 728px; max-width: 100%; height: 90px; }
.ad-728 { width: 100%; height: 90px; }
.ad-inline { margin: 24px 0; }
.ad-band { display: flex; justify-content: center; padding: 16px 0; background: white; margin-bottom: 2px; }
.ad-300 { width: 100%; height: 250px; }

/* ── CAROUSEL STRIP ───────────────────────────────────────────────────────── */
.carousel-section { background: white; padding: 20px 0; margin-bottom: 2px; }
.section-hd {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 0 12px; margin-bottom: 0;
}
.section-ttl {
  font-family: var(--serif); font-weight: 900; font-size: 22px;
  letter-spacing: -.01em; color: var(--text);
  border-left: 4px solid var(--text); padding-left: 12px;
  line-height: 1;
}
.section-ttl.red    { border-color: var(--red); color: var(--red); }
.section-ttl.green  { border-color: var(--green); color: var(--green); }
.section-ttl.purple { border-color: var(--purple); color: var(--purple); }
.see-all { font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: .06em; text-transform: uppercase; }
.see-all:hover { text-decoration: underline; }
.carousel-controls { display: flex; gap: 6px; }
.car-btn {
  width: 32px; height: 32px; border: 1px solid var(--border); background: white; font-size: 16px; color: var(--text-2);
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.car-btn:hover { border-color: var(--text); color: var(--text); }
.carousel-track-wrap { overflow: hidden; }
.carousel-track {
  display: flex; gap: 2px;
  transition: transform .35s ease;
}
.car-card {
  flex-shrink: 0; width: calc(25% - 2px); background: white; cursor: pointer;
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow .15s;
}
.car-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.car-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  background: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
}
.car-body { padding: 10px 12px 14px; }
.car-title {
  font-family: var(--serif); font-weight: 800; font-size: 14px;
  line-height: 1.2; color: var(--text); margin-top: 8px;
}
.car-card:hover .car-title { color: var(--red); }

/* ── CONTENT GRID ─────────────────────────────────────────────────────────── */
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

/* ── FEED SECTIONS ────────────────────────────────────────────────────────── */
.feed-section { background: white; padding: 20px; margin-bottom: 2px; }
.feed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 4px; }
.feed-card { cursor: pointer; overflow: hidden; }
.feed-card:hover .feed-img { transform: scale(1.04); }
.feed-img-wrap { overflow: hidden; margin-bottom: 10px; }
.feed-img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  transition: transform .35s ease;
}
.feed-title {
  font-family: var(--serif); font-weight: 800; font-size: 16px;
  line-height: 1.2; color: var(--text); margin: 8px 0 5px;
}
.feed-card:hover .feed-title { color: var(--red); }
.feed-deck { font-family: var(--body); font-size: 12px; color: var(--text-3); line-height: 1.5; }
.feed-meta { display: flex; align-items: center; gap: 8px; }

/* Feed list style */
.feed-list { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.list-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border); cursor: pointer;
  transition: background .1s;
}
.list-item:last-child { border-bottom: none; }
.list-item:hover { background: #FFF8F6; margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
.list-img {
  width: 90px; height: 65px; object-fit: cover; flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a2a 0%, #2a2a3d 100%);
}
.list-body { flex: 1; min-width: 0; }
.list-title {
  font-family: var(--serif); font-weight: 800; font-size: 15px;
  line-height: 1.2; color: var(--text); margin-bottom: 5px;
}
.list-item:hover .list-title { color: var(--red); }
.list-deck { font-family: var(--body); font-size: 12px; color: var(--text-3); line-height: 1.4; }
.list-meta { font-family: var(--sans); font-size: 10px; color: var(--text-3); margin-top: 5px; }

/* ── SIDEBAR ──────────────────────────────────────────────────────────────── */
.col-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-block { background: white; padding: 16px; }
.sidebar-block-title {
  font-family: var(--serif); font-weight: 900; font-size: 17px;
  border-bottom: 2px solid var(--text); padding-bottom: 8px; margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 8px;
}
.sidebar-block-sub { font-family: var(--sans); font-size: 11px; color: var(--text-3); font-weight: 400; }

.sidebar-premium {
  border-top: 4px solid var(--red);
}
.sidebar-premium-head {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .03em; color: var(--text-2); margin-bottom: 12px;
}
.sidebar-premium-logo {
  font-family: var(--serif); font-weight: 900; font-size: 22px;
  color: var(--text); margin-right: 4px;
}
.sidebar-premium-logo em { color: var(--red); font-style: italic; }
.sidebar-premium-list {
  list-style: none; margin-bottom: 14px;
}
.sidebar-premium-list li {
  font-family: var(--body); font-size: 13px; color: var(--text-2);
  padding: 6px 0; border-bottom: 1px solid var(--border); line-height: 1.4;
  padding-left: 16px; position: relative;
}
.sidebar-premium-list li::before { content: '✓'; color: var(--red); position: absolute; left: 0; font-weight: 700; }
.sidebar-premium-price {
  font-family: var(--serif); font-weight: 900; font-size: 36px;
  color: var(--text); letter-spacing: -.02em; margin-bottom: 2px; line-height: 1;
}
.sidebar-premium-price small { font-size: 14px; font-weight: 400; color: var(--text-3); font-family: var(--sans); }
.sidebar-premium-note { font-family: var(--sans); font-size: 10px; color: #BBB; margin-top: 6px; text-align: center; }

/* Top audiences */
.aud-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #F5F0E8; }
.aud-row:last-child { border-bottom: none; }
.aud-rank { font-family: var(--serif); font-weight: 900; font-size: 20px; color: #DDD; width: 20px; text-align: center; flex-shrink: 0; }
.aud-rank.r1 { color: var(--red); }
.aud-info { flex: 1; min-width: 0; }
.aud-ch { font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--text); }
.aud-prog { font-family: var(--sans); font-size: 10px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aud-nums { text-align: right; flex-shrink: 0; }
.aud-score { font-family: var(--serif); font-weight: 800; font-size: 15px; color: var(--text); line-height: 1; }
.aud-share { font-family: var(--sans); font-size: 10px; }
.aud-up { color: var(--green); }
.aud-dn { color: var(--red); }
.aud-fl { color: #BBB; }
.widget-lock { font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--red); cursor: pointer; padding-top: 10px; text-align: center; }

/* Must read */
.mr-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
.mr-item:last-child { border-bottom: none; }
.mr-num { font-family: var(--serif); font-weight: 900; font-size: 28px; color: #E8E0D4; line-height: 1; flex-shrink: 0; width: 28px; }
.mr-title { font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--text); line-height: 1.3; }
.mr-item:hover .mr-title { color: var(--red); }

/* Newsletter */
.sidebar-nl { border-top: 3px solid var(--text); }
.sidebar-nl-desc { font-family: var(--body); font-size: 13px; color: var(--text-3); margin-bottom: 12px; line-height: 1.5; }
.nl-input {
  width: 100%; border: none; border-bottom: 2px solid var(--text);
  padding: 8px 0; font-family: var(--body); font-size: 13px;
  outline: none; background: transparent; color: var(--text);
}
.nl-input::placeholder { color: #CCC; }
.nl-ok { font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--green); padding-top: 10px; }

/* ── MOSAIC GRID ──────────────────────────────────────────────────────────── */
.mosaic-section { background: white; padding: 20px; margin-top: 2px; }
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 4px;
}
.mosaic-card { cursor: pointer; overflow: hidden; }
.mosaic-card:hover .mosaic-img { transform: scale(1.04); }
.mosaic-img-wrap { overflow: hidden; margin-bottom: 8px; }
.mosaic-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: linear-gradient(135deg, #111 0%, #333 100%);
  transition: transform .35s ease;
}
.mosaic-title {
  font-family: var(--serif); font-weight: 800; font-size: 14px;
  line-height: 1.2; color: var(--text); margin-bottom: 4px;
}
.mosaic-card:hover .mosaic-title { color: var(--red); }
.mosaic-meta { font-family: var(--sans); font-size: 10px; color: var(--text-3); }
.category-page { background: white; padding: 24px 20px; }
.category-page-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  padding-bottom: 18px; margin-bottom: 18px; border-bottom: 2px solid var(--text);
}
.category-page-kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--red);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px;
}
.category-page-title {
  font-family: var(--serif); font-size: clamp(30px, 5vw, 48px); line-height: 1;
  letter-spacing: -.03em; color: var(--text);
}
.category-page-empty { font-family: var(--body); color: var(--text-3); padding: 24px 0; }
.category-page-grid { grid-template-columns: repeat(4, 1fr); }
.load-more {
  display: block; margin: 24px auto 0;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  background: none; border: 2px solid var(--text);
  color: var(--text); padding: 12px 40px; transition: all .15s;
}
.load-more:hover { background: var(--text); color: white; }

/* ── LOCK OVERLAY ─────────────────────────────────────────────────────────── */
.lock-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(255,255,255,.97) 60%);
  display: flex; align-items: flex-end; padding: 12px 16px;
}
.lock-text { font-family: var(--sans); font-weight: 700; font-size: 11px; color: var(--red); letter-spacing: .08em; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-red {
  background: var(--red); color: white; border: none;
  font-family: var(--sans); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 28px; transition: background .15s; display: block; text-align: center;
}
.btn-red:hover { background: var(--red-dk); }
.btn-ghost {
  background: none; border: 2px solid #DDD; color: #888;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 10px 24px; transition: all .15s; display: block; text-align: center;
}
.btn-ghost:hover { border-color: #999; color: #444; }
.w100 { width: 100%; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text); color: white;
  padding: 32px 20px; text-align: center;
}
.footer-logo {
  display: inline-block;
  font-family: var(--serif); font-weight: 900; font-size: 32px;
  letter-spacing: -.02em; margin-bottom: 16px;
}
.footer-logo em { color: var(--red); font-style: italic; }
.footer-logo span { font-size: 14px; color: #888; font-style: normal; font-weight: 400; margin-left: 3px; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 16px; }
.footer-nav a { font-family: var(--sans); font-size: 11px; color: #888; letter-spacing: .06em; text-transform: uppercase; transition: color .15s; }
.footer-nav a:hover { color: white; }
.footer-copy { font-family: var(--sans); font-size: 11px; color: #555; }

/* ── ARTICLE MODAL ────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7);
  z-index: 200; display: flex; align-items: flex-start; justify-content: center;
  padding: 32px 16px 60px; overflow-y: auto;
  backdrop-filter: blur(4px);
  animation: fadein .2s ease;
}
@keyframes fadein { from{opacity:0} to{opacity:1} }
@keyframes slideup { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.modal-panel {
  background: white; width: 100%; max-width: 720px;
  position: relative; animation: slideup .24s ease;
}
.modal-close-btn {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  background: white; border: 1px solid #DDD; color: #888;
  width: 34px; height: 34px; font-size: 16px; transition: all .15s;
}
.modal-close-btn:hover { border-color: var(--text); color: var(--text); }
.modal-cat-bar { height: 5px; }
.modal-scroll { padding: 24px 36px 40px; }
.modal-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.modal-badge {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase; color: white; padding: 2px 8px;
}
.modal-time { font-family: var(--sans); font-size: 11px; color: #AAA; margin-left: auto; }
.modal-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(24px, 4vw, 38px); line-height: 1.05;
  letter-spacing: -.02em; color: var(--text); margin-bottom: 12px;
}
.modal-deck {
  font-family: var(--body); font-size: 17px; font-weight: 600;
  color: var(--text-2); line-height: 1.55; margin-bottom: 20px;
}
.modal-byline {
  display: flex; align-items: center; gap: 6px; margin-bottom: 20px;
}
.modal-author-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 900; font-size: 12px; color: white; flex-shrink: 0;
}
.modal-author-name { font-family: var(--sans); font-weight: 700; font-size: 12px; color: var(--text); letter-spacing: .03em; }
.modal-sep, .modal-author-site { font-family: var(--sans); font-size: 12px; color: #AAA; }
.modal-divider { height: 2px; background: var(--border); margin-bottom: 20px; }
.modal-body-wrap { min-height: 80px; }
.modal-loading { display: flex; align-items: center; gap: 10px; color: #BBB; font-family: var(--sans); font-size: 13px; }
.loading-spin {
  width: 14px; height: 14px; border: 2px solid #EEE; border-top-color: var(--red);
  border-radius: 50%; animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-body-text {
  font-family: var(--body); font-size: 16px; line-height: 1.85;
  color: var(--text-2); white-space: pre-line;
}
.modal-body-text.typing::after { content:'|'; animation: blink .7s steps(1) infinite; color: var(--red); }
@keyframes blink { 50%{opacity:0} }
.modal-foot {
  margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-foot-logo { font-family: var(--serif); font-weight: 900; font-size: 18px; color: #CCC; }
.modal-foot-logo em { color: var(--red); }
.modal-foot-close { font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--red); background: none; border: none; }

/* ── PREMIUM MODAL ────────────────────────────────────────────────────────── */
.premium-panel {
  background: white; max-width: 480px; width: 100%;
  padding: 40px 36px; position: relative; animation: slideup .24s ease;
}
.prem-logo {
  font-family: var(--serif); font-weight: 900; font-size: 36px;
  letter-spacing: -.02em; line-height: 1; margin-bottom: 6px;
  color: var(--text);
}
.prem-logo em { color: var(--red); font-style: italic; }
.prem-logo span { font-size: 18px; color: #AAA; font-weight: 700; font-style: normal; }
.prem-desc { font-family: var(--body); font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 14px 0 20px; }
.prem-features { list-style: none; margin-bottom: 0; }
.prem-features li {
  font-family: var(--body); font-size: 14px; color: var(--text-2);
  padding: 9px 0 9px 22px; border-bottom: 1px solid var(--border);
  position: relative; line-height: 1.4;
}
.prem-features li:last-child { border-bottom: none; }
.prem-features li::before { content: '✓'; color: var(--red); font-weight: 900; position: absolute; left: 0; font-family: var(--sans); }
.prem-price {
  font-family: var(--serif); font-weight: 900; font-size: 52px;
  color: var(--text); letter-spacing: -.03em; margin: 24px 0 4px; line-height: 1;
}
.prem-price small { font-family: var(--sans); font-size: 14px; color: #BBB; margin-left: 3px; }
.prem-cond { font-family: var(--sans); font-size: 11px; color: #BBB; margin-bottom: 20px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: column; }
  .feed-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
  .car-card { width: calc(50% - 2px); }
  .site-logo { font-size: 48px; }
  .modal-scroll { padding: 20px 20px 32px; }
  .prem-price { font-size: 40px; }
}
@media (max-width: 480px) {
  .mosaic-grid { grid-template-columns: 1fr 1fr; }
  .ad-leaderboard { width: 320px; height: 50px; }
  .carousel-section, .feed-section, .mosaic-section { padding: 16px; }
  .premium-panel, .prem-price { padding: 24px 20px; }
}

/* ── SINGLE ARTICLE ─────────────────────────────────────────────────────── */
.single-article { background:white; max-width:800px; margin:0 auto; }
.single-cat-bar { height:5px; }
.single-inner { padding:28px 40px 40px; }
.hot-tag { font-family:var(--sans);font-weight:700;font-size:9px;color:var(--red);letter-spacing:.12em;text-transform:uppercase;display:flex;align-items:center;gap:4px; }
.single-title { font-family:var(--serif);font-weight:900;font-size:clamp(24px,4vw,38px);line-height:1.05;letter-spacing:-.02em;color:var(--text);margin-bottom:14px; }
.single-deck { font-family:var(--body);font-size:18px;font-weight:600;color:var(--text-2);line-height:1.5;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid var(--border); }
.single-byline { display:flex;align-items:center;gap:8px;margin-bottom:22px; }
.byline-dot { width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--sans);font-weight:900;font-size:12px;color:white;flex-shrink:0; }
.byline-name { font-family:var(--sans);font-weight:700;font-size:12px;color:var(--text); }
.byline-sep,.byline-site { font-family:var(--sans);font-size:12px;color:#AAA; }
.single-photo { margin-bottom:24px; }
.single-photo figcaption { font-family:var(--sans);font-size:10px;color:var(--text-3);margin-top:5px; }
.single-img { width:100%;object-fit:cover; }
.single-body { font-family:var(--body);font-size:17px;line-height:1.85;color:var(--text-2); }
.single-body strong { font-weight: 700; color: var(--text); }
.single-body em { font-style: italic; color: var(--text); }
.single-body p { margin: 0 0 1.15em; }
.single-body h2 {
  margin: 1.45em 0 .6em;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
}
.single-body h3 {
  margin: 1.35em 0 .55em;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}
.single-body h4 {
  margin: 1.25em 0 .5em;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.3;
  color: var(--text);
}
.single-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.single-body ul, .single-body ol { margin: 1.2em 0 1.2em 1.4em; padding: 0; }
.single-body li { margin: .35em 0; }
.single-body table { width:100%;border-collapse:collapse;margin:24px 0;font-family:var(--sans);font-size:14px; }
.single-body th,.single-body td { border:1px solid var(--border);padding:10px 12px;text-align:left;vertical-align:top; }
.single-body th { background:#f7f4ef;font-weight:800;color:var(--text); }
.single-body blockquote {
  margin: 26px 0;
  padding: 2px 0 2px 22px;
  border-left: 4px solid var(--red);
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}
.single-body br { display:block;margin-bottom:16px; }
.single-body::after {
  content: "";
  display: block;
  clear: both;
}
.article-video-card {
  float: right;
  width: min(48%, 340px);
  margin: 6px 0 18px 24px;
}
.article-video-card__button {
  width: 100%;
  border: 0;
  padding: 0;
  background: #0b0b0d;
  color: white;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 44px -30px rgba(0,0,0,.75);
}
.article-video-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at center, rgba(208,2,27,.8), rgba(208,2,27,.1) 34%, transparent 35%),
    linear-gradient(135deg, #101010, #2b0006);
}
.article-video-card__play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--red);
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
  padding-left: 4px;
}
.article-video-card__text {
  display: block;
  padding: 13px 15px 15px;
  font-family: var(--sans);
}
.article-video-card__text strong {
  display: block;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-video-card__text em {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, .78);
  backdrop-filter: blur(5px);
}
.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal__close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
body.video-modal-open { overflow: hidden; }
@media (max-width: 720px) {
  .article-video-card {
    float: none;
    width: 100%;
    margin: 18px 0;
  }
  .video-modal__close {
    right: 8px;
    top: -48px;
  }
}
.article-font--serif { font-family: var(--body); }
.article-font--sans { font-family: var(--sans); }
.article-font--condensed { font-family: var(--display); font-weight: 800; letter-spacing: .01em; }
.article-font--mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .94em; }
.article-box {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--red);
  background: linear-gradient(135deg, #fff7f3 0%, #fff 68%);
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 18px 38px -30px rgba(208,2,27,.35);
}
.article-box h2 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}
.article-box div {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.related-section { max-width:800px;margin:24px auto 0;background:white;padding:20px 40px 30px; }
.related-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:12px; }
.related-card { text-decoration:none;color:inherit; }
.related-img-wrap { overflow:hidden;margin-bottom:8px; }
.related-title { font-family:var(--serif);font-weight:800;font-size:13px;line-height:1.2;color:var(--text);margin-top:6px; }
.related-card:hover .related-title { color:var(--red); }
