





@view-transition { navigation: auto; }


::view-transition-group(root) { animation: none; }

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 160ms;
    animation-timing-function: var(--ease-out);
    height: 100%;
    object-fit: cover;
    object-position: top center;
}


.nav__enlace[aria-current='page'] { view-transition-name: nav-activo; }


.cuenta__u:first-child .cuenta__n,
.heroe__cifra { view-transition-name: dato-heroe; }

::view-transition-group(nav-activo),
::view-transition-group(dato-heroe) {
    animation-duration: 240ms;
    animation-timing-function: var(--ease-out);
}



*, *::before, *::after { box-sizing: border-box; }


[hidden] { display: none !important; }

html, body {

    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--color-papel);
    color: var(--color-tinta);
    font-family: var(--fuente-texto);
    font-size: var(--texto-base);
    line-height: 1.7;
    font-synthesis-weight: none;
    -webkit-font-smoothing: antialiased;


    background-image:
        radial-gradient(60rem 40rem at 82% -8%, var(--resplandor-1), transparent 62%),
        radial-gradient(52rem 38rem at 6% 14%,  var(--resplandor-2), transparent 60%);
    background-attachment: fixed;
    background-repeat: no-repeat;
}


@media (max-width: 768px) {
    body { background-attachment: scroll; }
}

img, svg, video { max-width: 100%; height: auto; display: block; }



h1, h2, h3, h4 {
    font-family: var(--fuente-display);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    text-wrap: balance;
    overflow-wrap: anywhere;
    min-width: 0;
    margin: 0;
}

h1 { font-size: var(--texto-display); letter-spacing: -0.035em; }
h2 { font-size: var(--texto-xl); margin-top: var(--espacio-2xl); }
h3 { font-size: var(--texto-md); margin-top: var(--espacio-xl); }


h2, h3, [id] { scroll-margin-top: 5rem; }


p, li {
    max-width: var(--medida);
    text-wrap: pretty;
}
p { margin: 0 0 var(--espacio-md); }

strong { font-weight: 700; color: var(--color-tinta); }

a {
    color: var(--color-acento);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition: text-decoration-thickness var(--dur-corta) var(--ease-out);
}
a:hover { text-decoration-thickness: 2px; }


:focus-visible {
    outline: 2px solid var(--color-foco);
    outline-offset: 2px;
    border-radius: var(--radio-sm);
}

.num { font-variant-numeric: tabular-nums; }


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}



.contenedor {
    width: 100%;
    max-width: var(--ancho-max);
    margin-inline: auto;
    padding-inline: var(--espacio-md);
}

@media (min-width: 768px) {
    .contenedor { padding-inline: var(--espacio-xl); }
}

.salto-al-contenido {
    position: absolute;
    left: -9999px;
    top: var(--espacio-md);
    background: var(--color-acento);
    color: var(--color-papel);
    padding: var(--espacio-sm) var(--espacio-md);
    border-radius: var(--radio-md);
    font-family: var(--fuente-display);
    font-weight: 700;
    z-index: var(--capa-banner);
}
.salto-al-contenido:focus { left: var(--espacio-md); }



.nav {
    position: sticky;
    top: var(--espacio-sm);
    z-index: var(--capa-nav);
    margin: var(--espacio-sm) auto var(--espacio-xl);
    width: min(100% - 1.5rem, var(--ancho-max));
    display: flex;
    align-items: center;
    gap: var(--espacio-sm);
    padding: var(--espacio-xs) var(--espacio-xs) var(--espacio-xs) var(--espacio-md);
    background: var(--color-papel-2-vidrio);
    border: var(--filete);
    border-radius: var(--radio-pill);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.nav::before {
    content: '';
    position: absolute;
    inset: 0;

    z-index: -1;
    border-radius: inherit;
    background: var(--color-papel-2);
    opacity: 0;
    pointer-events: none;
}


.nav::after {
    content: '';
    position: absolute;
    inset: 0;

    z-index: -2;
    border-radius: inherit;
    background: radial-gradient(14rem 7rem at var(--mx, 50%) var(--my, 50%),
                                var(--nav-foco), transparent 68%);
    opacity: 0;
    transition: opacity var(--dur-media) var(--ease-out);
    pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
    .nav:hover::after { opacity: 1; }
}

@supports (animation-timeline: scroll()) {
    @keyframes nav-se-asienta {
        from { opacity: 0; }
        to   { opacity: 0.55; }
    }
    .nav::before {
        animation: nav-se-asienta linear both;
        animation-timeline: scroll();
        animation-range: 0 140px;
    }
}


.nav__progreso {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 3px;
    height: 2px;
    border-radius: var(--radio-pill);
    background: var(--color-acento);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0.85;
    pointer-events: none;
}

@supports (animation-timeline: scroll()) {
    @keyframes nav-progreso {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }
    .nav__progreso {
        animation: nav-progreso linear both;
        animation-timeline: scroll();
    }
}

.nav__marca {
    display: flex;
    align-items: center;
    gap: var(--espacio-xs);
    font-family: var(--fuente-display);
    font-weight: 800;
    font-size: var(--texto-sm);
    letter-spacing: -0.02em;
    color: var(--color-tinta);
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
}
.nav__mark {
    color: var(--color-acento);
    flex: 0 0 auto;
    transition: color var(--dur-corta) var(--ease-out);
}
.nav__marca:hover .nav__mark { color: var(--color-acento-vivo); }
.nav__nombre span { color: var(--color-acento); }


.nav__no-oficial {
    font-family: var(--fuente-datos);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-tinta-3);
    border: 1px solid var(--color-linea);
    border-radius: var(--radio-sm);
    padding: 0.1em 0.4em;
}
@media (max-width: 420px) {
    .nav__no-oficial { display: none; }
}

