/**
 * Senvivah public section title rhythm
 * Canonical stack: kalash (16px) → title (16px) → subtitle → content (48px)
 * Section vertical padding: ~64px (4rem)
 */
.sv-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .sv-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

.sv-section-header {
  text-align: center;
  margin-bottom: 3rem; /* 48px — header to content */
}

.sv-section-kalash {
  display: block;
  height: 4rem; /* 64px */
  width: auto;
  margin: 0 auto 1rem; /* 16px below kalash */
}

.sv-section-title {
  font-size: 2.25rem; /* text-4xl */
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 1rem; /* 16px below title */
}

@media (max-width: 640px) {
  .sv-section-title {
    font-size: 1.75rem;
  }
}

.sv-section-subtitle {
  margin: 0 auto;
  max-width: 42rem;
  color: #4b5563;
  line-height: 1.625;
}

/* Kill accidental double gap when grid/content adds mt-12 after header */
.sv-section-header + .grid,
.sv-section-header + .sv-section-body,
.sv-section-header + form,
.sv-section-header + div.grid {
  margin-top: 0;
}
