/* ============================================================
   Vandelay Companies — Section head (h2 patterns)
   Active only inside .vc-design-context.
   ============================================================ */

.vc-design-context .vc-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--vc-space-3);
  margin: var(--vc-space-8) 0 var(--vc-space-4);
  padding-bottom: var(--vc-space-2);
  border-bottom: 1px solid var(--vc-rule);
  font-family: var(--vc-sans);
}

.vc-design-context .vc-section-head__title {
  font-family: var(--vc-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--vc-ink);
  margin: 0;
}

.vc-design-context .vc-section-head__meta {
  font-family: var(--vc-mono);
  font-size: 11px;
  color: var(--vc-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vc-design-context .vc-section-head__link {
  font-family: var(--vc-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--vc-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vc-design-context .vc-section-head__link:hover { text-decoration: underline; }

/* No bottom rule variant (when a card or panel follows immediately) */
.vc-design-context .vc-section-head--bare {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: var(--vc-space-3);
}
