﻿.section-page {
  padding: 28px 0 16px;
}

.section-hero,
.section-lead-grid,
.section-body-grid {
  display: grid;
  gap: 18px;
}

.section-hero {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 20px;
}

.section-copy,
.section-stats,
.section-feature,
.section-card,
.section-sidebar-box,
.feed-row,
.list-toolbar,
.story-card {
  background: var(--surface);
  border: 1px solid rgba(38, 49, 65, 0.08);
  box-shadow: var(--shadow);
}

.section-copy,
.section-stats,
.section-card,
.section-sidebar-box,
.feed-row,
.list-toolbar {
  padding: 22px;
}

.section-copy h1,
.section-feature-copy h2,
.section-heading-line h2,
.feed-row h3,
.section-card h3,
.toolbar-title h2,
.story-copy h3 {
  font-family: "Space Grotesk", sans-serif;
}

.section-copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-copy p,
.section-card p,
.feed-row p,
.section-sidebar-box li,
.toolbar-title p,
.story-copy p,
.story-meta {
  color: var(--muted);
}

.section-stats {
  display: grid;
  gap: 12px;
  align-content: start;
}

.section-stats div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(38, 49, 65, 0.08);
}

.section-stats span {
  color: var(--muted);
}

.section-lead-grid {
  grid-template-columns: 1.3fr 0.8fr;
}

.section-feature img {
  height: 360px;
  object-fit: cover;
}

.section-feature-copy {
  padding: 22px;
}

.section-feature-copy h2 {
  margin: 12px 0 10px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.section-cards {
  display: grid;
  gap: 12px;
}

.mini-tag {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(38, 49, 65, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-card h3 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.section-body-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 18px;
}

.section-feed {
  display: grid;
  gap: 12px;
}

.section-heading-line {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 22, 18, 0.08);
}

.section-heading-line h2 {
  margin: 0;
  font-size: 1.15rem;
}

.feed-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
}

.feed-index {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  color: var(--muted);
}

.feed-row h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.section-sidebar-box ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.section-sidebar-box li + li {
  margin-top: 8px;
}

.section-list-block {
  margin-top: 24px;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.toolbar-title h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.toolbar-title p {
  margin: 0;
}

.toolbar-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  color: var(--muted);
}

.filter-chip.active {
  color: var(--text);
  background: rgba(38, 49, 65, 0.08);
}

.section-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.story-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

.story-card img {
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.story-copy {
  padding: 18px;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

.story-copy h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.story-copy p {
  margin: 0;
}

@media (max-width: 980px) {
  .section-hero,
  .section-lead-grid,
  .section-body-grid,
  .section-list-grid,
  .story-card {
    grid-template-columns: 1fr;
  }

  .list-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
