/* =========================================
   DRD – Layout / Sections / Utilities
   ========================================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 3.5rem 0;
  background: transparent;
}
.section--tight {
  padding: 2.75rem 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.section-header--center {
  align-items: center;
}
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.section-title {
  margin: 0;
  font-size: 1.8rem;
  color: var(--color-navy);
}
.section-subtitle {
  margin: 0;
  font-size: 0.94rem;
  color: var(--color-muted);
  max-width: 420px;
}
/* Utilities */
.text-muted {
  color: var(--color-muted);
}
.text-small {
  font-size: 0.85rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.text-center {
  text-align: center;
}
/* Reusable button row for horizontal CTAs */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.button-row.center {
  justify-content: center;
}
/* Grid helpers */
.grid {
  display: grid;
  gap: 1.8rem;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
