/* layout.css — container, section spacing, grids */

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-head{
  text-align: center;
  margin-bottom: 28px;
}
.section-head__title{
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.section-head__subtitle{
  margin: 0 auto;
  max-width: 740px;
  color: var(--muted);
}

/* ✅ Badge Editorial (Unificado y limpio) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
}

/* Detalle visual: línea fina que precede al texto */
.badge::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  border-radius: 999px;
}

@media (min-width: 900px){
  .section-head{ text-align: left; }
}