.nav__menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--espacio-xs);
    margin: 0 0 0 auto;
    padding: 0;
    min-width: 0;
    list-style: none;
    overflow-x: auto;

    overscroll-behavior-x: contain;
    scrollbar-width: none;
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__menu li { max-width: none; }


.nav__menu::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    z-index: -1;
    width: var(--ind-w, 0px);
    height: var(--ind-h, 1.9rem);
    translate: var(--ind-x, 0px) -50%;
    scale: 1;


    background:
        radial-gradient(120% 150% at 50% 155%, var(--nav-pill-luz), transparent 72%),
        var(--color-acento-flojo);
    box-shadow: inset 0 0 0 1px var(--nav-pill-borde),
                0 4px 14px -8px var(--nav-pill-sombra);
    border-radius: var(--radio-pill);
    opacity: 0;
    pointer-events: none;
}
.nav__menu[data-indicador]::after { opacity: 1; }
.nav__menu[data-indicador='listo']::after {
    transition: translate var(--dur-nav) var(--ease-out),
                width var(--dur-nav) var(--ease-out),
                scale var(--dur-estira) var(--ease-out),
                opacity var(--dur-corta) linear;
}


.nav__menu[data-viajando]::after {
    scale: var(--ind-estira, 1.05) 0.94;
}

.nav__menu[data-indicador='listo'][data-vacio]::after { opacity: 0; }


@media (max-width: 699px) {
    .nav__menu {
        mask-image: linear-gradient(to right, #000 calc(100% - 1.25rem), transparent);
        -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 1.25rem), transparent);
        padding-right: 1rem;
    }
}

.nav__enlace {
    display: block;
    padding: var(--espacio-xs) var(--espacio-sm);
    border-radius: var(--radio-pill);
    font-family: var(--fuente-display);
    font-size: var(--texto-xs);
    font-weight: 600;
    color: var(--color-tinta-2);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--dur-corta) var(--ease-out),
                background-color var(--dur-corta) var(--ease-out);
}
.nav__enlace:hover { color: var(--color-tinta); }
.nav__enlace[aria-current='page'] { color: var(--color-tinta); }


.nav__enlace[aria-current='page'] { background: var(--color-acento-flojo); }
.nav__menu[data-indicador] .nav__enlace[aria-current='page'] { background: none; }


.tema {
    flex: 0 0 auto;
    width: 2.15rem;
    height: 2.15rem;
    display: grid;
    place-items: center;
    padding: 0;
    background: none;
    border: var(--filete);
    border-radius: var(--radio-pill);
    color: var(--color-tinta-2);
    cursor: pointer;
    transition: color var(--dur-corta) var(--ease-out),
                background-color var(--dur-corta) var(--ease-out),
                border-color var(--dur-corta) var(--ease-out),
                transform var(--dur-pulsar) var(--ease-out);
}
.tema:hover {
    color: var(--color-tinta);
    background: var(--color-papel-3);
    border-color: var(--color-papel-4);
}
.tema:active { transform: scale(0.94); }
.tema svg { width: 1.05rem; height: 1.05rem; }

.tema__disco {
    transform-box: view-box;
    transform-origin: center;
    transition: rotate var(--dur-media) var(--ease-out);
}
:root[data-tema='mediodia'] .tema__disco { rotate: 180deg; }



.portada {
    position: relative;
    isolation: isolate;
    margin-block: calc(var(--espacio-lg) * -1) var(--espacio-2xl);
    padding-block: var(--espacio-3xl) var(--espacio-2xl);

    margin-inline: calc(var(--espacio-md) * -1);
    padding-inline: var(--espacio-md);
}
@media (min-width: 768px) {
    .portada {
        margin-inline: calc(var(--espacio-xl) * -1);
        padding-inline: var(--espacio-xl);
        padding-block: var(--espacio-4xl) var(--espacio-3xl);
    }
}




.portada__escena {
    position: relative;
    padding-bottom: var(--espacio-lg);
}


.portada__fondo,
.portada__velo {
    position: absolute;
    top: calc(var(--espacio-3xl) * -1);
    left: calc(var(--espacio-md) * -1);
    right: calc(var(--espacio-md) * -1);
    bottom: calc(var(--espacio-lg) + 1.35rem);
    overflow: hidden;
    border-radius: var(--radio-md);
}
.portada__fondo { z-index: -2; }
.portada__velo  { z-index: -1; }

@media (min-width: 768px) {
    .portada__fondo,
    .portada__velo {
        top: calc(var(--espacio-4xl) * -1);
        left: calc(var(--espacio-xl) * -1);
        right: calc(var(--espacio-xl) * -1);
    }
}

.horizonte {
    width: 100%;
    height: 100%;
    display: block;
}


.hz-sol-alto    { stop-color: var(--color-acento-calido); }
.hz-sol-medio   { stop-color: var(--color-acento); }
.hz-sol-bajo    { stop-color: var(--color-sol-hondo); }
.hz-halo-centro { stop-color: var(--resplandor-1); }
.hz-halo-borde  { stop-color: transparent; }


@supports (animation-timeline: scroll()) {
    @media (prefers-reduced-motion: no-preference) {
        @keyframes horizonte-deriva {
            from { transform: translateY(3%)  scale(1.02); }
            to   { transform: translateY(-6%) scale(1.06); }
        }
        .horizonte__sol {
            transform-origin: 50% 65%;
            animation: horizonte-deriva linear both;
            animation-timeline: scroll();
            animation-range: 0 60vh;
        }
    }
}



