.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.container--narrow {
  max-width: 880px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding: var(--sp-16) 0;
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 64px));
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 10%, var(--color-border) 90%, transparent 100%);
  opacity: 0.85;
}

.section:last-of-type::after {
  display: none;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-10);
  max-width: 700px;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #0284C7;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  margin-top: var(--sp-3);
  line-height: 1.75;
  font-weight: 400;
}
