/* ================================================================
   LAYOUT GLOBAL — ax-layout.css
   Header · Footer · Single Post (blog)

   Variables definidas aquí para que el CSS sea autónomo,
   incluso si style.css no carga o Elementor lo sobreescribe.
================================================================ */

:root {
    --ax-bg:          #f5f7fb;
    --ax-card:        #ffffff;
    --ax-text:        #172033;
    --ax-muted:       #657087;
    --ax-border:      #e4e8f0;
    --ax-primary:     #ff8a1c;
    --ax-primary-dark:#e87405;
    --ax-blue:        #0b3a67;
    --ax-soft-blue:   #eef6ff;
    --ax-green:       #16a765;
    --ax-radius:      22px;
    --ax-shadow:      0 14px 40px rgba(15,35,70,.08);
    --ax-shadow-soft: 0 8px 24px rgba(15,35,70,.06);
    --ax-header-h:    72px;
}

/* ================================================================
   LAYOUT GLOBAL — ax-layout.css
   Header · Footer · Single Post (blog)
   
   Sistema de diseño base (de style.css / single-servicio):
     --ax-bg:       #f5f7fb
     --ax-card:     #ffffff
     --ax-text:     #172033
     --ax-muted:    #657087
     --ax-border:   #e4e8f0
     --ax-primary:  #ff8a1c   (naranja)
     --ax-blue:     #0b3a67   (azul marino)
     --ax-soft-blue:#eef6ff
     --ax-green:    #16a765
     --ax-radius:   22px
     Font: Inter, system-ui, sans-serif
   ================================================================ */


/* ════════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════════ */

.ax-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 18px 0;
    transition: padding .26s ease;
}
/* Al hacer scroll: el módulo se pega más arriba y se encoge */
.ax-header.is-scrolled {
    padding: 8px 0;
}

.ax-header-inner {
    max-width: 1140px;
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
    /* Módulo flotante destacado */
    background: rgba(16,24,43,.92);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 0 14px 0 26px;
    box-shadow: 0 10px 40px rgba(15,35,70,.18), inset 0 1px 0 rgba(255,255,255,.06);
    transition: height .26s ease, border-radius .26s ease, box-shadow .26s ease, background .26s ease;
}
.ax-header.is-scrolled .ax-header-inner {
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15,35,70,.24);
    background: rgba(16,24,43,.96);
}

/* ── Logo ── */
.ax-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -.07em;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
    font-family: Inter, system-ui, sans-serif;
}
.ax-logo span { color: var(--ax-primary); }
.ax-logo--white { color: rgba(255,255,255,.9); }
.ax-logo--white span { color: var(--ax-primary); }

/* ── Menú desktop ── */
.ax-nav { flex: 1; display: flex; justify-content: flex-end; }

.ax-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}

.ax-nav-list > li {
    position: relative;
}

.ax-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    white-space: nowrap;
    transition: background .14s, color .14s;
    letter-spacing: -.01em;
}
.ax-nav-list > li > a:hover,
.ax-nav-list > li.current-menu-item > a,
.ax-nav-list > li.current-menu-ancestor > a {
    background: rgba(255,255,255,.12);
    color: #fff;
}

/* Submenú dropdown */
.ax-nav-list .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--ax-border);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(15,35,70,.12);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 200;
}
.ax-nav-list li:hover > .sub-menu,
.ax-nav-list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ax-nav-list .sub-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ax-text);
    text-decoration: none;
    transition: background .12s;
}
.ax-nav-list .sub-menu a:hover { background: var(--ax-soft-blue); color: var(--ax-blue); }

/* ── CTA + Hamburger ── */
.ax-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.ax-header-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 12px;
    background: var(--ax-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background .14s;
    letter-spacing: -.01em;
}
.ax-header-cta:hover { background: var(--ax-primary-dark); }