.portada__velo {

    background:
        linear-gradient(to bottom,
            var(--color-papel) 0%,
            var(--velo-alto) 20%,
            var(--velo-centro) 52%,
            var(--velo-bajo) 100%),

        linear-gradient(to right,
            var(--color-papel) 0%,
            var(--velo-lado) 12%,
            transparent 34%,
            transparent 74%,
            var(--color-papel) 100%);
}



.portada__antetitulo {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacio-xs) var(--espacio-md);
    margin: 0 0 var(--espacio-md);
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-tinta-2);
    max-width: none;
}
.portada__antetitulo time { color: var(--color-acento); font-weight: 700; }

.portada__titular {
    font-size: clamp(2.5rem, 7vw + 0.5rem, 5.5rem);
    max-width: 16ch;
    margin: 0 0 var(--espacio-xl);
}




.cuenta {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    column-gap: var(--espacio-lg);
    margin-bottom: var(--espacio-lg);
}
@media (max-width: 599px) {
    .cuenta { column-gap: var(--espacio-sm); }
}

.cuenta__u {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}

.cuenta__n {
    font-family: var(--fuente-display);
    font-weight: 800;
    font-size: clamp(2.05rem, 9.5vw, 6.5rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
    min-width: 2ch;
    color: var(--color-tinta);
}


.cuenta__u:first-child .cuenta__n {
    color: var(--color-acento);
    min-width: 3ch;
}

.cuenta__e {
    font-family: var(--fuente-datos);
    font-size: clamp(0.6rem, 2.2vw, var(--texto-xs));
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--color-tinta-3);
}


.cuenta {
    position: relative;
}
.cuenta::after {
    content: '';
    position: absolute;
    left: calc(var(--espacio-md) * -1);
    right: calc(var(--espacio-md) * -1);
    bottom: 1.35rem;
    height: 1px;
    background: linear-gradient(to right,
        transparent, var(--color-acento) 18%, var(--color-acento) 82%, transparent);
    opacity: 0.5;
    pointer-events: none;
}
@media (min-width: 768px) {
    .cuenta::after {
        left: calc(var(--espacio-xl) * -1);
        right: calc(var(--espacio-xl) * -1);
    }
}


@media (prefers-reduced-motion: no-preference) {
    .cuenta__n[data-tic] { animation: tic 140ms var(--ease-out); }
    @keyframes tic {
        from { opacity: 0.45; }
        to   { opacity: 1; }
    }
}


.cuenta[data-lanzado] .cuenta__u:not(:first-child) { display: none; }



.portada__pie {

    margin-top: var(--espacio-2xl);
    display: grid;
    gap: var(--espacio-xl);
    justify-items: center;
}

@media (min-width: 768px) {
    .portada__pie {
        margin-top: var(--espacio-3xl);
        gap: var(--espacio-2xl);
    }
}


.portada__declaracion {
    margin: 0;
    max-width: 30ch;
    margin-inline: auto;
    text-align: center;
    font-family: var(--fuente-display);
    font-weight: 400;
    font-size: var(--texto-declaracion);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--color-tinta);
    text-wrap: balance;
}


.dec-confirmado { color: var(--color-confirmado); }
.dec-rumor      { color: var(--color-rumor); }
.dec-falso      { color: var(--color-falso); }



