/* -------------------------------------------------------- */
/* 🔹 Section Title                                         */
/* -------------------------------------------------------- */
/* Centered primary-colored heading for page sections       */

.section-title {
  font-size: 36px;
  font-weight: var(--text-title-weight);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-l);
}


/* -------------------------------------------------------- */
/* 🔹 Section Subtitle                                      */
/* -------------------------------------------------------- */
/* Optional line under a .section-title                     */

.section-title:has(+ .section-subtitle) {
  margin-bottom: var(--space-s);
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto var(--space-l);
  text-align: center;
  font-size: var(--text-body-large);
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  text-wrap: balance;
}
