/* ============================================================
   GLOBAL.CSS — Técnico Electrónica
   Variables, tipografía base, centering strategy y
   componentes compartidos por TODAS las plantillas.
   Los estilos de cada sección content-N van en su propio
   archivo (provincias.css, ciudades.css, etc.)
   ============================================================ */

/* ─── 1. VARIABLES ─────────────────────────────────────────── */
:root {

  /* ── Colores ─────────────────────────────────── */
  --color-primary:      #1E3A5F;
  --color-secondary:    #2F80ED;
  --color-success:      #27AE60;
  --color-accent:       #F2994A;

  --color-bg:           #FFFFFF;
  --color-bg-soft:      #F5F7FA;

  --color-text:         #1F2937;
  --color-text-light:   #6B7280;
  --color-border:       #E5E7EB;

  /* ── Tipografía — familias ───────────────────── */
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ── Tipografía — tamaños con clamp() ───────────
     clamp(mínimo, preferido, máximo)
     Escala entre ~320 px (móvil) y ~1200 px (escritorio)
  ─────────────────────────────────────────────── */
  --fs-h1:   clamp(1.75rem,  2.5vw + 1.25rem, 2.5rem);
  --fs-h2:   clamp(1.25rem,  1.5vw + 0.9rem,  1.75rem);
  --fs-h3:   clamp(1rem,     0.5vw + 0.875rem, 1.2rem);
  --fs-h4:   clamp(0.9rem,   0.3vw + 0.8rem,   1rem);

  --fs-base: clamp(0.9375rem, 0.2vw + 0.9rem,   1rem);
  --fs-lg:   clamp(1.0625rem, 0.5vw + 0.95rem,  1.2rem);
  --fs-sm:   clamp(0.875rem,  0.1vw + 0.85rem,  0.9375rem);
  --fs-xs:   clamp(0.75rem,   0.1vw + 0.73rem,  0.8125rem);

  /* ── Espaciado / Layout ──────────────────────── */
  --section-pad-y:  3rem;
  --container-max:  1100px;
  --container-text: 860px;
  --gap:            clamp(1rem, 5vw, 2rem);
  --radius:         8px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow-md:      0 4px 12px rgba(0,0,0,.10);
  --transition:     .2s ease;
}

/* ─── 2. TIPOGRAFÍA BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
  font-weight: 700;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* ─── 3. CENTERING STRATEGY ─────────────────────────────────────
   #primary es full-width (100%).
   Dentro de .entry-content hay dos tipos de hijos directos:

   A) Elementos bloque (h1, p, breadcrumbs, CTA div):
      → max-width + margin:auto + padding-inline

   B) Secciones <section class="content-N">:
      → El fondo ocupa el 100% del ancho (full-bleed)
      → padding-inline centra el texto a --container-max
────────────────────────────────────────────────────────────── */
.entry-content > h1,
.entry-content > p,
.entry-content > nav,
.entry-content > div {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gap);
}

.entry-content > section {
  padding-block:  var(--section-pad-y);
  padding-inline: max(
    var(--gap),
    calc((100% - var(--container-max)) / 2 + var(--gap))
  );
}

/* ─── 4. HEADINGS DE SECCIÓN ────────────────────────────────── */
.entry-content section h2 {
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-border);
}

.entry-content section h3 {
  color: var(--color-secondary);
  margin: 1.25rem 0 .5rem;
}

/* ─── 4b. KICKER SOBRE H2 (UNIFICADO) ─────────────────────── */
:is(.silo-provincias, .silo-ciudades, .silo-equipos, .silo-home, .silo-core)
  :is(.content-1, .content-2, .content-3, .content-4, .content-5, .content-6,
      .content-7, .content-8, .content-9, .content-10, .content-11, .content-12)
  h2::before {
  display: block;
  width: fit-content;
  background: rgba(39,174,96,.10);
  color: var(--color-success);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

:is(
  .silo-provincias .content-4,
  .silo-provincias .content-12,
  .silo-ciudades .content-6,
  .silo-equipos .content-6,
  .silo-home .content-7,
  .silo-core .content-5
) > h2::before {
  background: rgba(39,174,96,.22);
  color: #e9fff2;
}

/* ─── 5. LISTAS ─────────────────────────────────────────────── */
/* Reset base — las plantillas sobreescriben el ::before según
   el tono semántico de cada sección (✓ éxito, ! alerta, € ahorro…) */
.entry-content section ul {
  list-style: none;
  padding: 0;
  margin: .75rem 0 1rem;
}
.entry-content section ul li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: .45rem;
}
.entry-content section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}