@keyframes declaracion-entra {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

.portada__declaracion,
.declaracion__apoyo,
.portada__nota {
    animation: declaracion-entra var(--dur-entrada) var(--ease-out) backwards;
}
.declaracion__apoyo { animation-delay: calc(var(--paso-entrada) * 2); }
.portada__nota      { animation-delay: calc(var(--paso-entrada) * 3); }




.dec-confirmado,
.dec-rumor,
.dec-falso {
    white-space: nowrap;
}


.letra {
    display: inline-block;
}


@keyframes golpe {
    0% {
        transform: translateY(0) scale(1);
        animation-timing-function: cubic-bezier(0.22, 0.85, 0.35, 1);
    }
    26% {
        transform: translateY(-0.18em) scale(1.05);
        animation-timing-function: cubic-bezier(0.55, 0, 0.9, 0.45);
    }
    44% { transform: translateY(0) scale(1.10); }
    60% { transform: translateY(0) scale(0.965); }
    78% { transform: translateY(0) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}


@keyframes susto {
    0%   { transform: translate(0, 0) rotate(0deg); }
    16%  { transform: translate(0.035em, -0.11em) rotate(1.4deg); }
    38%  { transform: translate(-0.025em, 0.03em) rotate(-0.9deg); }
    62%  { transform: translate(0.015em, -0.012em) rotate(0.4deg); }
    82%  { transform: translate(-0.006em, 0) rotate(-0.15deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}


@keyframes brinco {
    0% {
        transform: translateY(0) scale(1);
        animation-timing-function: cubic-bezier(0.22, 0.85, 0.35, 1);
    }
    30% {
        transform: translateY(-0.09em) scale(1.03);
        animation-timing-function: cubic-bezier(0.55, 0, 0.9, 0.45);
    }
    55% { transform: translateY(0) scale(1.04); }
    75% { transform: translateY(0) scale(0.99); }
    100% { transform: translateY(0) scale(1); }
}


@keyframes encaje-confirmado {
    from { color: var(--color-tinta); }
    to   { color: var(--color-confirmado); }
}
@keyframes encaje-rumor {
    from { color: var(--color-tinta); }
    to   { color: var(--color-rumor); }
}
@keyframes encaje-falso {
    from { color: var(--color-tinta); }
    to   { color: var(--color-falso); }
}


.dec-confirmado .letra {
    animation:
        golpe var(--dur-golpe) linear
            calc(var(--t-confirma) + var(--l) * var(--paso-letra)) both,
        encaje-confirmado 1ms linear
            calc(var(--t-confirma) + var(--l) * var(--paso-letra) + var(--impacto)) both;
}



.dec-rumor .letra {
    animation:
        susto var(--dur-susto) var(--ease-out)
            calc(var(--t-susto) + var(--l) * var(--paso-letra)) both,
        brinco var(--dur-brinco) linear
            calc(var(--t-rumor) + var(--l) * var(--paso-letra)) forwards,
        encaje-rumor 1ms linear
            calc(var(--t-rumor) + var(--l) * var(--paso-letra) + var(--impacto2)) both;
}


.dec-falso .letra {
    animation:
        susto var(--dur-susto) var(--ease-out)
            calc(var(--t-susto) + 60ms + var(--l) * var(--paso-letra)) both,
        brinco var(--dur-brinco) linear
            calc(var(--t-falso) + var(--l) * var(--paso-letra)) forwards,
        encaje-falso 1ms linear
            calc(var(--t-falso) + var(--l) * var(--paso-letra) + var(--impacto2)) both;
}


.declaracion__apoyo {
    display: block;
    margin-top: 0.5em;
    font-size: var(--texto-md);
    letter-spacing: 0;
    color: var(--color-tinta-2);
}


.portada__nota {
    margin: 0;
    margin-inline: auto;
    max-width: 62ch;
    text-align: center;

    font-size: var(--texto-xs);
    line-height: 1.6;
    color: var(--color-tinta-3);
    text-wrap: pretty;
}


.portada__nota-fuente {
    display: block;
    margin-top: var(--espacio-2xs);
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
}





.heroe { padding-block: var(--espacio-lg) var(--espacio-3xl); }

.heroe__dato {
    display: flex;
    align-items: baseline;
    gap: var(--espacio-md);
    flex-wrap: wrap;
}

.heroe__cifra {
    font-family: var(--fuente-display);
    font-size: var(--texto-cifra);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    color: var(--color-tinta);
    margin: 0;
}

.heroe__unidad {
    font-family: var(--fuente-display);
    font-size: var(--texto-lg);
    font-weight: 600;
    color: var(--color-acento);
    letter-spacing: -0.01em;
}

.heroe__titular {
    margin-top: var(--espacio-lg);
    max-width: 22ch;
}

.heroe__entradilla {
    margin-top: var(--espacio-md);
    font-size: var(--texto-md);
    color: var(--color-tinta-2);
    max-width: 52ch;
}



.estado {
    display: inline-flex;
    align-items: center;
    gap: var(--espacio-2xs);
    padding: 0.15em 0.6em;
    border-radius: var(--radio-pill);
    font-family: var(--fuente-display);
    font-size: var(--texto-xs);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid transparent;
}

.estado--confirmado {
    color: var(--color-confirmado);
    background: var(--color-confirmado-fondo);
    border-color: var(--color-confirmado);
}
.estado--rumor {
    color: var(--color-rumor);
    background: var(--color-rumor-fondo);
    border-color: var(--color-rumor);
}
.estado--falso {
    color: var(--color-falso);
    background: var(--color-falso-fondo);
    border-color: var(--color-falso);
}

.semaforo {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--espacio-md);
    margin-block: var(--espacio-2xl);
    padding: 0;
    list-style: none;
}
@media (min-width: 900px) {
    .semaforo { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.semaforo__bloque {
    max-width: none;
    padding: var(--espacio-lg);
    background: var(--color-papel-2);
    border-radius: var(--radio-md);
    border-top: 3px solid var(--color-linea);
}
.semaforo__bloque--confirmado { border-top-color: var(--color-confirmado); }
.semaforo__bloque--rumor      { border-top-color: var(--color-rumor); }
.semaforo__bloque--falso      { border-top-color: var(--color-falso); }


.semaforo__bloque :is(h2, h3) { margin-top: var(--espacio-sm); font-size: var(--texto-base); }
.semaforo__bloque ul { margin: var(--espacio-sm) 0 0; padding-left: 1.1em; }
.semaforo__bloque li {
    font-size: var(--texto-sm);
    color: var(--color-tinta-2);
    margin-bottom: var(--espacio-xs);
}




.articulo { padding-bottom: 0; }

.migas {
    font-family: var(--fuente-display);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
    margin-bottom: var(--espacio-md);
}
.migas a {
    color: var(--color-tinta-3);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--dur-corta) var(--ease-out);
}
.migas a:hover { color: var(--color-acento); text-decoration: underline; }
.migas span { margin-inline: var(--espacio-2xs); }

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacio-sm) var(--espacio-md);
    align-items: center;
    margin-top: var(--espacio-lg);
    padding-top: var(--espacio-md);
    border-top: var(--filete);
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
}


.resumen {
    margin-block: var(--espacio-xl);
    padding: var(--espacio-lg);
    background: var(--color-papel-2);
    border-left: 3px solid var(--color-acento);
    border-radius: 0 var(--radio-md) var(--radio-md) 0;
}
.resumen h2 {
    margin: 0 0 var(--espacio-sm);
    font-size: var(--texto-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-tinta-3);
}
.resumen ul { margin: 0; padding-left: 1.2em; }
.resumen li { margin-bottom: var(--espacio-xs); }
.resumen li:last-child { margin-bottom: 0; }



.cabecera-legal { margin-bottom: var(--espacio-xl); }
.cabecera-legal .heroe__titular { max-width: none; margin-top: 0; }


.pendiente {
    background: var(--color-falso-fondo);
    color: var(--color-falso);
    border: 1px dashed var(--color-falso);
    border-radius: var(--radio-sm);
    padding: 0.05em 0.4em;
    font-family: var(--fuente-datos);
    font-size: 0.85em;
    font-weight: 700;
}



.imagen-articulo {
    margin: var(--espacio-xl) 0;
    padding: 0;
}

.imagen-articulo img,
.imagen-articulo__hueco {
    width: 100%;
    height: auto;
    border-radius: var(--radio-md);
    background: var(--color-papel-2);
}


.imagen-articulo__hueco {
    display: grid;
    place-items: center;
    border: 1px dashed var(--color-linea);
}
.imagen-articulo__hueco span {
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
}

.imagen-articulo figcaption {
    margin-top: var(--espacio-sm);
    padding-left: var(--espacio-md);
    border-left: 2px solid var(--color-acento);
    font-size: var(--texto-sm);
    line-height: 1.55;
    color: var(--color-tinta-2);
    max-width: var(--medida);
}

.imagen-articulo__fuente {
    display: block;
    margin-top: var(--espacio-2xs);
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
}
.imagen-articulo__fuente a {
    color: var(--color-tinta-3);
    transition: color var(--dur-corta) var(--ease-out);
}
.imagen-articulo__fuente a:hover { color: var(--color-acento); }



.tabla-envoltorio {
    margin-block: var(--espacio-xl);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}


.tabla {
    width: 100%;
    min-width: 30rem;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: var(--texto-sm);
    font-family: var(--fuente-display);
}
.tabla th:first-child, .tabla td:first-child { width: 34%; }
.tabla th:nth-child(2), .tabla td:nth-child(2) { width: 26%; }
.tabla caption {
    text-align: left;
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
    padding-bottom: var(--espacio-sm);
}
.tabla th, .tabla td {
    text-align: left;
    padding: var(--espacio-sm) var(--espacio-md);
    border-bottom: var(--filete);
    vertical-align: top;
}
.tabla th {
    font-weight: 700;
    font-size: var(--texto-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-tinta-3);
}
.tabla td { color: var(--color-tinta-2); }
.tabla td:first-child { color: var(--color-tinta); font-weight: 600; }

.tabla tbody tr { transition: background-color var(--dur-corta) var(--ease-out); }
.tabla tbody tr:hover { background: var(--color-papel-2); }
.tabla .fuente { font-family: var(--fuente-datos); font-size: var(--texto-xs); }



.faq { margin-block: var(--espacio-xl); }

.faq details { border-bottom: var(--filete); }
.faq summary {
    cursor: pointer;
    padding: var(--espacio-md) var(--espacio-xl) var(--espacio-md) 0;
    position: relative;
    font-family: var(--fuente-display);
    font-weight: 700;
    font-size: var(--texto-base);
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: var(--espacio-xs);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--texto-md);
    color: var(--color-acento);
}
.faq details[open] summary::after { content: '\2212'; }
.faq summary {
    transition: color var(--dur-corta) var(--ease-out);
}
.faq summary:hover { color: var(--color-acento); }
.faq details > *:not(summary) { color: var(--color-tinta-2); }
.faq details p:last-child { padding-bottom: var(--espacio-md); }



@supports (interpolate-size: allow-keywords) {
    :root { interpolate-size: allow-keywords; }
}

@supports (interpolate-size: allow-keywords) and selector(::details-content) {
    .faq details::details-content {
        block-size: 0;
        overflow: hidden;
        transition:
            block-size var(--dur-acordeon) var(--ease-out),
            content-visibility var(--dur-acordeon) allow-discrete;
    }
    .faq details[open]::details-content { block-size: auto; }
}


.faq summary::after {
    transition: color var(--dur-corta) var(--ease-out);
}



.relacionados {
    margin-top: var(--espacio-3xl);
    padding-top: var(--espacio-xl);
    border-top: var(--filete);
}


.relacionados ul {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--espacio-sm);
    margin: var(--espacio-lg) 0 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 700px) {
    .relacionados ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.relacionados li { max-width: none; }




.relacionados .tarjeta { height: 100%; }





.tarjeta__accion {
    margin-block-start: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: var(--espacio-2xs);
    padding: 0.5em 0.9em;
    border-radius: var(--radio-pill);
    background: var(--color-acento);
    color: var(--color-papel-0);
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tarjeta__accion svg {
    width: 1.05em;
    height: 1.05em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: translate var(--dur-corta) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .tarjeta:hover .tarjeta__accion svg { translate: 3px 0; }
}
.tarjeta:focus-visible .tarjeta__accion svg { translate: 3px 0; }



.indice { margin-block: var(--espacio-2xl); }

.indice__grupo + .indice__grupo { margin-top: var(--espacio-2xl); }


.indice__grupo-titulo {
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-tinta-3);
    margin: 0 0 var(--espacio-2xs);
}
.indice__grupo-entradilla {
    font-size: var(--texto-sm);
    color: var(--color-tinta-2);
    max-width: 52ch;
    margin: 0 0 var(--espacio-md);
}


.escena {
    position: relative;
    isolation: isolate;

    transition: --tinte-vivo var(--dur-ambiente) var(--ease-out);
}


.escena__ambiente {
    position: absolute;
    inset: 10% -12% 8%;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;

    filter: blur(64px);

    background: radial-gradient(58% 58% at 50% 50%,
                color-mix(in oklab, var(--tinte-vivo) 100%, transparent) 0%,
                transparent 72%);
    opacity: calc(var(--ambiente) * var(--ambiente-max));
}



.carril {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--espacio-md);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.carril::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
    .carril { scroll-padding-inline-start: var(--espacio-xl); }
}


