*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0D0D0D;
  --paper:  #F4F1EC;
  --cream:  #EAE5DB;
  --red:    #C0001A;
  --red-dim:#8C0013;
  --gray:   #6B6560;
  --rule:   #1E1E1E;
  --serif:  'Libre Baskerville', Georgia, serif;
  --sans:   'Syne', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* TICKER */
.ticker-wrap {
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  overflow: hidden; display: flex; align-items: center; height: 34px;
}
.ticker-label {
  background: var(--red); padding: 0 16px; height: 100%;
  display: flex; align-items: center; white-space: nowrap;
  flex-shrink: 0; letter-spacing: .12em;
}
.ticker-track {
  display: flex; animation: ticker 32s linear infinite; gap: 0;
}
.ticker-track span { white-space: nowrap; padding: 0 40px; opacity: .85; }
.ticker-track span::before {
  content: '◆'; margin-right: 14px; opacity: .4;
  font-size: 7px; vertical-align: middle;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAV */
nav {
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0;
  background: var(--paper); z-index: 100;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: stretch; height: 60px;
}
.nav-logo {
  font-family: var(--sans); font-weight: 800; font-size: 0;
  text-decoration: none; color: var(--ink);
  display: flex; align-items: center; margin-right: 40px;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; flex: 1; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; color: var(--gray);
  padding: 0 16px; height: 100%; display: flex; align-items: center;
  transition: color .18s; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 700; }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--red);
}
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-search {
  background: none; border: 1px solid #ccc; border-radius: 3px;
  padding: 6px 14px; font-family: var(--sans); font-size: 12px;
  color: var(--ink); outline: none; width: 160px; transition: border-color .2s;
}
.nav-search:focus { border-color: var(--ink); }
.nav-search::placeholder { color: #aaa; }
.btn-sub {
  background: var(--ink); color: var(--paper); border: none;
  padding: 7px 18px; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: background .18s;
}
.btn-sub:hover { background: var(--red); }

/* MASTHEAD */
.masthead {
  border-bottom: 3px double var(--rule);
  padding: 28px 32px 20px;
  max-width: 1280px; margin: 0 auto; text-align: center;
}
.masthead-logo { height: 80px; width: auto; margin-bottom: 10px; }
.masthead-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; padding-top: 10px; border-top: 1px solid #ccc;
}
.masthead-meta span {
  font-family: var(--sans); font-size: 11px; color: var(--gray);
  letter-spacing: .07em; text-transform: uppercase;
}
.masthead-tagline {
  font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--gray);
}

/* SECTION LABEL */
.section-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 4px; height: 22px;
  background: var(--red); flex-shrink: 0;
}
.section-label span {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink);
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* PAGE */
.page { max-width: 1280px; margin: 0 auto; padding: 0 32px 64px; }

/* HERO */
.hero {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 0; border-bottom: 1px solid #ccc; padding: 40px 0;
}
.hero-main {
  padding-right: 40px; border-right: 1px solid #ccc;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px;
}
.hero-kicker::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.hero-headline {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--ink);
}
.hero-headline em { font-style: italic; color: var(--red-dim); }
.hero-deck { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 560px; }
.hero-byline {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 12px; color: var(--gray);
}
.hero-byline strong { color: var(--ink); font-weight: 700; }
.hero-byline .sep { opacity: .35; }
.hero-img {
  width: 100%; aspect-ratio: 16/10;
  background: var(--ink); border-radius: 2px; overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex; align-items: flex-end; padding: 16px;
}
.hero-img-placeholder span {
  font-family: var(--sans); font-size: 10px;
  color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em;
}
.hero-sidebar { padding-left: 32px; display: flex; flex-direction: column; }
.hero-sidebar-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.side-story {
  padding: 14px 0; border-bottom: 1px solid #ddd;
  cursor: pointer; transition: opacity .15s; text-decoration: none; display: block;
}
.side-story:last-child { border-bottom: none; }
.side-story:hover { opacity: .7; }
.side-story .ss-cat {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 5px;
}
.side-story .ss-title {
  font-family: var(--serif); font-size: 14px; font-weight: 700;
  line-height: 1.3; color: var(--ink); margin-bottom: 5px;
}
.side-story .ss-time { font-family: var(--sans); font-size: 11px; color: var(--gray); }