/* ─── 6. ACENTO EN H1 ───────────────────────────────────────── */
.h1-accent { color: var(--color-secondary); }

/* ─── 7. PÁRRAFO INTRO DESTACADO (.parrafo-1) ───────────────── */
.entry-content .parrafo-1 {
  font-size: var(--fs-lg);
  line-height: 1.8;
  border-left: 4px solid var(--color-secondary);
  padding-block: 1rem;
  padding-inline: 1.25rem;
  background: var(--color-bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
}

/* ─── 7. FAQ ACCORDION ──────────────────────────────────────── */
.entry-content .faq-item {
  border-bottom: 1px solid var(--color-border);
}
.entry-content .faq-question {
  cursor: pointer;
  padding: .9rem 2.5rem .9rem 0;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  margin: 0;
  user-select: none;
}
.entry-content .faq-question::after {
  content: "+";
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-secondary);
  font-weight: 300;
  line-height: 1;
}
.entry-content .faq-item.open .faq-question::after { content: "−"; }
.entry-content .faq-answer {
  display: none;
  padding: .25rem 0 1rem;
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.entry-content .faq-item.open .faq-answer { display: block; }

/* ─── 8. TESTIMONIOS ────────────────────────────────────────── */
.testimonial-card {
  background: var(--color-bg-soft);
  border-left: 3px solid var(--color-success);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1rem;
}
.testimonial-card p {
  margin: 0;
  font-style: italic;
}
.testimonial-card .testimonial-author {
  margin-top: .5rem;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  font-style: normal;
  font-weight: 600;
}

/* ─── 9. CTA DE ENVÍO ───────────────────────────────────────── */
.cta-envio {
  background: var(--color-primary);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 3rem 0 2rem;
}
.cta-envio p {
  font-size: var(--fs-lg);
  margin: 0 0 1.25rem;
  color: #fff;
  line-height: 1.5;
}
.cta-envio .cta-sub {
  font-size: var(--fs-sm);
  opacity: .85;
  margin-bottom: 1.5rem;
}

/* ─── 10. BOTONES ───────────────────────────────────────────── */
.btn-cta,
.btn-cta:visited {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  font-size: var(--fs-base);
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  background: #e07b2a;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  font-weight: 600;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover {
  background: var(--color-secondary);
  color: #fff;
  text-decoration: none;
}

/* ─── 11. BREADCRUMBS ───────────────────────────────────────── */
.breadcrumbs-silo {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  padding: .5rem 0;
}
.breadcrumbs-silo a { color: var(--color-secondary); }
.breadcrumbs-silo .rank-math-breadcrumb p { margin: 0; }

/* ─── 12. OCULTAR PAGE-HEADER-IMAGE DE GP ───────────────────── */
:is(.silo-home, .silo-provincias, .silo-ciudades, .silo-equipos, .silo-core)
  .featured-image.page-header-image {
  display: none !important;
}

/* ─── 13. RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad-y: 2rem; }
  .cta-envio { padding: 1.75rem 1.25rem; }
}

/* ─── 14. FOOTER GLOBAL ─────────────────────────────────────── */
.footer-silo {
  background: var(--color-primary);
  color: rgba(255,255,255,.80);
  font-size: var(--fs-sm);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 3rem var(--gap) 2rem;
}

/* Col 1: Marca */
.footer-marca .footer-logo {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: .75rem;
}
.footer-marca p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.70);
}
/* Cols 2-4: Navegación */
.footer-nav h3 {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-nav ul li::before { display: none; }
.footer-nav a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.25rem var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  color: rgba(255,255,255,.50);
  font-size: var(--fs-xs);
}
.footer-bottom p { margin: 0; }
.footer-bottom-legal a {
  color: rgba(255,255,255,.50);
  text-decoration: none;
}
.footer-bottom-legal a:hover { color: rgba(255,255,255,.80); }

