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

:root {
  --red: #b5182c;
  --red-dark: #8c1020;
  --red-light: #fdf0f2;
  --ink: #0d0d0d;
  --ink-2: #2a2a2a;
  --ink-3: #4a4a4a;
  --ink-4: #888;
  --paper: #faf9f7;
  --white: #ffffff;
  --rule: #e0ddd8;
  --rule-light: #eeece9;
  --gold: #c9a84c;
  --serif: "Playfair Display", Georgia, serif;
  --body: "Source Serif 4", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

/* TICKER */
.ticker-wrap {
  background: var(--ink);
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 2px solid var(--red);
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.72rem;
  font-family: var(--sans);
  color: #d4d4d4;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.ticker-item::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.ticker-label {
  background: var(--red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  margin-right: 4px;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MASTHEAD */
.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0 0 0 0;
}

.masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 16px;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-name span {
  color: var(--red);
}

.logo-tagline {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}

.logo-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  margin-top: 4px;
}

.masthead-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dateline {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-4);
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
}

.dateline strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

.masthead-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.search-wrap {
  display: flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  height: 36px;
}

.search-wrap input {
  background: transparent;
  border: none;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink);
  width: 180px;
  outline: none;
}

.search-wrap input::placeholder {
  color: var(--ink-4);
}

.search-wrap button {
  background: var(--red);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.2s;
}

.search-wrap button:hover {
  background: var(--red-dark);
}

.support-pill {
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.support-pill:hover {
  background: var(--red-dark);
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  color: var(--ink-3);
  font-size: 0.95rem;
  transition: color 0.2s;
  text-decoration: none;
}

.social-row a:hover {
  color: var(--red);
}

/* NAV */
.nav-bar {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 900;
}

.nav-inner {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-inner a {
  color: #c8c8c8;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.18s;
  display: block;
}

.nav-inner a:first-child {
  background: var(--red);
  color: #fff;
  border-bottom-color: var(--red);
}

.nav-inner a:hover {
  color: #fff;
  border-bottom-color: var(--red);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 14px 18px;
}

/* MOBILE DRAWER */
.drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: var(--ink-2);
  z-index: 9999;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer.open {
  left: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid #333;
  background: #111;
}

.drawer-head .d-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.drawer-head .d-logo span {
  color: var(--red);
}

.close-btn {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.4rem;
  cursor: pointer;
}

.drawer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 15px 22px;
  border-bottom: 1px solid #2e2e2e;
  transition: all 0.15s;
}

.drawer-links a:hover {
  background: var(--red);
  color: #fff;
  padding-left: 28px;
}

.drawer-support {
  margin: 20px;
  background: var(--red);
  text-align: center;
  padding: 12px;
  border-radius: 2px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* LAYOUT */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.section-head h2 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-head a {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.2s;
}

.section-head a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1px;
  background: var(--rule);
  margin-top: 28px;
  border: 1px solid var(--rule);
}

.hero-main {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-main:hover img {
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.96) 0%,
    rgba(5, 5, 5, 0.7) 55%,
    transparent 100%
  );
  padding: 40px 36px 36px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.hero-overlay h1 {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.hero-overlay p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-byline {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-byline span {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: #888;
  font-weight: 500;
}

.hero-byline .dot {
  width: 3px;
  height: 3px;
  background: #666;
  border-radius: 50%;
  display: inline-block;
}

.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.read-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.read-btn i {
  font-size: 0.7rem;
}

/* HERO SIDEBAR */
.hero-side {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.hero-side-item {
  padding: 22px 24px;
  border-bottom: 1px solid var(--rule-light);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-side-item:last-child {
  border-bottom: none;
}

.hero-side-item:hover {
  background: var(--paper);
}

.hero-side-item .label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}

.hero-side-item h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}

.hero-side-item .meta {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: var(--ink-4);
  font-weight: 500;
}

.hero-side-thumb {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  margin-top: 12px;
  border-radius: 1px;
}

/* 3 COLUMN GRID */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 340px;
  gap: 32px;
  margin-top: 40px;
}

.col-span-2 {
  grid-column: 1/3;
}

/* GROUND REPORTS */
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.report-card {
  background: var(--white);
  border: 1px solid var(--rule-light);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.report-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.report-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.report-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.report-card:hover .report-card-img img {
  transform: scale(1.05);
}

.rc-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.play-over {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.play-over i {
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.report-body {
  padding: 18px 20px 20px;
}

.report-body h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}

.report-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.63rem;
  color: var(--ink-4);
  font-weight: 500;
  border-top: 1px solid var(--rule-light);
  padding-top: 10px;
  margin-top: 10px;
}

/* NEWS LIST */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-light);
  cursor: pointer;
  transition: opacity 0.2s;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item:hover {
  opacity: 0.75;
}

.news-item-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.news-item-text .cat {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

.news-item-text h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 4px;
}

.news-item-text .ts {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--ink-4);
  font-weight: 500;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--rule-light);
  padding: 22px 20px;
}