/* CARD GRID */
.grid-section { padding: 40px 0; border-bottom: 1px solid #ccc; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }

.card {
  display: flex; flex-direction: column;
  cursor: pointer; text-decoration: none;
  transition: transform .2s;
}
.card:hover { transform: translateY(-2px); }
.card:hover .card-title {
  text-decoration: underline;
  text-decoration-color: var(--red); text-underline-offset: 3px;
}
.card-img {
  width: 100%; aspect-ratio: 3/2;
  background: var(--cream); border-radius: 2px;
  overflow: hidden; margin-bottom: 14px;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1c1c1c 0%, #3a3a3a 100%);
}
.card-cat {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.card-title {
  font-family: var(--serif); font-size: 18px; font-weight: 700;
  line-height: 1.3; color: var(--ink); margin-bottom: 8px;
}
.card-deck {
  font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; flex: 1;
}
.card-meta {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; color: var(--gray);
}
.card-meta .dot-sep { opacity: .35; }
.card-meta .author { font-weight: 600; color: var(--ink); }

.card-featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; align-items: start;
}
.card-featured .card-img { margin-bottom: 0; aspect-ratio: 4/3; }
.card-featured .card-body { display: flex; flex-direction: column; padding-top: 4px; }
.card-featured .card-title { font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
.card-featured .card-deck { font-size: 14.5px; }

/* OPINI */
.opini-strip { padding: 40px 0; border-bottom: 1px solid #ccc; }
.opini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: #ccc;
  border: 1px solid #ccc; border-radius: 2px; overflow: hidden;
}
.opini-card {
  background: var(--paper); padding: 24px 20px;
  cursor: pointer; transition: background .15s;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
}
.opini-card:hover { background: var(--cream); }
.opini-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); display: flex; align-items: center;
  justify-content: center; font-family: var(--sans);
  font-weight: 800; font-size: 14px; color: var(--paper); flex-shrink: 0;
}
.opini-author { font-family: var(--sans); font-weight: 700; font-size: 12px; color: var(--ink); }
.opini-role { font-family: var(--sans); font-size: 11px; color: var(--gray); }
.opini-title {
  font-family: var(--serif); font-size: 15px; font-weight: 700;
  line-height: 1.35; color: var(--ink); font-style: italic;
}

