/* Shared layout primitives: container, sections, kickers, headings. */
.gu-container {
  max-width: var(--gu-container);
  margin: 0 auto;
  padding-inline: var(--gu-gutter);
}

.gu-section {
  padding-block: var(--gu-section-pad);
}

.gu-section--alt {
  background: var(--gu-bg-alt);
  border-top: 1px solid var(--gu-border);
  border-bottom: 1px solid var(--gu-border);
}

.gu-kicker {
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gu-accent);
  margin-bottom: 14px;
}

.gu-heading {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 0;
}

.gu-heading--spaced {
  margin-bottom: 54px;
}

.gu-lead {
  font-family: var(--gu-font-serif);
  color: var(--gu-text-soft);
  line-height: 1.75;
}

.gu-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

@media (max-width: 767.98px) {
  :root {
    --gu-section-pad: 64px;
  }
}
