/* ==========================================================================
   Responsive Variables
   Conectivo Child Theme
   --------------------------------------------------------------------------
   Override CSS custom properties at each breakpoint.
   Bricks Builder breakpoints (default):
     xl  — 1280px and up  (base / desktop-first default)
     lg  — max-width: 1279px
     md  — max-width: 1023px  (tablet landscape)
     sm  — max-width: 767px   (tablet portrait)
     xs  — max-width: 479px   (mobile)
   ========================================================================== */

:root {
  --text-large: 2.6rem;
  --text-medium: 1.8rem;
}

/* ── Medium / Tablet landscape (≤ 1023px) ────────────────────────────── */
@media (max-width: 991px) {
  :root {
    --text-large: 2.4rem;
  }
}

/* ── Small / Tablet portrait (≤ 767px) ───────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --text-large: 2.2rem;
    --text-medium: 1.6rem;
  }
}

/* ── Extra small / Mobile (≤ 479px) ──────────────────────────────────── */
@media (max-width: 478px) {
  :root {
    --text-large: 2rem;
  }
}