/* POPULAR + NEWSLETTER */
.popular-section {
  padding: 40px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.ranked-list { display: flex; flex-direction: column; }
.ranked-item {
  display: grid; grid-template-columns: 48px 1fr;
  border-bottom: 1px solid #ddd; padding: 16px 0;
  text-decoration: none; transition: opacity .15s;
}
.ranked-item:last-child { border-bottom: none; }
.ranked-item:hover { opacity: .7; }
.rank-num {
  font-family: var(--sans); font-weight: 800; font-size: 28px;
  color: var(--cream); line-height: 1; padding-top: 4px;
  -webkit-text-stroke: 1px #ccc;
}
.ranked-item:first-child .rank-num { -webkit-text-stroke: 1.5px var(--red); color: transparent; }
.rank-cat {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 5px;
}
.rank-title {
  font-family: var(--serif); font-size: 15px; font-weight: 700;
  line-height: 1.3; color: var(--ink);
}
.rank-time { font-family: var(--sans); font-size: 11px; color: var(--gray); margin-top: 6px; }

.newsletter-box {
  background: var(--ink); border-radius: 3px;
  padding: 36px 32px; display: flex; flex-direction: column;
  gap: 16px; align-self: start;
}
.nl-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red);
}
.nl-title {
  font-family: var(--serif); font-size: 22px; font-weight: 700;
  color: var(--paper); line-height: 1.25;
}
.nl-desc { font-size: 13.5px; color: rgba(244,241,236,.6); line-height: 1.6; }
.nl-form { display: flex; gap: 8px; }
.nl-input {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); border-radius: 2px;
  padding: 10px 14px; font-family: var(--sans); font-size: 13px;
  color: var(--paper); outline: none;
}
.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-input:focus { border-color: rgba(255,255,255,.4); }
.nl-btn {
  background: var(--red); color: #fff; border: none;
  padding: 10px 18px; font-family: var(--sans); font-size: 11px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; white-space: nowrap; transition: background .18s;
}
.nl-btn:hover { background: #a0001a; }
.nl-note { font-family: var(--sans); font-size: 10px; color: rgba(255,255,255,.25); }

/* ARTICLE PAGE */
.article-wrap {
  max-width: 1280px; margin: 0 auto; padding: 48px 32px 80px;
  display: grid; grid-template-columns: 680px 1fr; gap: 64px; align-items: start;
}
.article-main {}
.article-kicker {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.article-kicker::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.article-title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 16px;
}
.article-deck {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--gray); line-height: 1.6; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid #ddd;
}
.article-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; color: var(--gray);
  margin-bottom: 32px;
}
.article-meta strong { color: var(--ink); }
.article-meta .sep { opacity: .35; }
.article-hero-img {
  width: 100%; aspect-ratio: 16/9; background: var(--cream);
  border-radius: 2px; overflow: hidden; margin-bottom: 12px;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-caption {
  font-family: var(--sans); font-size: 11px; color: var(--gray);
  margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #eee;
}
.article-body { font-size: 17px; line-height: 1.8; color: var(--ink); }
.article-body p { margin-bottom: 24px; }
.article-body h2 {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  margin: 40px 0 16px; padding-top: 32px; border-top: 1px solid #ddd;
}
.article-body blockquote {
  border-left: 3px solid var(--red); margin: 32px 0;
  padding: 16px 24px; background: var(--cream);
  font-style: italic; font-size: 19px; line-height: 1.6; color: var(--ink);
}
.article-sidebar { position: sticky; top: 80px; }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget .section-label { margin-bottom: 16px; }
.sidebar-card {
  padding: 14px 0; border-bottom: 1px solid #ddd;
  text-decoration: none; display: block; transition: opacity .15s;
}
.sidebar-card:hover { opacity: .7; }
.sidebar-card .sc-cat {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.sidebar-card .sc-title {
  font-family: var(--serif); font-size: 14px; font-weight: 700;
  line-height: 1.3; color: var(--ink);
}

/* CATEGORY PAGE */
.cat-header {
  max-width: 1280px; margin: 0 auto; padding: 40px 32px 0;
  border-bottom: 1px solid #ccc; margin-bottom: 0;
}
.cat-title {
  font-family: var(--sans); font-weight: 800; font-size: 48px;
  letter-spacing: -.03em; text-transform: uppercase;
  color: var(--paper); -webkit-text-stroke: 2px var(--ink); line-height: 1;
  margin-bottom: 12px;
}
.cat-title .accent { color: var(--red); -webkit-text-stroke: 0; }
.cat-desc {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--gray); margin-bottom: 24px;
}

/* FOOTER */
footer { border-top: 3px double var(--rule); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 40px 32px 32px; }
.footer-top {
  display: grid; grid-template-columns: 200px 1fr; gap: 48px;
  padding-bottom: 32px; border-bottom: 1px solid #ccc; margin-bottom: 24px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 10px; display: block; }
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 12px; color: var(--gray); line-height: 1.5;
}
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col-title {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #ddd;
}
.footer-col a {
  display: block; font-family: var(--sans); font-size: 12px;
  color: var(--gray); text-decoration: none; margin-bottom: 7px; transition: color .15s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--sans); font-size: 11px; color: var(--gray); }
.footer-copy a { color: var(--gray); text-decoration: none; }
.footer-copy a:hover { color: var(--ink); text-decoration: underline; }

/* ANIMATIONS */
.fade-in {
  opacity: 0; transform: translateY(18px);
  animation: fadeIn .6s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: .05s; }
.fade-in:nth-child(2) { animation-delay: .12s; }
.fade-in:nth-child(3) { animation-delay: .19s; }
.fade-in:nth-child(4) { animation-delay: .26s; }
.fade-in:nth-child(5) { animation-delay: .33s; }
.fade-in:nth-child(6) { animation-delay: .40s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-main { padding-right: 0; border-right: none; border-bottom: 1px solid #ccc; padding-bottom: 32px; }
  .hero-sidebar { padding-left: 0; padding-top: 24px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-featured { grid-column: span 2; }
  .opini-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-section { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .page { padding: 0 16px 48px; }
  .masthead { padding: 20px 16px 16px; }
  .masthead-logo { height: 56px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .opini-grid { grid-template-columns: 1fr; }
  .article-wrap { padding: 24px 16px 48px; }
}
