/* ═══ SHARED SECTION HEADER ═══ */

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  align-self: center;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--base-color-neutral--black);
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--base-color-neutral--neutral-light);
  padding: 6px 16px;
  border-radius: var(--border-radius--round);
}

@media (min-width: 1024px) {
  .section-tag {
    align-self: center;
  }
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title-l1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--base-color-neutral--black);
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-title-l1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--base-color-brand--beige-800);
}

.section-title-l2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-style: italic;
  font-weight: 400;
  color: var(--base-color-brand--beige-600);
}

.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--base-color-neutral--black);
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0;
}