/* Responsivo footer */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-marca { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── 15. HEADER GLOBAL ─────────────────────────────────────── */
#masthead { display: none !important; }

.header-silo {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.header-silo.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border-bottom-color: transparent;
}
.header-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gap);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--color-primary);
}
.header-logo:hover { text-decoration: none; opacity: .88; }

/* Imagen de logo desde el customizador */
.header-logo-img {
  display: block;
  height: 44px;       /* alto fijo en escritorio */
  width: auto;        /* ancho proporcional */
  max-width: 200px;   /* límite para logos muy anchos */
  object-fit: contain;
}

/* Fallback texto */
.header-logo svg { color: var(--color-accent); flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--color-primary);
}
.logo-text strong { font-size: .95rem; font-weight: 700; }
.logo-text span    { font-size: .72rem; opacity: .75; }

@media (max-width: 768px) {
  .header-logo-img {
    height: 36px;     /* algo más pequeño en móvil */
    max-width: 160px;
  }
}

/* Nav container */
.header-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-list > li::before { display: none; }

/* Nav links */
.nav-link {
  display: block;
  padding: .45rem .6rem;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--color-bg-soft); color: var(--color-secondary); text-decoration: none; }

/* Dropdown button */
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .45rem .6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: 4px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-btn:hover { background: var(--color-bg-soft); color: var(--color-secondary); }