.sidebar-title {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 18px;
}

.breaking-box {
  background: var(--ink);
  padding: 24px 20px;
}

.breaking-box .sidebar-title {
  color: #888;
  border-bottom-color: #333;
}

.breaking-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2c2c2c;
}

.breaking-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.breaking-item .bl {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.breaking-item h4 {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: #e8e8e8;
  line-height: 1.3;
  margin-bottom: 6px;
}

.breaking-item span {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: #666;
  font-weight: 500;
}

.top-story {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
}

.top-story:first-of-type {
  padding-top: 0;
}

.top-story:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ts-thumb {
  width: 72px;
  height: 72px;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
}

.ts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-text .cat {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

.ts-text h4 {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.ts-text .tm {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: var(--ink-4);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* NEWSLETTER */
.newsletter {
  background: var(--ink);
  padding: 52px 40px;
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.nl-left {
  flex: 1;
}

.nl-left .eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.nl-left h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.nl-left p {
  font-family: var(--body);
  font-size: 0.9rem;
  color: #888;
  margin-top: 10px;
  font-weight: 300;
}

.nl-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 420px;
  min-width: 280px;
}

.nl-form input {
  flex: 1;
  background: #1e1e1e;
  border: 1px solid #333;
  border-right: none;
  color: #fff;
  padding: 13px 18px;
  font-family: var(--sans);
  font-size: 0.82rem;
  outline: none;
  border-radius: 2px 0 0 2px;
}

.nl-form input::placeholder {
  color: #555;
}

.nl-form input:focus {
  border-color: var(--red);
}

.nl-form button {
  background: var(--red);
  border: none;
  padding: 0 24px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
}

.nl-form button:hover {
  background: var(--red-dark);
}

/* BOTTOM SECTION */
.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.bc {
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.bc .section-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  display: block;
}

.bc-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-light);
}

.bc-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bc-item h5 {
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 4px;
}

.bc-item .cat {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}

.bc-item span {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: var(--ink-4);
}

/* FOOTER */
.footer {
  background: #080808;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e1e1e;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 40px 40px;
}

.footer-brand .fn {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand .fn span {
  color: var(--red);
}

.footer-brand p {
  font-family: var(--body);
  font-size: 0.85rem;
  color: #666;
  margin: 12px 0 20px;
  line-height: 1.6;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 2px;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1e1e;
}

.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: #777;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  background: #040404;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: #444;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

/* DIVIDER */
hr.rule {
  border: none;
  border-top: 1px solid var(--rule-light);
  margin: 32px 0;
}

/* AD STRIP */
.ad-strip {
  background: var(--white);
  border: 1px solid var(--rule-light);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0;
  gap: 12px;
}

.ad-strip span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}

.ad-strip .tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-3);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .content-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .col-span-2 {
    grid-column: 1/3;
  }

  .sidebar {
    grid-column: 1/3;
  }

  .bottom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-side {
    flex-direction: row;
    border-top: 1px solid var(--rule);
  }

  .hero-side-item {
    border-right: 1px solid var(--rule-light);
    border-bottom: none;
  }

  .hero-overlay h1 {
    font-size: 1.8rem;
  }

  .hero-main img {
    height: 380px;
  }

  .hero-side-thumb {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .masthead-top {
    padding: 12px 20px;
  }

  .masthead-center {
    display: none;
  }

  .support-pill {
    display: none;
  }

  .social-row {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-inner a:not(:first-child) {
    display: none;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .col-span-2 {
    grid-column: 1;
  }

  .sidebar {
    grid-column: 1;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    flex-direction: column;
  }

  .hero-side-item {
    border-right: none;
    border-bottom: 1px solid var(--rule-light);
  }

  .newsletter {
    padding: 36px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 36px;
  }

  .footer-bottom {
    padding: 16px 20px;
  }

  .logo-name {
    font-size: 1.5rem;
  }

  .search-wrap {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-overlay h1 {
    font-size: 1.5rem;
  }

  .hero-overlay {
    padding: 28px 20px 24px;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }
}