.ax-header-mineg {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 12px;
    background: var(--ax-soft-blue);
    color: var(--ax-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background .14s;
    letter-spacing: -.01em;
}
.ax-header-mineg:hover { background: #e0edff; }

/* Hamburger */
.ax-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: 1px solid var(--ax-border);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .14s;
}
.ax-hamburger:hover { border-color: var(--ax-blue); }
.ax-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
    transform-origin: center;
}
.ax-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ax-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ax-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menú móvil ── */
.ax-mobile-menu {
    display: none;
    position: fixed;
    top: var(--ax-header-h, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 20px 20px 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    border-top: 1px solid var(--ax-border);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform .26s ease, opacity .2s ease, visibility .26s;
}
.ax-mobile-menu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.ax-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}
.ax-mobile-list li { margin: 0; }
.ax-mobile-list a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ax-text);
    text-decoration: none;
    transition: background .12s;
    letter-spacing: -.015em;
}
.ax-mobile-list a:active,
.ax-mobile-list a:hover,
.ax-mobile-list .current-menu-item > a { background: var(--ax-soft-blue); color: var(--ax-blue); }

.ax-mobile-list .sub-menu {
    list-style: none;
    margin: 4px 0 0 16px;
    padding: 0;
    display: grid;
    gap: 2px;
}
.ax-mobile-list .sub-menu a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ax-muted);
    padding: 10px 14px;
}

.ax-mobile-cta {
    display: block;
    margin-top: 16px;
    padding: 15px 20px;
    border-radius: 14px;
    background: var(--ax-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
}

/* Body scroll lock cuando menú abierto */
body.ax-menu-open { overflow: hidden; }


/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */

.ax-footer {
    background: var(--ax-blue);
    color: rgba(255,255,255,.85);
    padding: 64px 0 0;
    margin-top: 80px;
    font-family: Inter, system-ui, sans-serif;
}

.ax-footer-inner {
    max-width: 1280px;
    width: calc(100% - 40px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Columna marca */
.ax-footer-brand { display: grid; gap: 16px; align-content: start; }

.ax-footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.ax-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.ax-footer-legal a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .14s;
}
.ax-footer-legal a:hover { color: rgba(255,255,255,.85); }

/* Columnas de links */
.ax-footer-col { display: grid; gap: 14px; align-content: start; }

.ax-footer-col h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.45);
    margin: 0;
}

.ax-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.ax-footer-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .14s;
    line-height: 1.4;
}
.ax-footer-links a:hover { color: #fff; }

/* Footer widget genérico — hereda estilos de ax-footer-col */
.ax-footer-widget { display: grid; gap: 8px; align-content: start; }
.ax-footer-widget h3 {
    font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,.45); margin: 0 0 6px;
}
.ax-footer-widget ul {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 8px;
}
.ax-footer-widget ul a {
    font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,.75); text-decoration: none; transition: color .14s; line-height: 1.4;
}
.ax-footer-widget ul a:hover { color: #fff; }

/* Social links */
.ax-footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ax-footer-social-link {
    font-size: 12px; font-weight: 700; padding: 5px 12px;
    border-radius: 8px; border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6); transition: .14s; text-decoration: none;
}
.ax-footer-social-link:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }

.ax-footer-copy {
    margin-top: 8px;
}
.ax-footer-copy p {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   SINGLE POST (blog)
   Prefijo: axs-  (alicantexplora single)
   Usa el sistema de variables de style.css
════════════════════════════════════════════════════════════════ */

.axs-post {
    background: var(--ax-bg);
    color: var(--ax-text);
    font-family: Inter, system-ui, sans-serif;
    padding-bottom: 80px;
}
.axs-post * { box-sizing: border-box; }
.axs-post a { text-decoration: none; color: inherit; }

/* ── Wrap central ── */
.axs-wrap {
    max-width: 1260px;
    width: calc(100% - 32px);
    margin: 0 auto;
}

/* ════════════════════
   HERO
════════════════════ */
.axs-hero { padding: 26px 0; }

.axs-hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg,#0b3a67,#101828) center/cover;
    box-shadow: var(--ax-shadow);
}

