/* ═══════════════════════════════════════════
   sections-common.css — Common Section Styles
   ═══════════════════════════════════════════ */

section {
  padding: var(--section-py) 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.section-badge::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: var(--weight-extrabold);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: var(--max-text);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
}