.pista {
    display: flex;
    gap: var(--carril-hueco);
    width: max-content;
    list-style: none;
    margin: 0;
    padding-block: var(--espacio-2xs) var(--espacio-sm);
    padding-inline: var(--espacio-md);
}
@media (min-width: 768px) {
    .pista { padding-inline: var(--espacio-xl); }
}

.casilla {
    flex: 0 0 var(--carril-ancho);
    max-width: none;
    scroll-snap-align: start;
    display: flex;
    position: relative;
}




@property --o {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}


@property --tinte-vivo {
    syntax: '<color>';
    inherits: true;
    initial-value: transparent;
}


.escena[data-motor='ruleta'] .carril {
    overflow: clip;
    scroll-snap-type: none;
    touch-action: pan-y;
}


.escena[data-motor='ruleta']::before,
.escena[data-motor='ruleta']::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7%;
    z-index: var(--capa-velo);
    pointer-events: none;
}
.escena[data-motor='ruleta']::before {
    left: 0;
    background: linear-gradient(to right, var(--color-papel), transparent);
}
.escena[data-motor='ruleta']::after {
    right: 0;
    background: linear-gradient(to left, var(--color-papel), transparent);
}


.escena[data-motor='ruleta'] .pista {
    position: relative;
    display: block;
    width: 100%;
    height: var(--tarjeta-alto);
    padding-inline: 0;
    perspective: var(--perspectiva);
    perspective-origin: 50% 48%;
}


