/* Module: Section headings */
.st-section-header {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 0 var(--space-xl);
  padding-left: 1rem;
  text-align: left;
}

.st-section-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c08a54 0%, #6b7c5f 100%);
}

.st-section-header__title {
  margin: 0;
  color: var(--st-card-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.st-section-header__subtitle {
  max-width: none;
  margin: var(--space-lg) 0 0;
  color: var(--st-card-muted);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.7;
}

@media (max-width: 781px) {
  .st-section-header {
    padding-left: 0.9rem;
  }
}