/* Capa overlay para oscurecer imagen */
.axs-hero-shell::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,18,35,.05) 0%, rgba(10,18,35,.88) 100%);
    z-index: 1;
}

.axs-hero-shell .axs-wrap {
    position: relative; z-index: 2;
    padding: 54px 0;
    color: #fff;
    max-width: 1260px;
}

.axs-breadcrumb {
    display: flex; gap: 8px; flex-wrap: wrap;
    font-size: 13px; font-weight: 800;
    opacity: .9; margin-bottom: 18px;
}
.axs-breadcrumb a { color: rgba(255,255,255,.85); transition: color .14s; }
.axs-breadcrumb a:hover { color: #fff; }
.axs-breadcrumb span { opacity: .5; }
.axs-breadcrumb [aria-current] { opacity: .7; }

.axs-kicker {
    display: inline-flex;
    padding: 9px 14px; border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    font-size: 12px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 22px; color: rgba(255,255,255,.9);
}

.axs-title {
    font-size: clamp(40px, 6.5vw, 80px);
    font-weight: 900; line-height: .92;
    letter-spacing: -.07em; color: #fff;
    margin: 0; max-width: 1000px;
}

.axs-subtitle {
    margin-top: 22px;
    max-width: 780px;
    font-size: 20px; line-height: 1.5;
    color: rgba(231,237,248,.9);
}

.axs-meta {
    margin-top: 32px;
    display: flex; flex-wrap: wrap; gap: 12px;
}

.axs-meta-chip {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px; border-radius: 22px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}
.axs-meta-chip small { display: block; font-size: 12px; opacity: .75; }
.axs-meta-chip strong { display: block; font-size: 15px; margin-top: 2px; }

.axs-meta-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--ax-soft-blue) center/cover;
    flex-shrink: 0;
}

/* ════════════════════
   LAYOUT 2 COLUMNAS
════════════════════ */
.axs-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 340px;
    gap: 28px;
    align-items: start;
    padding-top: 42px;
}

.axs-main { display: grid; gap: 24px; }

/* ════════════════════
   CARDS
════════════════════ */
.axs-card {
    background: var(--ax-card);
    border: 1px solid var(--ax-border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--ax-shadow-soft);
}
.axs-card-h2 {
    font-size: 36px; font-weight: 900;
    letter-spacing: -.05em; line-height: 1;
    color: var(--ax-text); margin: 0 0 20px;
}