.escena[data-motor='ruleta'] .casilla {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--tarjeta-ancho);
    height: 100%;
    margin-left: calc(var(--tarjeta-ancho) / -2);
    flex: none;

    --ab: max(var(--o), calc(var(--o) * -1));
    --ac: min(var(--ab), 3);

    transform:
        translate3d(calc(var(--o) * var(--paso) * var(--tarjeta-ancho)),
                    calc(var(--ac) * var(--arco)),
                    calc(var(--ac) * var(--z) * -1))
        rotateY(calc(var(--o) * var(--giro) * -1))
        scale(calc(1 - var(--ac) * var(--escala)));


    transition: transform var(--giro-dur) var(--ease-ruleta);
}


.escena--arrastrando .casilla { will-change: transform; }


.escena[data-motor='ruleta'] .tarjeta {
    height: 100%;
    filter: blur(calc(var(--ac) * var(--desenfoque)))
            saturate(calc(1 - var(--ac) * var(--desaturado)));
    opacity: calc((1 - var(--ac) * var(--atenuado)) *
                  clamp(0, calc((var(--visibles) - var(--ab)) / 0.5), 1));

    transition: opacity var(--giro-fundido) var(--ease-ruleta),
                filter var(--desenfoque-dur) var(--ease-ruleta);
}
.escena[data-motor='ruleta'] .casilla--fuera { pointer-events: none; }


.escena--arrastrando { --giro-dur: 0ms; }
.escena--arrastrando .tarjeta { user-select: none; }


.escena[data-motor='ruleta'] .tarjeta::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--color-papel-0);
    opacity: calc(var(--ac) * var(--penumbra));
    border-radius: inherit;
    transition: opacity var(--giro-fundido) var(--ease-ruleta);
}


.escena[data-motor='ruleta'] .casilla::before {
    content: '';
    position: absolute;
    inset: -14% -10% -18%;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;

    filter: blur(38px);
    background: radial-gradient(62% 62% at 50% 55%,
                color-mix(in oklab, var(--tinte) 92%, transparent) 0%,
                transparent 70%);
    opacity: calc(max(0, 1 - var(--ac)) * 0.6 * var(--foco));
    transition: opacity var(--giro-fundido) var(--ease-ruleta);
}


.escena[data-motor='ruleta'] .tarjeta__marco {
    flex: 0 0 var(--banda);
    aspect-ratio: auto;
}


.escena[data-motor='ruleta'] .tarjeta__marco img {
    width: 112%;

    max-width: none;
    margin-inline-start: -6%;
    translate: calc(var(--o) * var(--paralaje) * -1) 0;
    transition: translate var(--giro-dur) var(--ease-ruleta),
                transform var(--dur-media) var(--ease-out);
}


.escena[data-motor='ruleta'] .tarjeta__texto {
    opacity: calc(clamp(0, calc(1 - var(--ac) * 1.9 * var(--apaga-texto)), 1) *
                  clamp(0, calc((var(--texto-hasta) - var(--ac)) / 0.45), 1));
    transition: opacity var(--giro-fundido) var(--ease-ruleta);
}


.escena[data-motor='ruleta'] .tarjeta__resumen,
.escena[data-motor='ruleta'] .tarjeta__pie {
    opacity: clamp(0, calc(1 - var(--ac) * var(--apaga-detalle)), 1);
    transition: opacity var(--giro-fundido) var(--ease-ruleta);
}


.escena[data-motor='ruleta'] .tarjeta:focus-visible .tarjeta__texto { opacity: 1; }


.escena[data-motor='ruleta'] .casilla:focus-within .tarjeta {
    opacity: 1;
    filter: none;
}
.escena[data-motor='ruleta'] .casilla:focus-within { pointer-events: auto; }



.tarjeta {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--color-papel-2);
    border: var(--filete);
    border-radius: var(--radio-md);
    overflow: hidden;
}

.tarjeta__marco {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-papel-0);
}
.tarjeta__marco img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-media) var(--ease-out);
}


.tarjeta__velo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
                transparent 38%,
                color-mix(in oklab, var(--tinte) 45%, transparent) 86%,
                color-mix(in oklab, var(--tinte) 70%, transparent) 100%);

    mix-blend-mode: var(--velo-mezcla);
    opacity: var(--velo-fuerza);
}

