/* ════════════════════════════════
   Section 1 — Hero (World) — full-bleed cover
   ════════════════════════════════ */
.s-hero {
  position: relative;
  background: #000;
  margin-bottom: 10px;
}
.hero-link {
  display: block;
  position: relative;
}
.hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: .8;
}
.hero-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 64px 18px 24px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.96));
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red);
}
.hero-ttl {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  margin-top: 9px;
}
.hero-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,.62);
  margin-top: 9px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-read {
  display: inline-block;
  margin-top: 15px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 6px 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ════════════════════════════════
   Section 2 — Politics — feature + ranked ticker
   ════════════════════════════════ */
.s-politics {
  background: var(--white);
  margin-bottom: 10px;
  padding-bottom: 6px;
}
.pol-feature {
  position: relative;
  margin: 0 16px 4px;
  border-radius: var(--r);
  overflow: hidden;
}
.pol-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.pol-feature-ov {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.92), transparent);
}
.pol-feature-ttl {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.28;
}
.pol-ticker {
  list-style: none;
  padding: 4px 16px 0;
}
.pol-ticker li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.pol-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  flex: 0 0 20px;
}
.pol-ticker a {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.42;
  color: var(--dark);
}

/* ════════════════════════════════
   Section 3 — Sports — feature banner + 3-col grid
   ════════════════════════════════ */
.s-sports {
  background: var(--white);
  margin-bottom: 10px;
}
.sports-feature {
  position: relative;
  margin: 0 16px 10px;
  border-radius: var(--r);
  overflow: hidden;
}
.sports-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.sports-feature-ov {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
}
.sports-feature-ttl {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 16px;
}
.sports-grid-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}
.sports-grid-item p {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.32;
  margin-top: 6px;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════
   Section 4 — Business — editorial numbered briefing list
   ════════════════════════════════ */
.s-business {
  background: var(--white);
  margin-bottom: 10px;
}
.biz-list {
  padding: 0 16px 4px;
}
.biz-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.biz-item:first-child { border-top: none; }
.biz-index {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--border);
  flex: 0 0 32px;
  line-height: 1;
}
.biz-body { flex: 1; min-width: 0; }
.biz-ttl {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}
.biz-sub {
  font-size: 12px;
  color: var(--mid);
  margin-top: 6px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════
   Section 5 — Health — horizontal scroll, accent-rail cards
   ════════════════════════════════ */
.s-health {
  background: var(--white);
  margin-bottom: 10px;
}
.health-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 16px 18px;
  scrollbar-width: none;
}
.health-scroll::-webkit-scrollbar { display: none; }
.health-card {
  flex: 0 0 190px;
  border-left: 3px solid var(--c-health);
  background: var(--light);
  border-radius: 0 var(--r) var(--r) 0;
  overflow: hidden;
}
.health-card img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}
.health-card-body { padding: 10px 12px 13px; }
.health-pill {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--c-health);
}
.health-ttl {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.36;
  margin-top: 7px;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ════════════════════════════════
   Section 6 — Science — vertical timeline rail
   ════════════════════════════════ */
.s-science {
  background: var(--white);
  margin-bottom: 10px;
  padding-bottom: 6px;
}
.sci-timeline {
  position: relative;
  margin: 6px 16px 0 28px;
}
.sci-timeline::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 5px;
  bottom: 14px;
  width: 1px;
  background: var(--border);
}
.sci-item {
  position: relative;
  padding-bottom: 20px;
}
.sci-item:last-child { padding-bottom: 0; }
.sci-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-science);
  box-shadow: 0 0 0 3px var(--white);
}
.sci-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--c-science);
}
.sci-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 6px;
}
.sci-ttl {
  flex: 1;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}
.sci-thumb {
  flex: 0 0 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 6px;
}

/* ════════════════════════════════
   Section 7 — Style — full-bleed image mosaic
   ════════════════════════════════ */
.s-style {
  background: var(--white);
  margin-bottom: 10px;
}
.style-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.style-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.style-tile:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}
.style-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.style-tile-ov {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
}
.style-tile-ttl {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.32;
}
