/* Shared section framing and editorial headings. */

.section {
  position: relative;
  scroll-margin-top: var(--topbar-offset);
  padding: 92px 24px;
  border-bottom: var(--line);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 10px;
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius-pill);
  font: 900 12px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--signal-red);
  border-radius: 50%;
}

.section-title {
  max-width: 860px;
  margin: 0;
  font: 900 72px/0.88 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