.tarjeta__texto {
    display: flex;
    flex-direction: column;
    gap: var(--espacio-2xs);
    padding: var(--espacio-md);
    flex: 1 1 auto;
    min-height: 0;
}


.tarjeta__dato {
    display: flex;
    align-items: baseline;
    gap: 0.45em;
}
.tarjeta__cifra {
    font-family: var(--fuente-datos);
    font-weight: 400;
    font-size: var(--texto-xl);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--color-tinta);
    font-variant-numeric: tabular-nums;
}

.tarjeta__unidad {
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-tinta-2);
}

.tarjeta__titulo {
    font-family: var(--fuente-display);
    font-weight: 600;
    font-size: var(--texto-lg);
    line-height: 1.18;
    letter-spacing: -0.015em;
    text-wrap: balance;
    margin-top: var(--espacio-2xs);
    transition: color var(--dur-corta) var(--ease-out);
}


.tarjeta__resumen {
    color: var(--color-tinta-2);
    font-size: var(--texto-sm);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.tarjeta__pie {
    margin-top: auto;
    padding-top: var(--espacio-sm);
    border-top: var(--filete);
    font-family: var(--fuente-datos);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
}


.tarjeta {
    transform: translate3d(0, 0, 0);
    transition: background var(--dur-corta) var(--ease-out),
                border-color var(--dur-corta) var(--ease-out),
                transform var(--dur-corta) var(--ease-out);
}


@media (hover: hover) and (pointer: fine) {
    .tarjeta:hover {
        transform: translate3d(0, -3px, 0);
        background: var(--color-papel-3);
        border-color: var(--color-papel-4);
    }
    .tarjeta:hover .tarjeta__titulo { color: var(--color-acento); }

    .tarjeta:hover .tarjeta__marco img { transform: scale(1.04); }
}


.tarjeta:focus-visible {
    outline: 2px solid var(--color-foco);
    outline-offset: 3px;
    border-radius: var(--radio-md);
}
.tarjeta:focus-visible .tarjeta__titulo { color: var(--color-acento); }


@media (prefers-contrast: more) {
    .indice {
        --atenuado:      0;
        --apaga-texto:   0;
        --apaga-detalle: 0;
        --texto-hasta:   9;
        --desaturado:   0;
        --desenfoque:   0px;
        --penumbra:     0.14;
        --escala:       0.17;
        --z:            185px;
    }
}


.escena__flecha {
    position: absolute;
    top: calc(50% - 22px);
    z-index: var(--capa-mando);
    width: 44px;
    height: 44px;
    border-radius: var(--radio-pill);
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    background: var(--color-papel-2);
    border: 1px solid var(--color-papel-4);
    color: var(--color-tinta);
    transition: background var(--dur-corta) var(--ease-out);
}
.escena__flecha--izq { left: calc(var(--espacio-md) * -1); }
.escena__flecha--der { right: calc(var(--espacio-md) * -1); }
.escena__flecha svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.escena__flecha:hover { background: var(--color-papel-3); }

@media (max-width: 699px) {
    .escena__flecha { display: none; }
}
@media (min-width: 768px) {
    .escena__flecha--izq { left: calc(var(--espacio-xl) * -1); }
    .escena__flecha--der { right: calc(var(--espacio-xl) * -1); }
}


.progreso {
    position: relative;

    z-index: var(--capa-mando);
    height: 2px;
    border-radius: 2px;
    background: var(--color-linea);
    overflow: hidden;
    margin-top: var(--espacio-sm);
}
.progreso__barra {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: var(--tramo, 100%);
    transform: translateX(var(--corrido, 0));
    background: var(--color-acento);
    border-radius: 2px;
    transition: transform var(--giro-dur) var(--ease-ruleta);
}



.pie {
    margin-top: var(--espacio-2xl);
    padding-block: var(--espacio-2xl) var(--espacio-xl);
    border-top: var(--filete);
    background: var(--color-papel-0);
}

.pie__declaracion {
    font-family: var(--fuente-display);
    font-weight: 700;
    font-size: var(--texto-lg);
    letter-spacing: -0.025em;
    line-height: 1.25;
    max-width: 26ch;
    margin: 0 0 var(--espacio-xl);
}
.pie__declaracion em { font-style: normal; color: var(--color-acento); }

.pie__legal {
    display: flex;
    flex-wrap: wrap;
    gap: var(--espacio-sm) var(--espacio-lg);
    padding: 0;
    margin: 0 0 var(--espacio-lg);
    list-style: none;
}
.pie__legal li { max-width: none; }
.pie__legal a, .pie__legal button {
    font-family: var(--fuente-display);
    font-size: var(--texto-xs);
    font-weight: 600;
    color: var(--color-tinta-2);
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;


    display: inline-flex;
    align-items: center;
    min-height: 26px;
}
.pie__legal a, .pie__legal button {
    transition: color var(--dur-corta) var(--ease-out);
}
.pie__legal a:hover, .pie__legal button:hover { color: var(--color-acento); }

.pie__descargo {
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
    max-width: 62ch;
}





@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {

        @keyframes asomar {
            from { opacity: 0.15; transform: translateY(12px); }
            to   { opacity: 1;    transform: none; }
        }

        .indice__grupo,
        .semaforo__bloque,
        .imagen-articulo,
        .tabla-envoltorio,
        .relacionados li {
            animation: asomar var(--dur-media) var(--ease-out) both;
            animation-timeline: view();
            animation-range: entry 5% entry 45%;
        }
    }
}



