/* ── MAIN CONTENT ──────────────────────────────────────── */

.content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 24px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--red);
}

/* ── DIVIDER ────────────────────────────────────────────── */

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0 0 100px 0;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: var(--red-dim);
}
