/**
 * ═══════════════════════════════════════════════════════════
 * BLACK BIRD — Shared Interior Page Layout
 * Applies to: /blog/, /servicios/, /contacto/
 * ═══════════════════════════════════════════════════════════
 */

/* ─── PAGE BACKGROUND (Grey 30%) ─────────────────────────── */
body {
  background-color: #e0e0e0;
}

/* ─── MAIN PADDING (below sticky nav) ────────────────────── */
main {
  padding-top: 100px;
  padding-bottom: 120px;
  min-height: 80vh;
}

/* ─── SECTION HEADER OVERRIDES ───────────────────────────── */
/* Override sections.css defaults for interior page scale */
.section-header__eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-family: var(--bb-font-mono);
}

.section-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  max-width: none;
  line-height: 1;
  color: #000;
}

.section-header__description {
  font-size: 1.125rem;
  color: #666;
  max-width: 640px;
  line-height: 1.65;
}

/* ─── PAGE CONTAINER ──────────────────────────────────────── */
.page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--bb-space-8);
}

/* ─── SHARED FOOTER OVERRIDES DELETED (Moved to footer.css) ───────── */

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  main {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-container {
    padding: 0 var(--bb-space-6);
  }

  .section-header__title {
    font-size: 2rem;
  }

}