/* Chevron icon */
.nav-chevron { flex-shrink: 0; transition: transform .2s ease; }
.nav-has-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: .4rem 0;
  z-index: 10;
  list-style: none;
  margin: 0;
}
.nav-has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown li { padding: 0; margin: 0; }
.nav-dropdown li::before { display: none; }
.nav-dropdown a {
  display: block;
  padding: .5rem 1rem;
  color: var(--color-text);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.nav-dropdown a:hover { background: var(--color-bg-soft); color: var(--color-secondary); text-decoration: none; }

/* CTA en nav */
.nav-cta { margin-left: .5rem; }
.btn-header-cta { padding: .5rem 1.1rem !important; font-size: var(--fs-sm) !important; }

/* Burger */
.header-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.header-burger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.header-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Responsivo header ──────────────────────────────── */
@media (max-width: 960px) {
  .nav-link, .nav-dropdown-btn { padding: .4rem .4rem; font-size: .8rem; }
  .nav-cta { margin-left: .25rem; }
}
@media (max-width: 768px) {
  .header-inner { height: 56px; position: relative; }
  .header-burger { display: flex; }
  .header-nav {
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    display: none;
    z-index: 999;
    justify-content: flex-start;
  }
  .header-nav.nav-open { display: flex; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: .5rem 0 1rem;
  }
  .nav-link, .nav-dropdown-btn {
    width: 100%;
    padding: .75rem var(--gap);
    border-radius: 0;
    font-size: var(--fs-base);
    justify-content: space-between;
  }
  .nav-has-dropdown { position: static; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    min-width: unset;
    padding: 0;
  }
  .nav-dropdown a { padding: .65rem var(--gap) .65rem calc(var(--gap) + 1rem); }
  .nav-cta { padding: .75rem var(--gap) .5rem; margin-left: 0; }
  .btn-header-cta { display: block !important; text-align: center; }
}

/* ─── 16. POPUP CONTACTO ─────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.popup-overlay[hidden] { display: none; }
body.popup-open { overflow: hidden; }

.popup-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}
.popup-close {
  position: absolute;
  top: .8rem; right: .8rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-text-light);
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s, color .15s;
}
.popup-close:hover { background: var(--color-bg-soft); color: var(--color-primary); }

.popup-header { margin-bottom: 1.5rem; padding-right: 1.5rem; }
.popup-header h2 {
  font-size: var(--fs-h3);
  margin: 0 0 .4rem;
  padding: 0;
  border: none;
  color: var(--color-primary);
}
.popup-header p { font-size: var(--fs-sm); color: var(--color-text-light); margin: 0; }

.popup-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .3rem; }
.form-row label { font-size: var(--fs-sm); font-weight: 600; color: var(--color-primary); }
.form-row label span { color: var(--color-accent); }
.form-row input,
.form-row select,
.form-row textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: .6rem .75rem;
  font-size: var(--fs-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(47,128,237,.12);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.popup-submit { margin-top: .25rem; width: 100%; justify-content: center; }
.popup-submit:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }
.popup-privacy {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  text-align: center;
  margin: 0;
}
.popup-privacy a { color: var(--color-secondary); }
.form-error {
  background: #fff0f0;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  color: #b91c1c;
  padding: .5rem .75rem;
  font-size: var(--fs-sm);
  margin: 0;
}
.popup-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.popup-success svg { color: var(--color-success); display: block; margin: 0 auto 1rem; }
.popup-success h3 { color: var(--color-primary); margin-bottom: .5rem; }
.popup-success p { color: var(--color-text-light); margin: 0; }

@media (max-width: 480px) {
  .popup-box { padding: 1.5rem 1.25rem; }
}
/* ─────────────────────────────────────────────
   PÁGINAS LEGALES — aviso legal, cookies
   page-id-1922, page-id-1926, page-id-1928
   ───────────────────────────────────────────── */

.page-id-1922 .site-content,
.page-id-1926 .site-content,
.page-id-1928 .site-content {
    background: #f9fafb;
}

.page-id-1922 .content-area,
.page-id-1926 .content-area,
.page-id-1928 .content-area {
    max-width: 860px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.page-id-1922 h1,
.page-id-1926 h1,
.page-id-1928 h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text, #1a1a2e);
    line-height: 1.2;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary, #2563eb);
}

.page-id-1922 h2,
.page-id-1926 h2,
.page-id-1928 h2 {
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--color-text, #1a1a2e);
    margin: 2.5rem 0 .75rem;
    padding-left: .75rem;
    border-left: 4px solid var(--color-primary, #2563eb);
    line-height: 1.3;
}

.page-id-1922 h3,
.page-id-1926 h3,
.page-id-1928 h3 {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 600;
    color: #374151;
    margin: 1.75rem 0 .5rem;
}

.page-id-1922 p,
.page-id-1926 p,
.page-id-1928 p {
    font-size: var(--fs-base, 1rem);
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 1.1rem;
}

.page-id-1922 ul,
.page-id-1922 ol,
.page-id-1926 ul,
.page-id-1926 ol,
.page-id-1928 ul,
.page-id-1928 ol {
    padding-left: 1.5rem;
    margin: .5rem 0 1.25rem;
}

.page-id-1922 li,
.page-id-1926 li,
.page-id-1928 li {
    font-size: var(--fs-base, 1rem);
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: .35rem;
}

.page-id-1926 table,
.page-id-1928 table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: var(--fs-sm, .875rem);
    overflow-x: auto;
    display: block;
}

.page-id-1926 thead th,
.page-id-1928 thead th {
    background: var(--color-primary, #2563eb);
    color: #fff;
    font-weight: 600;
    padding: .6rem 1rem;
    text-align: left;
    white-space: nowrap;
}

.page-id-1926 tbody tr:nth-child(even),
.page-id-1928 tbody tr:nth-child(even) {
    background: #f1f5f9;
}

.page-id-1926 td,
.page-id-1928 td {
    padding: .5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4b5563;
    vertical-align: top;
}

.page-id-1922 a,
.page-id-1926 a,
.page-id-1928 a {
    color: var(--color-primary, #2563eb);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-id-1922 a:hover,
.page-id-1926 a:hover,
.page-id-1928 a:hover {
    color: var(--color-primary-dark, #1d4ed8);
}

.page-id-1922 strong,
.page-id-1926 strong,
.page-id-1928 strong {
    color: #1a1a2e;
    font-weight: 600;
}

.page-id-1922 hr,
.page-id-1926 hr,
.page-id-1928 hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .page-id-1922 .content-area,
    .page-id-1926 .content-area,
    .page-id-1928 .content-area {
        padding: 1.5rem 1rem 3rem;
    }

    .page-id-1926 table,
    .page-id-1928 table {
        font-size: .8rem;
    }

    .page-id-1926 thead th,
    .page-id-1928 thead th {
        padding: .5rem .75rem;
    }

    .page-id-1926 td,
    .page-id-1928 td {
        padding: .4rem .75rem;
    }
}