/* Card oscura (EEAT) */
.axs-card--dark {
    background: var(--ax-blue);
    border-color: transparent;
    color: #fff;
}
.axs-card--dark .axs-card-h2 { color: #fff; }
.axs-card--dark p { color: rgba(212,219,234,.85); }
.axs-card--dark strong { color: #fff; }

/* Card de enlaces internos */
.axs-card--links { background: var(--ax-soft-blue); }

/* ════════════════════
   PROSE
════════════════════ */
.axs-prose {
    font-size: 17px;
    line-height: 1.75;
    color: #2d3748;
}
.axs-prose h2 {
    font-size: 36px; font-weight: 900;
    letter-spacing: -.05em; line-height: 1;
    color: var(--ax-text); margin: 40px 0 16px;
    padding-top: 8px;
}
.axs-prose h3 {
    font-size: 26px; font-weight: 800;
    letter-spacing: -.04em; color: var(--ax-text);
    margin: 30px 0 12px;
}
.axs-prose h4 {
    font-size: 19px; font-weight: 700;
    color: var(--ax-text); margin: 22px 0 8px;
}
.axs-prose p { margin: 0 0 20px; }
.axs-prose p:last-child { margin-bottom: 0; }
.axs-prose a {
    color: var(--ax-blue);
    text-decoration: underline;
    text-decoration-color: rgba(11,58,103,.25);
    font-weight: 600;
}
.axs-prose a:hover { text-decoration-color: var(--ax-blue); }
.axs-prose strong { color: var(--ax-text); }
.axs-prose em { color: var(--ax-muted); font-style: italic; }
.axs-prose ul, .axs-prose ol {
    padding-left: 24px; margin: 0 0 20px;
    display: grid; gap: 8px;
}
.axs-prose li { line-height: 1.65; }
.axs-prose blockquote {
    margin: 28px 0;
    padding: 20px 26px;
    background: var(--ax-soft-blue);
    border-left: 4px solid var(--ax-blue);
    border-radius: 0 16px 16px 0;
    font-size: 20px; font-style: italic;
    color: var(--ax-blue); line-height: 1.5;
}
.axs-prose img {
    width: 100%; border-radius: 24px;
    margin: 14px 0 20px; display: block;
    box-shadow: var(--ax-shadow-soft);
}
.axs-prose figure { margin: 0 0 20px; }
.axs-prose figcaption {
    font-size: 13px; color: var(--ax-muted);
    text-align: center; margin-top: 8px;
}
.axs-prose table {
    width: 100%; border-collapse: collapse;
    margin: 20px 0; font-size: 15px;
    border-radius: 16px; overflow: hidden;
}
.axs-prose th {
    background: var(--ax-blue); color: #fff;
    padding: 12px 16px; text-align: left;
    font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: .04em;
}
.axs-prose td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--ax-border);
}
.axs-prose tr:nth-child(even) td { background: var(--ax-soft-blue); }
.axs-prose hr {
    border: none;
    border-top: 2px solid var(--ax-border);
    margin: 32px 0;
}

/* ── Tags ── */
.axs-tags {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px; padding-top: 20px; margin-top: 20px;
    border-top: 1px solid var(--ax-border);
}
.axs-tags-label { font-size: 13px; font-weight: 700; color: var(--ax-muted); }
.axs-tag {
    display: inline-flex; padding: 5px 12px;
    border-radius: 999px;
    background: var(--ax-card); border: 1px solid var(--ax-border);
    font-size: 12px; font-weight: 600; color: var(--ax-text);
    transition: .14s;
}
.axs-tag:hover { background: var(--ax-soft-blue); border-color: var(--ax-blue); color: var(--ax-blue); }