@supports not (animation-timeline: scroll()) {
    .nav__progreso { transform: scaleX(var(--avance, 0)); }
    .nav::before    { opacity: var(--asentado, 0); }
}

@supports not (animation-timeline: view()) {

    .js-asoma :where(.indice__grupo,
                     .semaforo__bloque,
                     .imagen-articulo,
                     .tabla-envoltorio,
                     .relacionados li) {
        opacity: 0.15;
        transform: translateY(12px);
        transition: opacity var(--dur-media) var(--ease-out),
                    transform var(--dur-media) var(--ease-out);
    }
    .js-asoma .asomado {
        opacity: 1;
        transform: none;
    }


    .js-asoma .ya-estaba { transition: none; }


    @media (prefers-reduced-motion: reduce) {
        .js-asoma :where(.indice__grupo,
                         .semaforo__bloque,
                         .imagen-articulo,
                         .tabla-envoltorio,
                         .relacionados li) {
            opacity: 0.45;
            transform: none;
            transition: opacity var(--dur-media) linear;
        }
    }
}






@media (prefers-reduced-motion: reduce) {

    html { scroll-behavior: auto; }


    .relacionados a:active,
    .relacionados a:hover,
    .tema:active { transform: none; }


    .indice {
        --giro-dur:       1ms;
        --giro-fundido:   var(--dur-media);
        --desenfoque-dur: var(--dur-media);
    }


    .tarjeta:hover { transform: none; }


    .nav__menu[data-indicador='listo']::after {
        transition: opacity var(--dur-corta) linear;
    }
    .nav__menu[data-viajando]::after { scale: 1; }


    .tema__disco { transition: none; }


    @keyframes declaracion-entra {
        from { opacity: 0; }
        to   { opacity: 1; }
    }



    @keyframes golpe {
        0%   { transform: translateY(0) scale(1); }
        26%  { transform: translateY(-0.055em) scale(1.015); }
        44%  { transform: translateY(0) scale(1.03); }
        60%  { transform: translateY(0) scale(0.99); }
        78%  { transform: translateY(0) scale(1.005); }
        100% { transform: translateY(0) scale(1); }
    }
    @keyframes susto {
        0%   { transform: translate(0, 0); }
        16%  { transform: translate(0.012em, -0.035em); }
        38%  { transform: translate(-0.008em, 0.01em); }
        62%  { transform: translate(0.005em, -0.004em); }
        100% { transform: translate(0, 0); }
    }
    @keyframes brinco {
        0%   { transform: translateY(0) scale(1); }
        30%  { transform: translateY(-0.03em) scale(1.01); }
        55%  { transform: translateY(0) scale(1.015); }
        75%  { transform: translateY(0) scale(0.997); }
        100% { transform: translateY(0) scale(1); }
    }


    .tarjeta:hover .tarjeta__accion svg,
    .tarjeta:focus-visible .tarjeta__accion svg { translate: none; }


    @supports (animation-timeline: view()) {
        @keyframes asomar-suave {
            from { opacity: 0.45; }
            to   { opacity: 1; }
        }
        .indice__grupo,
        .semaforo__bloque,
        .imagen-articulo,
        .tabla-envoltorio,
        .relacionados li {
            animation: asomar-suave var(--dur-media) linear both;
            animation-timeline: view();
            animation-range: entry 5% entry 40%;
        }
    }





    @supports (interpolate-size: allow-keywords) and selector(::details-content) {
        .faq details::details-content { transition: none; }
    }


    ::view-transition-group(*) {
        animation-duration: 1ms !important;
    }


}


.compartir {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--espacio-sm) var(--espacio-md);
    margin: var(--espacio-lg) 0 0;
    padding-top: var(--espacio-md);
    border-top: 1px solid var(--color-linea);
}

.compartir__rotulo {
    margin: 0;
    font-family: var(--fuente-display);
    font-size: var(--texto-xs);
    color: var(--color-tinta-3);
}

.compartir__enlace {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    min-height: 32px;
    padding: 0 var(--espacio-sm);
    font-family: var(--fuente-display);
    font-size: var(--texto-xs);
    font-weight: 600;
    color: var(--color-tinta-2);
    text-decoration: none;
    background: var(--color-papel-2);
    border: 1px solid var(--color-papel-4);
    border-radius: 999px;
    transition: background var(--dur-corta) var(--ease-out),
                color var(--dur-corta) var(--ease-out);
}

.compartir__enlace svg { color: var(--color-confirmado); }

.compartir__enlace:hover {
    background: var(--color-papel-3);
    color: var(--color-tinta);
}


@media (min-width: 700px) {
    .articulo p,
    .articulo li,
    .articulo blockquote,
    .articulo details p,
    .articulo details li {
        text-align: justify;
    }
}

.articulo p,
.articulo li,
.articulo blockquote,
.articulo details p,
.articulo details li {
    -webkit-hyphens: auto;
    hyphens: auto;
}


.articulo .heroe__entradilla,

.articulo .portada__antetitulo,
.articulo .portada__declaracion,
.articulo .portada__nota,
.articulo .indice__grupo-entradilla,
.articulo .meta,
.articulo .compartir__rotulo,
.articulo figcaption,
.articulo figcaption p,
.articulo .tabla p,
.articulo .tabla li,

.articulo li:has(> .tarjeta),
.articulo .tarjeta,
.articulo .tarjeta *,
.articulo .visually-hidden {
    text-align: left;
    -webkit-hyphens: manual;
    hyphens: manual;
}

.meta-inline {
    font-size: 0.875em;
    color: var(--color-tinta-2);
    white-space: nowrap;
}