/* ── Compartir ── */
.axs-share {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px; padding: 18px 22px; margin-top: 20px;
    background: var(--ax-soft-blue); border-radius: 18px;
}
.axs-share-label { font-size: 13px; font-weight: 700; color: var(--ax-blue); width: 100%; }
.axs-share-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 16px; border-radius: 12px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    border: none; font-family: inherit; transition: .14s;
    text-decoration: none;
}
.axs-share-btn--wa  { background: #25d366; color: #fff; }
.axs-share-btn--wa:hover { background: #1eb558; }
.axs-share-btn--tw  { background: #0f1419; color: #fff; }
.axs-share-btn--tw:hover { background: #1d9bf0; }
.axs-share-btn--cp  { background: var(--ax-card); border: 1px solid var(--ax-border); color: var(--ax-text); }
.axs-share-btn--cp:hover { border-color: var(--ax-blue); color: var(--ax-blue); }

/* ════════════════════
   ARTÍCULOS RELACIONADOS (inline en main)
════════════════════ */
.axs-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px; margin-top: 6px;
}

.axs-related-card {
    background: var(--ax-card);
    border: 1px solid var(--ax-border);
    border-radius: 24px; overflow: hidden;
    text-decoration: none; color: inherit;
    box-shadow: var(--ax-shadow-soft);
    transition: transform .18s, box-shadow .18s;
    display: flex; flex-direction: column;
}
.axs-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ax-shadow);
}
.axs-related-img {
    height: 180px;
    background: linear-gradient(135deg,#1a2f50,#101828) center/cover;
    flex-shrink: 0;
}
.axs-related-body { padding: 18px; flex: 1; display: grid; gap: 6px; }
.axs-related-cat {
    display: inline-block; padding: 3px 9px;
    border-radius: 999px; background: var(--ax-primary);
    color: #fff; font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .05em;
}
.axs-related-body h3 {
    font-size: 22px; font-weight: 900;
    letter-spacing: -.04em; line-height: 1.05;
    color: var(--ax-text); margin: 0;
}
.axs-related-body p { font-size: 14px; color: var(--ax-muted); margin: 0; }

/* ════════════════════
   EEAT
════════════════════ */
.axs-eeat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px; margin: 22px 0;
}
.axs-eeat-item {
    padding: 18px 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
}
.axs-eeat-ico { font-size: 26px; display: block; margin-bottom: 10px; }
.axs-eeat-item strong { display: block; font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.axs-eeat-item p { font-size: 13px; color: rgba(212,219,234,.75); margin: 0; line-height: 1.55; }

.axs-eeat-author {
    display: flex; gap: 16px; align-items: center;
    padding: 18px; margin-top: 4px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
}
.axs-eeat-author img {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.2);
}
.axs-eeat-author strong { display: block; font-size: 15px; color: #fff; margin-bottom: 4px; }
.axs-eeat-author p { font-size: 13px; color: rgba(212,219,234,.7); margin: 0; line-height: 1.5; }

/* ════════════════════
   ENLACES INTERNOS
════════════════════ */
.axs-city-links { display: grid; gap: 10px; margin-top: 4px; }

.axs-city-link {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px;
    background: var(--ax-card); border: 1px solid var(--ax-border);
    border-radius: 18px; text-decoration: none;
    box-shadow: var(--ax-shadow-soft);
    transition: .15s;
}
.axs-city-link:hover {
    border-color: var(--ax-blue);
    box-shadow: var(--ax-shadow);
    transform: translateX(3px);
}
.axs-city-link-ico { font-size: 22px; flex-shrink: 0; }
.axs-city-link div { flex: 1; }
.axs-city-link strong { display: block; font-size: 15px; font-weight: 800; color: var(--ax-text); }
.axs-city-link small { font-size: 12px; color: var(--ax-muted); }
.axs-city-link-arrow { font-size: 18px; color: var(--ax-muted); flex-shrink: 0; }

/* ════════════════════
   PREV / NEXT
════════════════════ */
.axs-prev-next {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.axs-nav-item {
    display: flex; flex-direction: column; gap: 5px;
    padding: 18px 20px;
    background: var(--ax-card); border: 1px solid var(--ax-border);
    border-radius: 20px; text-decoration: none;
    box-shadow: var(--ax-shadow-soft); transition: .15s;
}
.axs-nav-item:not(.axs-nav-item--empty):hover {
    border-color: var(--ax-blue);
    box-shadow: var(--ax-shadow);
    transform: translateY(-2px);
}
.axs-nav-item--next { text-align: right; }
.axs-nav-item--empty { background: transparent; border-color: transparent; box-shadow: none; }
.axs-nav-dir { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ax-muted); }
.axs-nav-ttl { font-size: 15px; font-weight: 800; color: var(--ax-text); line-height: 1.25; }

/* ════════════════════
   SIDEBAR
════════════════════ */
.axs-sidebar { display: grid; gap: 20px; position: sticky; top: 92px; }

.axs-sb-card {
    background: var(--ax-card);
    border: 1px solid var(--ax-border);
    border-radius: 28px; padding: 26px;
    box-shadow: var(--ax-shadow-soft);
}
.axs-sb-card h3 {
    font-size: 26px; font-weight: 900;
    letter-spacing: -.05em; line-height: 1;
    color: var(--ax-text); margin: 0 0 18px;
}

/* ToC */
.axs-toc { display: grid; gap: 8px; }
.axs-toc-link {
    display: block;
    padding: 11px 14px; border-radius: 14px;
    background: var(--ax-bg); border: 1px solid var(--ax-border);
    font-size: 14px; font-weight: 800; color: var(--ax-blue);
    text-decoration: none; transition: .14s;
    line-height: 1.35;
}
.axs-toc-link:hover { background: var(--ax-soft-blue); border-color: var(--ax-blue); }
.axs-toc-link--h3 {
    padding-left: 26px; font-size: 13px;
    font-weight: 600; color: var(--ax-muted);
    background: transparent; border-color: transparent;
}
.axs-toc-link--h3:hover { color: var(--ax-blue); background: var(--ax-soft-blue); border-color: var(--ax-border); }

/* Ciudad links sidebar */
.axs-sb-city-list { display: grid; gap: 10px; }
.axs-sb-city-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: 16px;
    background: var(--ax-bg); border: 1px solid var(--ax-border);
    font-size: 14px; font-weight: 800; color: var(--ax-text);
    text-decoration: none; transition: .14s;
}
.axs-sb-city-item:hover { background: var(--ax-soft-blue); border-color: var(--ax-blue); color: var(--ax-blue); }
.axs-sb-city-item > span:first-child { font-size: 18px; flex-shrink: 0; }

/* Artículos recientes sidebar */
.axs-sb-recent-list { display: grid; gap: 12px; }
.axs-sb-recent-item {
    display: flex; gap: 12px; align-items: center;
    text-decoration: none; transition: .14s;
}
.axs-sb-recent-item:hover { opacity: .8; }
.axs-sb-recent-img {
    width: 60px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: var(--ax-soft-blue) linear-gradient(135deg,#1a2f50,#0b3a67) center/cover;
}
.axs-sb-recent-body { flex: 1; min-width: 0; }
.axs-sb-recent-body span {
    display: block; font-size: 13px; font-weight: 700;
    color: var(--ax-text); line-height: 1.3;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.axs-sb-recent-body small {
    display: block; font-size: 11px;
    color: var(--ax-muted); margin-top: 3px;
}

/* CTA sidebar */
.axs-sb-card--cta { background: var(--ax-blue); border-color: transparent; }
.axs-sb-card--cta h3 { color: #fff; }
.axs-sb-card--cta p { font-size: 14px; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.axs-sb-cta-btn {
    display: flex; justify-content: center;
    padding: 12px 16px; border-radius: 14px;
    background: var(--ax-primary); color: #fff;
    font-size: 14px; font-weight: 800;
    text-decoration: none; transition: background .14s;
}
.axs-sb-cta-btn:hover { background: var(--ax-primary-dark); }

/* Datos del artículo sidebar */
.axs-sb-data-list {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 9px;
}
.axs-sb-data-list li {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 8px;
    padding-bottom: 9px; border-bottom: 1px solid var(--ax-border);
    font-size: 13px;
}
.axs-sb-data-list li:last-child { border-bottom: none; padding-bottom: 0; }
.axs-sb-data-list b { color: var(--ax-text); font-weight: 700; }
.axs-sb-data-list span, .axs-sb-data-list time, .axs-sb-data-list a {
    color: var(--ax-muted); font-size: 12px; text-align: right;
}
.axs-sb-data-list a { color: var(--ax-blue); }

/* ════════════════════
   CTA FINAL
════════════════════ */
.axs-final-cta {
    padding: 48px 56px;
    border-radius: 34px;
    background: linear-gradient(135deg, #10203a, #0b1322);
    color: #fff;
    box-shadow: var(--ax-shadow);
    margin: 48px 0 0;
}
.axs-final-cta h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900; line-height: .95;
    letter-spacing: -.07em; margin: 0 0 14px;
}
.axs-final-cta p {
    font-size: 18px; color: rgba(215,224,239,.85);
    max-width: 780px; margin: 0; line-height: 1.55;
}
.axs-final-btns {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px;
}
.axs-final-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 22px; border-radius: 18px;
    font-size: 14px; font-weight: 800; text-decoration: none; transition: .14s;
}
.axs-final-btn--primary { background: var(--ax-primary); color: #fff; }
.axs-final-btn--primary:hover { background: var(--ax-primary-dark); }
.axs-final-btn--outline {
    border: 1px solid rgba(255,255,255,.22); color: #fff;
    background: rgba(255,255,255,.07);
}
.axs-final-btn--outline:hover { background: rgba(255,255,255,.14); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* Header: ocultar menú desktop, mostrar hamburger */
@media (max-width: 1024px) {
    :root { --ax-header-h: 64px; }
    .ax-header { padding: 12px 0; }
    .ax-header.is-scrolled { padding: 6px 0; }
    .ax-header-inner { height: 56px; gap: 12px; padding: 0 10px 0 18px; border-radius: 16px; }
    .ax-header.is-scrolled .ax-header-inner { height: 52px; }
    .ax-nav { display: none; }
    .ax-hamburger { display: flex; }
    .ax-mobile-menu { display: block; }
    .ax-header-cta { display: none; } /* Solo en móvil lo mostramos en el menú */
    .ax-header-mineg { display: none; }
    /* El menú móvil se ancla bajo el módulo flotante (padding 12 + altura 56 + margen) */
    .ax-mobile-menu { top: 80px; }
}

/* Footer: 2 columnas */
@media (max-width: 960px) {
    .ax-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ax-footer-brand { grid-column: 1 / -1; }
}

/* Post: 1 columna */
@media (max-width: 1020px) {
    .ax-post-layout { grid-template-columns: 1fr; }
    .ax-post-sidebar { position: static; }
    .ax-post-related-grid { grid-template-columns: repeat(2,1fr); }
}

/* Móvil */
@media (max-width: 660px) {
    .ax-header-inner { width: calc(100% - 28px); height: 64px; gap: 12px; }
    .ax-logo { font-size: 22px; }

    .ax-footer { padding: 44px 0 0; margin-top: 56px; }
    .ax-footer-inner { grid-template-columns: 1fr; gap: 28px; width: calc(100% - 28px); }
    .ax-footer-brand { grid-column: auto; }

    .ax-post-wrap { width: calc(100% - 24px); }
    .ax-post-hero { padding: 16px 0 24px; }
    .ax-post-title { font-size: 26px; }
    .ax-post-excerpt { font-size: 15px; }
    .ax-post-prose { padding: 22px 18px; font-size: 15px; }
    .ax-post-prose h2 { font-size: 22px; }
    .ax-post-prose h3 { font-size: 18px; }
    .ax-post-author-box { flex-direction: column; align-items: center; text-align: center; }
    .ax-post-prev-next { grid-template-columns: 1fr; }
    .ax-post-related-grid { grid-template-columns: 1fr; }
    .ax-post-related-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ax-post-meta { gap: 6px 10px; }
    .ax-post-meta-sep { display: none; }
}

/* ── Responsive single post ── */
@media (max-width: 1050px) {
    .axs-layout { grid-template-columns: 1fr; }
    .axs-sidebar { position: static; }
    .axs-related-grid { grid-template-columns: 1fr 1fr; }
    .axs-eeat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .axs-hero-shell { min-height: 620px; border-radius: 24px; }
    .axs-hero-shell .axs-wrap { padding: 32px 0; }
    .axs-title { font-size: 42px; }
    .axs-subtitle { font-size: 16px; }
    .axs-card { padding: 22px 18px; border-radius: 24px; }
    .axs-card-h2 { font-size: 28px; }
    .axs-prose h2 { font-size: 28px; }
    .axs-prose h3 { font-size: 22px; }
    .axs-prose { font-size: 16px; }
    .axs-related-grid { grid-template-columns: 1fr; }
    .axs-eeat-grid { grid-template-columns: 1fr; }
    .axs-prev-next { grid-template-columns: 1fr; }
    .axs-final-cta { padding: 28px 22px; border-radius: 24px; }
    .axs-final-cta h2 { font-size: 34px; }
    .axs-meta { gap: 8px; }
    .axs-meta-chip { padding: 10px 13px; }
}
