﻿/**
 * Radiodent - Vista Prensa / Newsroom
 * Banner estilo index/nosotros + tipografía unificada del sitio
 */

:root {
    --vj-body-size: clamp(0.95rem, 1.1vw, 1.05rem);
    --vj-body-line-height: 1.55;
}

@media (max-width: 1024px) {
    :root {
        --vj-body-size: clamp(0.9rem, 2.5vw, 1.02rem);
    }
}

@media (max-width: 768px) {
    :root {
        --vj-body-size: 0.9rem;
        --vj-body-line-height: 1.5;
    }
}

@media (max-width: 480px) {
    :root {
        --vj-body-size: 0.84rem;
    }
}

@media (min-width: 2000px) {
    :root {
        --vj-body-size: 1.35rem;
        --vj-body-line-height: 1.7;
    }
}

@media (min-width: 2560px) {
    :root {
        --vj-body-size: 1.5rem;
        --vj-body-line-height: 1.72;
    }
}

.view-newsroom {
    --newsroom-navy: #1D2343;
    --newsroom-accent: #223A8A;
    --newsroom-ink: #4a5568;
    --newsroom-border: #e2e8f0;
    --newsroom-surface: #f3f4f6;
    --newsroom-font: 'Montserrat', sans-serif;
}

.newsroom-hero-wrap {
    margin-top: 0;
    background: #ffffff;
}

/* Banner Home */
.banner-home {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    height: 100vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-home__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-home__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.banner-home__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 36%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 64%);
    z-index: 1;
}

.banner-home__content {
    position: relative;
    z-index: 5;
    padding-top: var(--nav-height);
    padding-left: clamp(2rem, 5vw, 6rem);
    padding-right: clamp(2rem, 5vw, 6rem);
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.banner-home__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.55rem);
    font-weight: 800;
    color: var(--color-primary, #1D2343);
    line-height: 1.12;
    margin: 0 0 1.5rem;
    max-width: 720px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.banner-home__title-line {
    display: block;
}

.banner-home__title-line--accent {
    color: var(--color-secondary, #223A8A);
}

/* Prensa: título más grande + contraste de color como en el diseño */
.view-newsroom .banner-home__title {
    font-size: clamp(2.35rem, 5.2vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: 0.02em;
    max-width: 14ch;
    margin-bottom: 1.35rem;
}

.view-newsroom .banner-home__title-line {
    color: var(--color-primary, #1D2343);
}

.view-newsroom .banner-home__title-line--accent {
    color: var(--color-secondary, #223A8A);
}

.view-newsroom .banner-home__text > p:not(.banner-home__highlights) {
    max-width: 34rem;
}

.view-newsroom .banner-home__text p {
    color: #3A3C45;
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

@media (max-width: 1024px) {
    .view-newsroom .banner-home__title {
        font-size: clamp(2rem, 7vw, 3.15rem);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .view-newsroom .banner-home__title {
        font-size: clamp(1.85rem, 9vw, 2.65rem);
    }
}

@media (max-width: 480px) {
    .view-newsroom .banner-home__title {
        font-size: clamp(1.65rem, 10vw, 2.15rem);
    }
}

.banner-home__text {
    margin-bottom: 1.75rem;
}

.banner-home__text > p:not(.banner-home__highlights) {
    max-width: 500px;
}

.banner-home__text p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.1rem);
    color: #3A3C45;
    line-height: 1.6;
    margin: 0 0 1rem;
    font-weight: 300;
    text-align: left;
}

.banner-home__text .banner-home__highlights {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: var(--color-secondary, #223A8A);
    line-height: 1.5;
    margin: 0;
    max-width: 720px;
}

.banner-home__actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 10;
}

.btn-banner {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 1.3vw, 1.15rem);
    padding: 0.85rem 1.85rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-banner--primary {
    background: var(--color-primary, #1D2343);
    color: #ffffff;
    border-color: var(--color-primary, #1D2343);
}

.btn-banner--primary:hover {
    background: var(--color-secondary, #223A8A);
    border-color: var(--color-secondary, #223A8A);
    color: #ffffff;
}

.btn-banner--outline {
    background: transparent;
    color: var(--color-primary, #1D2343);
    border-color: var(--color-primary, #1D2343);
}

.btn-banner--outline:hover {
    background: rgba(29, 35, 67, 0.06);
    color: var(--color-primary, #1D2343);
}

@media (min-width: 2000px) {
    .banner-home {
        min-height: 720px;
    }

    .banner-features {
        margin-top: clamp(-14rem, -15vw, -10rem);
    }

    .banner-home__content {
        padding-left: clamp(8rem, 10vw, 12rem);
        padding-right: clamp(8rem, 10vw, 12rem);
        max-width: 2200px;
    }

    .banner-home__title {
        font-size: clamp(2.15rem, 2.7vw, 3.2rem);
        max-width: 860px;
        line-height: 1.1;
    }

    .view-newsroom .banner-home__title {
        font-size: clamp(3.6rem, 4.4vw, 5.6rem);
        max-width: 12ch;
        line-height: 1.02;
        margin-bottom: 1.75rem;
    }

    .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 580px;
    }

    .view-newsroom .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 42rem;
    }

    .banner-home__text .banner-home__highlights {
        max-width: 840px;
    }

    .banner-home__text {
        margin-bottom: 2rem;
    }

    .banner-home__text p,
    .banner-home__highlights {
        font-size: 1.28rem;
        line-height: 1.65;
    }

    .view-newsroom .banner-home__text p {
        font-size: 1.28rem;
        line-height: 1.65;
    }

    .btn-banner {
        font-size: 1.4rem;
        font-weight: 700;
        padding: 1.05rem 2.65rem;
    }

    .banner-home__actions {
        gap: 1.35rem;
    }
}

@media (min-width: 2560px) {
    .banner-home {
        min-height: 820px;
    }

    .banner-home__content {
        padding-left: 12rem;
        padding-right: 12rem;
        max-width: 2600px;
    }

    .banner-home__title {
        font-size: clamp(2.4rem, 2.4vw, 3.5rem);
        max-width: 960px;
    }

    .view-newsroom .banner-home__title {
        font-size: clamp(4.2rem, 4vw, 6.2rem);
        max-width: 12ch;
    }

    .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 640px;
    }

    .view-newsroom .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 48rem;
    }

    .banner-home__text .banner-home__highlights {
        max-width: 920px;
    }

    .banner-home__text p,
    .banner-home__highlights {
        font-size: 1.42rem;
    }

    .view-newsroom .banner-home__text p {
        font-size: 1.42rem;
    }

    .btn-banner {
        font-size: 1.55rem;
        font-weight: 700;
        padding: 1.15rem 3rem;
    }
}

.btn-blue {
    background: #185480;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    padding: 0.45rem 2.6rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.15rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-blue:hover {
    background: #113c5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 60, 92, 0.3);
    color: #ffffff;
}

/* Tablet y móvil: imagen completa + overlay claro + contenido legible */
@media (max-width: 1024px) {
    .banner-home {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        min-height: min(100svh, 860px);
        height: auto;
        background: #e8eef3;
        overflow: hidden;
    }

    .banner-home__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .banner-home__bg img {
        object-fit: cover;
        object-position: 78% 22%;
    }

    .banner-home__gradient {
        width: 100%;
        height: 100%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.28) 32%,
            rgba(255, 255, 255, 0.78) 62%,
            rgba(255, 255, 255, 0.97) 100%
        );
    }

    .banner-home__content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 40rem;
        margin: 0 auto;
        margin-top: auto;
        padding: calc(var(--nav-height) + 18vh) clamp(1.5rem, 5vw, 2.5rem) clamp(2rem, 4vw, 2.75rem);
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }

    .banner-home__title {
        max-width: 100%;
        font-size: clamp(1.35rem, 3.8vw, 1.85rem);
        text-align: center;
        margin-bottom: 1.1rem;
        line-height: 1.15;
    }

    .banner-home__text {
        max-width: 36rem;
        margin-bottom: 1.35rem;
    }

    .banner-home__text > p:not(.banner-home__highlights) {
        max-width: 100%;
    }

    .banner-home__text p,
    .banner-home__text .banner-home__highlights {
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: clamp(0.92rem, 2.2vw, 1.05rem);
    }

    .banner-home__text .banner-home__highlights {
        max-width: 100%;
        margin-bottom: 0;
    }

    .banner-home__actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }

    .btn-banner {
        width: auto;
        min-width: 11.5rem;
        text-align: center;
        font-size: 0.95rem;
        padding: 0.75rem 1.4rem;
    }
}

@media (max-width: 768px) {
    .banner-home {
        min-height: auto;
        height: auto;
    }

    .banner-home__bg img {
        object-position: 72% 28%;
    }

    .banner-home__gradient {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.35) 36%,
            rgba(255, 255, 255, 0.88) 68%,
            #ffffff 100%
        );
    }

    .banner-home__content {
        max-width: 100%;
        padding-top: calc(var(--nav-height-mobile) + clamp(12rem, 42vw, 18rem));
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 1.75rem;
    }

    .banner-home__title {
        font-size: clamp(1.4rem, 6vw, 1.85rem);
        line-height: 1.18;
        margin-bottom: 0.95rem;
    }

    .banner-home__title-line {
        width: auto;
        height: auto;
        margin: 0;
    }

    .banner-home__text {
        margin-bottom: 1.15rem;
    }

    .banner-home__text p,
    .banner-home__text .banner-home__highlights {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .banner-home__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 17.5rem;
        margin: 0 auto;
        gap: 0.65rem;
    }

    .btn-banner {
        width: 100%;
        min-width: 0;
        font-size: 0.9rem;
        padding: 0.72rem 1.2rem;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .banner-home__bg img {
        object-position: 70% 30%;
    }

    .banner-home__content {
        padding-top: calc(var(--nav-height-mobile) + clamp(10.5rem, 48vw, 15rem));
        padding-left: 1.1rem;
        padding-right: 1.1rem;
        padding-bottom: 1.5rem;
    }

    .banner-home__title {
        font-size: clamp(1.15rem, 6vw, 1.4rem);
        margin-bottom: 0.85rem;
    }

    .banner-home__text p,
    .banner-home__text .banner-home__highlights {
        font-size: 0.88rem;
    }

    .banner-home__actions {
        max-width: 100%;
    }

    .btn-banner {
        font-size: 0.86rem;
        padding: 0.68rem 1.1rem;
    }
}

/* --- BANNER FEATURES (curva full-bleed) --- */
.banner-features {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: clamp(-7.5rem, -11vw, -4.5rem) 0 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-features__wave {
    position: relative;
    width: 100%;
    max-width: none;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
}

/*
 * elemento-banners.svg: viewBox 1961.07 × clip útil 1920 desde x=28.28
 * Escalamos y desplazamos para eliminar los márgenes transparentes del arte.
 */
.banner-features__wave-img {
    display: block;
    width: calc(100% * 1961.07 / 1920);
    max-width: none;
    min-width: calc(100% * 1961.07 / 1920);
    height: auto;
    margin: 0 0 0 calc(-100% * 28.28 / 1920);
    padding: 0;
    border: 0;
    vertical-align: top;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .banner-features {
        margin-top: clamp(-3.75rem, -7.5vw, -1.85rem);
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .banner-features {
        margin-top: clamp(-2.5rem, -5.5vw, -1rem);
    }

    /* Extra crop en móvil por si el SVG aún deja un filo */
    .banner-features__wave-img {
        width: 106%;
        min-width: 106%;
        margin-left: -3%;
    }
}


/* --- CONTACTO HOME --- */
.contacto-home {
    width: 100%;
    background: #04245F;
    padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 6vw, 5.5rem);
}

.contacto-home__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: start;
}

.contacto-home__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 1.25rem;
}

.contacto-home__text p {
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    color: #ffffff;
    line-height: var(--vj-body-line-height);
    margin: 0 0 1rem;
}

.contacto-home__text p:last-child {
    margin-bottom: 0;
}

.contacto-home__divider {
    width: 1px;
    min-width: 1px;
    align-self: stretch;
    margin: 0;
    background: rgba(255, 255, 255, 0.85);
}

.contacto-home__form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contacto-home__field input,
.contacto-home__field textarea {
    width: 100%;
    display: block;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-primary, #1D2343);
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.contacto-home__field textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.contacto-home__field input::placeholder,
.contacto-home__field textarea::placeholder {
    color: #9AA3B5;
}

.contacto-home__field input:focus,
.contacto-home__field textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.contacto-home__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.35rem;
}

.contacto-home__submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary, #1D2343);
    background: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.contacto-home__submit:hover {
    background: #f0f3f8;
    color: var(--color-secondary, #223A8A);
}

.contacto-home__submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .contacto-home__inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contacto-home__divider {
        width: 100%;
        height: 1px;
        min-width: 0;
        margin: 0;
    }

    .contacto-home__title {
        margin-bottom: 1rem;
    }

    .contacto-home__actions {
        justify-content: stretch;
    }

    .contacto-home__submit {
        width: 100%;
    }
}


/* ===== Intro bajo el banner ===== */

.newsroom-intro {
    background: #ffffff;
    padding: clamp(3.25rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-intro__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.newsroom-intro__head {
    text-align: center;
    margin: 0 0 clamp(1.75rem, 3vw, 2.35rem);
}

.newsroom-intro__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #223A8A;
    margin: 0;
}

.newsroom-intro__underline {
    display: block;
    width: clamp(4rem, 7vw, 5.5rem);
    height: 4px;
    background: #223A8A;
    margin: 0.85rem auto 0;
}

.newsroom-intro__body p {
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    line-height: var(--vj-body-line-height);
    color: #4A5568;
    margin: 0 0 1.15rem;
    text-align: center;
}

.newsroom-intro__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .newsroom-intro {
        padding: clamp(2.5rem, 6vw, 3.5rem) 1.25rem;
    }

    .newsroom-intro__title {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    }
}

@media (max-width: 480px) {
    .newsroom-intro {
        padding: 2.25rem 1.1rem;
    }
}

@media (min-width: 2000px) {
    .newsroom-intro {
        padding: 5rem 4rem 5.5rem;
    }

    .newsroom-intro__inner {
        max-width: 1480px;
    }

    .newsroom-intro__head {
        margin-bottom: 3rem;
    }

    .newsroom-intro__title {
        font-size: 2.35rem;
    }

    .newsroom-intro__underline {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }
}

@media (min-width: 2560px) {
    .newsroom-intro {
        padding: 6rem 5rem 6.5rem;
    }

    .newsroom-intro__inner {
        max-width: 1680px;
    }

    .newsroom-intro__title {
        font-size: 2.6rem;
    }
}

/* ===== Últimas noticias ===== */

.newsroom-latest {
    background: #F4F6F8;
    padding: clamp(3rem, 6vw, 5rem) clamp(0.75rem, 2.5vw, 1.75rem);
}

.newsroom-latest__inner {
    max-width: 1480px;
    margin: 0 auto;
}

.newsroom-latest__head {
    text-align: center;
    margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
}

.newsroom-latest__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #223A8A;
    margin: 0;
}

.newsroom-latest__underline {
    display: block;
    width: clamp(4rem, 7vw, 5.5rem);
    height: 4px;
    background: #223A8A;
    margin: 0.85rem auto 0;
}

.newsroom-latest__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.15rem);
    align-items: start;
}

.newsroom-latest .estudios-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(29, 35, 67, 0.12);
    overflow: hidden;
    min-height: clamp(220px, 17vw, 270px);
    line-height: normal;
}

.newsroom-latest .estudios-card__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 100%;
    margin: 0;
    z-index: 1;
    object-fit: cover;
    object-position: center right;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 14%, #000 38%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 14%, #000 38%, #000 100%);
    pointer-events: none;
}

.newsroom-latest .estudios-card--skeleton {
    min-height: 240px;
    background: linear-gradient(90deg, #e8ecf4 25%, #f4f6f8 50%, #e8ecf4 75%);
    background-size: 200% 100%;
    border-radius: 16px;
    box-shadow: none;
}

.newsroom-latest .newsroom-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    line-height: var(--vj-body-line-height);
    color: #5A6478;
    background: #ffffff;
    border: 1px dashed #c5cdd8;
    border-radius: 16px;
}

.newsroom-latest .estudios-card__content {
    position: relative;
    z-index: 2;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: clamp(1.25rem, 2vw, 1.65rem) clamp(1rem, 1.6vw, 1.35rem) clamp(1.25rem, 2vw, 1.65rem) clamp(1.25rem, 2vw, 1.65rem);
    line-height: normal;
    overflow: hidden;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 78%, rgba(255, 255, 255, 0.92) 90%, rgba(255, 255, 255, 0) 100%);
}

.newsroom-latest .estudios-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1.08rem);
    font-weight: 800;
    color: #223A8A;
    line-height: 1.25;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.newsroom-latest .estudios-card__line {
    display: block;
    width: 2.35rem;
    height: 3px;
    background: #223A8A;
    margin: 0.5rem 0 0.6rem;
    flex-shrink: 0;
}

.newsroom-latest .estudios-card__text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    font-weight: 300;
    color: #4A5568;
    line-height: 1.4;
    margin: 0 0 0.9rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.newsroom-latest .estudios-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    background: #1D2343;
    text-decoration: none;
    padding: 0.42rem 0.85rem;
    border-radius: 7px;
    transition: background 0.2s ease;
}

.newsroom-latest .estudios-card__btn:hover {
    background: #223A8A;
    color: #ffffff;
}

.newsroom-latest__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

.newsroom-latest__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    padding: 0.75rem 2.35rem;
    border-radius: 999px;
    background: var(--color-primary, #1D2343);
    color: #ffffff;
    border: 2px solid var(--color-primary, #1D2343);
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-latest__more:hover,
.newsroom-latest__more:focus {
    background: transparent;
    color: var(--color-primary, #1D2343);
}

@media (min-width: 1600px) and (max-width: 1999.98px) {
    .newsroom-latest__inner {
        max-width: 1580px;
    }

    .newsroom-latest .estudios-card {
        min-height: 270px;
    }

    .newsroom-latest .estudios-card__content {
        width: 50%;
        max-width: 50%;
        padding: 1.5rem 1.2rem 1.5rem 1.65rem;
    }

    .newsroom-latest .estudios-card__title {
        font-size: 1.12rem;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 0.95rem;
        padding: 0.45rem 0.95rem;
    }
}

@media (max-width: 1024px) {
    .newsroom-latest__grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
        gap: 1.35rem;
    }

    .newsroom-latest .estudios-card {
        line-height: normal;
        overflow: hidden;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(29, 35, 67, 0.1);
        background: #ffffff;
        padding: 0;
        min-height: 210px;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .newsroom-latest .estudios-card__img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 58%;
        height: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        object-fit: cover;
        object-position: center right;
        transform: none;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 16%, #000 42%, #000 100%);
        mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 16%, #000 42%, #000 100%);
    }

    .newsroom-latest .estudios-card__content {
        position: relative;
        grid-column: 1;
        width: 100%;
        max-width: none;
        padding: 1.4rem 0.85rem 1.45rem 1.25rem;
        overflow: hidden;
        justify-content: center;
        background: linear-gradient(90deg, #ffffff 0%, #ffffff 75%, rgba(255, 255, 255, 0.9) 88%, rgba(255, 255, 255, 0) 100%);
    }

    .newsroom-latest .estudios-card__title {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .newsroom-latest .estudios-card__line {
        margin: 0.45rem 0 0.55rem;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 0.88rem;
        line-height: 1.45;
        margin: 0 0 0.9rem;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 560px) {
    .newsroom-latest {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .newsroom-latest__grid {
        max-width: 100%;
        gap: 1.1rem;
    }

    .newsroom-latest .estudios-card {
        min-height: 200px;
    }

    .newsroom-latest .estudios-card__content {
        width: 58%;
        max-width: 58%;
        padding: 1.2rem 0.7rem 1.25rem 1.05rem;
    }

    .newsroom-latest .estudios-card__img {
        width: 68%;
        right: 0;
        height: 100%;
        top: 0;
        transform: none;
        object-position: center right;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 48%, #000 100%);
        mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 48%, #000 100%);
    }

    .newsroom-latest .estudios-card__title {
        font-size: 0.98rem;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 0.84rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 0.88rem;
        padding: 0.36rem 0.72rem;
    }
}

/* ===== Evolve (dos columnas) ===== */

.newsroom-evolve {
    background: #ffffff;
    padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-evolve__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.newsroom-evolve__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) auto minmax(0, 1.15fr);
    gap: clamp(1.75rem, 3.5vw, 3rem);
    align-items: center;
}

.newsroom-evolve__heading {
    margin: 0;
    text-transform: uppercase;
    color: var(--newsroom-navy);
    line-height: 1.15;
    letter-spacing: 0.06em;
}

.newsroom-evolve__heading-light {
    display: block;
    font-family: var(--newsroom-font);
    font-size: clamp(1.15rem, 2.2vw, 1.75rem);
    font-weight: 400;
}

.newsroom-evolve__heading-bold {
    display: block;
    margin-top: 0.2em;
    font-family: var(--newsroom-font);
    font-size: clamp(1.35rem, 2.6vw, 2.1rem);
    font-weight: 800;
}

.newsroom-evolve__divider {
    width: 1px;
    align-self: stretch;
    min-height: 8rem;
    background: #c5ccd3;
    flex-shrink: 0;
}

.newsroom-evolve__body {
    min-width: 0;
}

.newsroom-evolve__body p {
    font-family: var(--newsroom-font);
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--newsroom-navy);
    margin: 0 0 1rem;
}

.newsroom-evolve__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .newsroom-evolve__grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 3vw, 1.75rem);
    }

    .newsroom-evolve__divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
    }
}

/* ===== Stories (lista de noticias) ===== */

.newsroom-stories {
    background: #F4F4F4;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-stories__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.newsroom-stories__head {
    text-align: center;
    margin: 0 0 clamp(2.25rem, 4vw, 3.25rem);
}

.newsroom-stories__title {
    font-family: var(--newsroom-font);
    font-size: clamp(1.25rem, 2.4vw, 1.85rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--newsroom-navy);
    margin: 0;
}

.newsroom-stories__title strong {
    font-weight: 800;
}

.newsroom-stories__underline {
    display: block;
    width: clamp(3.25rem, 5vw, 4.5rem);
    height: 4px;
    background: var(--newsroom-navy);
    margin: clamp(0.75rem, 1.2vw, 1rem) auto 0;
}

.newsroom-stories__list {
    display: flex;
    flex-direction: column;
}

.newsroom-story {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: clamp(1.35rem, 2.6vw, 2rem);
    align-items: stretch;
    padding: clamp(1.35rem, 2.4vw, 1.75rem) 0;
    border-top: 1px solid #e5e7eb;
}

.newsroom-story:first-child {
    border-top: 0;
    padding-top: 0;
}

.newsroom-story__media {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 21 / 10;
    border-radius: 18px;
    overflow: hidden;
    background: #e5e7eb;
}

.newsroom-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.newsroom-story:hover .newsroom-story__media img {
    transform: scale(1.04);
}

.newsroom-story__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    min-width: 0;
    padding: 0.1rem 0 0.3rem;
    border-bottom: 1px solid #1D2343;
}

.newsroom-story__copy {
    min-width: 0;
    flex: 0 1 auto;
}

.newsroom-story__title {
    font-family: var(--newsroom-font);
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--newsroom-navy);
    margin: 0 0 0.5rem;
    line-height: 1.7;
}

.newsroom-story__text {
    font-family: var(--newsroom-font);
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--newsroom-navy);
    margin: 0;
}

.newsroom-story__read {
    align-self: flex-end;
    margin-top: clamp(0.85rem, 1.5vw, 1.15rem);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--newsroom-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.48rem 1.15rem;
    border-radius: 999px;
    background: var(--newsroom-navy);
    color: #ffffff;
    border: 2px solid var(--newsroom-navy);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.newsroom-story__read:hover,
.newsroom-story__read:focus {
    background: transparent;
    color: var(--newsroom-navy);
}

.newsroom-stories__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

.newsroom-stories__more {
    font-family: var(--newsroom-font);
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 2.35rem;
    border-radius: 999px;
    background: var(--newsroom-navy);
    color: #ffffff;
    border: 2px solid var(--newsroom-navy);
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-stories__more:hover,
.newsroom-stories__more:focus {
    background: transparent;
    color: var(--newsroom-navy);
}

.newsroom-story--skeleton {
    min-height: 140px;
    border-radius: 12px;
    background: linear-gradient(90deg, #ebe9f0 25%, #dddbe5 37%, #ebe9f0 63%);
    background-size: 400% 100%;
    animation: newsroom-shimmer 1.4s ease-in-out infinite;
    border-top: 0;
}

@media (max-width: 720px) {
    .newsroom-story {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .newsroom-story__media {
        max-width: 100%;
        aspect-ratio: 16 / 10;
        height: auto;
        min-height: 0;
    }

    .newsroom-story__body {
        padding-bottom: 0.85rem;
    }

    .newsroom-story__read {
        align-self: flex-end;
    }
}

/* ===== Lead ===== */

.newsroom-lead {
    background: #ffffff;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-lead__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: center;
}

.newsroom-lead__media {
    min-width: 0;
}

.newsroom-lead__media img {
    width: 100%;
    height: auto;
    display: block;
}

.newsroom-lead__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.newsroom-lead__title {
    font-family: var(--newsroom-font);
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--newsroom-navy);
    margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
}

.newsroom-lead__title-line {
    display: block;
}

.newsroom-lead__content p {
    font-family: var(--newsroom-font);
    font-size: clamp(0.92rem, 1.05vw, 1.02rem);
    line-height: 1.7;
    font-weight: 300;
    color: var(--newsroom-navy);
    margin: 0 0 1rem;
}

.newsroom-lead__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .newsroom-lead__inner {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
    }

    .newsroom-lead__media {
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ===== Noticias ===== */

.newsroom-news[hidden] {
    display: none !important;
}

.newsroom-news {
    --news-cyan: #223A8A;
    background: #f3f4f6;
    padding: clamp(3rem, 6vw, 4.75rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-news__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.newsroom-news__head {
    text-align: center;
    margin: 0 0 clamp(2rem, 3.5vw, 2.75rem);
}

.newsroom-news__title {
    font-family: var(--newsroom-font);
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--newsroom-navy);
    margin: 0;
}

.newsroom-news__title strong {
    font-weight: 700;
}

.newsroom-news__underline {
    display: block;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 4px;
    background: var(--newsroom-navy);
    margin: clamp(0.85rem, 1.4vw, 1.15rem) auto 0;
}

.newsroom-news__top:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
    gap: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: clamp(1.35rem, 2.5vw, 1.85rem);
    align-items: stretch;
}

.newsroom-news__top[hidden] {
    display: none !important;
}

.newsroom-brief[hidden] {
    display: none !important;
}

.newsroom-news__featured[hidden] {
    display: none !important;
}

.newsroom-news__top:not([hidden]):has(.newsroom-brief[hidden]) {
    grid-template-columns: 1fr;
}

.newsroom-news__featured {
    display: flex;
    min-height: 340px;
    height: 100%;
}

.newsroom-news__featured .newsroom-featured,
.newsroom-news__featured .newsroom-featured--skeleton {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.newsroom-featured {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.newsroom-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29, 35, 67, 0.15) 0%, rgba(29, 35, 67, 0.78) 100%);
    pointer-events: none;
}

.newsroom-featured__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    font-family: var(--newsroom-font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--news-cyan);
    color: #ffffff;
    padding: 0.4rem 0.75rem;
}

.newsroom-featured__body {
    position: relative;
    z-index: 1;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.newsroom-featured__title {
    font-family: var(--newsroom-font);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    max-width: 18ch;
}

.newsroom-featured__title a {
    color: inherit;
    text-decoration: none;
}

.newsroom-featured__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsroom-featured__tags {
    font-family: var(--newsroom-font);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bfe8f8;
    margin: 0;
}

.newsroom-featured__read {
    display: inline-block;
    font-family: var(--newsroom-font);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.55rem 1.5rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--newsroom-navy);
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-featured__read:hover,
.newsroom-featured__read:focus {
    background: var(--newsroom-navy);
    color: #ffffff;
}

.newsroom-featured--skeleton {
    background: linear-gradient(90deg, #e5e7eb 25%, #d1d5db 37%, #e5e7eb 63%);
    background-size: 400% 100%;
    animation: newsroom-shimmer 1.4s ease-in-out infinite;
}

.newsroom-brief {
    background: #ffffff;
    border-radius: 4px;
    min-height: 340px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.newsroom-brief__inner {
    padding: clamp(1.15rem, 2vw, 1.5rem);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.newsroom-brief__head {
    margin-bottom: 1rem;
}

.newsroom-brief__line {
    display: block;
    width: 2.5rem;
    height: 3px;
    background: var(--newsroom-navy);
    margin-bottom: 0.55rem;
}

.newsroom-brief__title {
    font-family: var(--newsroom-font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--newsroom-navy);
    margin: 0;
}

.newsroom-brief__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newsroom-brief__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.95rem 0;
    border-top: 1px solid #e5e7eb;
    flex: 1 1 auto;
}

.newsroom-brief__item:first-child {
    border-top: 0;
    padding-top: 0.35rem;
}

.newsroom-brief__num {
    font-family: var(--newsroom-font);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
    color: var(--newsroom-navy);
}

.newsroom-brief__cat {
    font-family: var(--newsroom-font);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 0.3rem;
}

.newsroom-brief__link {
    font-family: var(--newsroom-font);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--newsroom-navy);
    text-decoration: none;
}

a.newsroom-brief__link:hover,
a.newsroom-brief__link:focus {
    color: var(--news-cyan);
}

.newsroom-brief--skeleton {
    flex: 1 1 auto;
    min-height: 340px;
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 37%, #f3f4f6 63%);
    background-size: 400% 100%;
    animation: newsroom-shimmer 1.4s ease-in-out infinite;
}

.newsroom-news__grid {
    --newsroom-cols: 3;
    --newsroom-gap: clamp(1rem, 2vw, 1.35rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--newsroom-gap);
}

.newsroom-card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex: 0 0 calc((100% - (var(--newsroom-cols) - 1) * var(--newsroom-gap)) / var(--newsroom-cols));
    max-width: calc((100% - (var(--newsroom-cols) - 1) * var(--newsroom-gap)) / var(--newsroom-cols));
    min-width: 0;
    height: 100%;
    align-self: stretch;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(29, 35, 67, 0.06);
}

.newsroom-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
}

.newsroom-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.newsroom-card:hover .newsroom-card__media img {
    transform: scale(1.04);
}

.newsroom-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: clamp(1.15rem, 1.8vw, 1.45rem) clamp(0.9rem, 1.4vw, 1.15rem) clamp(1.15rem, 1.8vw, 1.45rem);
}

.newsroom-card__title {
    font-family: var(--newsroom-font);
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--newsroom-navy);
    margin: 0;
    width: 100%;
    min-height: calc(1.3em * 3);
    max-height: calc(1.3em * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.newsroom-card__line {
    display: block;
    width: 2.5rem;
    height: 3px;
    background: var(--newsroom-navy);
    margin: 0.85rem auto;
}

.newsroom-card__text {
    font-family: var(--newsroom-font);
    font-size: 0.88rem;
    line-height: 1.55;
    font-weight: 300;
    color: #6b7280;
    margin: 0 0 1.15rem;
    width: 100%;
    min-height: calc(1.55em * 3);
    max-height: calc(1.55em * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.newsroom-card__read {
    display: inline-block;
    margin-top: auto;
    font-family: var(--newsroom-font);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1.35rem;
    border-radius: 999px;
    background: var(--newsroom-navy);
    color: #ffffff;
    border: 2px solid var(--newsroom-navy);
    outline: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsroom-card__read:hover {
    background: transparent;
    border-color: var(--newsroom-navy);
    color: var(--newsroom-navy);
}

.newsroom-card__read:focus {
    outline: none;
}

.newsroom-card__read:focus-visible {
    background: transparent;
    border-color: var(--newsroom-navy);
    color: var(--newsroom-navy);
    box-shadow: 0 0 0 3px rgba(29, 35, 67, 0.18);
}

.newsroom-news__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

.newsroom-news__more {
    font-family: var(--newsroom-font);
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 2.35rem;
    border-radius: 999px;
    background: var(--newsroom-navy);
    color: #ffffff;
    border: 2px solid var(--newsroom-navy);
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-news__more:hover,
.newsroom-news__more:focus {
    background: transparent;
    color: var(--newsroom-navy);
}

.newsroom-empty {
    flex: 1 1 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    text-align: center;
    font-family: var(--newsroom-font);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--newsroom-ink);
    background: #ffffff;
    border: 1px dashed var(--newsroom-border);
}

.newsroom-card--skeleton {
    pointer-events: none;
    min-height: 280px;
    background: linear-gradient(90deg, #ebe9f0 25%, #dddbe5 37%, #ebe9f0 63%);
    background-size: 400% 100%;
    animation: newsroom-shimmer 1.4s ease-in-out infinite;
}

@keyframes newsroom-shimmer {
    from { background-position: 100% 0; }
    to { background-position: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
    .newsroom-card--skeleton,
    .newsroom-featured--skeleton,
    .newsroom-brief--skeleton,
    .newsroom-card__media img {
        animation: none;
        transition: none;
    }
}

.newsroom-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1024px) {
    .newsroom-news__top {
        grid-template-columns: 1fr;
    }

    .newsroom-news__grid {
        --newsroom-cols: 2;
    }
}

@media (max-width: 600px) {
    .newsroom-news__grid {
        --newsroom-cols: 1;
        max-width: 420px;
        margin: 0 auto;
    }

    .newsroom-featured__title {
        max-width: none;
    }
}

/* ===== Tecnología / diagnóstico =====
   Un solo bloque: azul + foto unidos por curva, misma altura, sin hueco */

.newsroom-tech {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.newsroom-tech__inner {
    position: relative;
    width: 100%;
    min-height: clamp(480px, 52vw, 660px);
    background: #04245F;
    overflow: hidden;
}

/* Foto: derecha del bloque, misma altura del contenedor */
.newsroom-tech__photo {
    position: absolute;
    inset: 0 0 0 28%;
    z-index: 1;
    background-color: #04245F;
    background-image: url('/res/img/imagen1@300x.webp');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

/* Texto: más ancho y encima de la curva/foto */
.newsroom-tech__content {
    position: relative;
    z-index: 2;
    width: 62%;
    max-width: none;
    min-height: clamp(480px, 52vw, 660px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4.5vw, 4rem);
    clip-path: none;
    -webkit-clip-path: none;
}

.newsroom-tech__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #ffffff;
    max-width: none;
    width: 100%;
}

.newsroom-tech__underline {
    display: block;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 4px;
    background: #ffffff;
    margin: 0.85rem 0 1.1rem;
    flex-shrink: 0;
}

.newsroom-tech__subtitle {
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(0.88rem, 1.15vw, 1.02rem);
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    max-width: none;
    width: 100%;
}

.newsroom-tech__body {
    width: 100%;
    max-width: none;
}

.newsroom-tech__body p {
    margin: 0 0 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    line-height: var(--vj-body-line-height);
    color: rgba(255, 255, 255, 0.94);
    max-width: none;
    width: 100%;
}

.newsroom-tech__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .newsroom-tech__inner,
    .newsroom-tech__content {
        min-height: clamp(440px, 56vw, 560px);
    }

    .newsroom-tech__photo {
        inset: 0 0 0 24%;
    }

    .newsroom-tech__content {
        width: 66%;
        padding: 1.85rem 1.25rem 1.85rem 1.6rem;
    }

    .newsroom-tech__title {
        font-size: clamp(1.1rem, 2.3vw, 1.35rem);
    }
}

@media (max-width: 900px) {
    .newsroom-tech__inner {
        display: flex;
        flex-direction: column;
        min-height: 0;
        background: #04245F;
    }

    .newsroom-tech__photo {
        display: none;
    }

    .newsroom-tech__content {
        position: relative;
        width: 100%;
        min-height: 0;
        clip-path: none;
        -webkit-clip-path: none;
        padding: clamp(2.25rem, 5vw, 3rem) clamp(1.35rem, 4vw, 2rem);
    }

    .newsroom-tech__title,
    .newsroom-tech__subtitle,
    .newsroom-tech__body p {
        max-width: none;
    }

    .newsroom-tech__title {
        font-size: clamp(1.2rem, 4.2vw, 1.45rem);
    }

    .newsroom-tech__subtitle {
        font-size: clamp(0.88rem, 3.2vw, 1rem);
    }
}

@media (max-width: 768px) {
    .newsroom-tech__content {
        padding: 2rem 1.25rem 2.25rem;
    }

    .newsroom-tech__title {
        font-size: clamp(1.15rem, 5vw, 1.35rem);
    }

    .newsroom-latest__title {
        font-size: clamp(1.15rem, 4.5vw, 1.35rem);
    }
}

@media (max-width: 480px) {
    .newsroom-tech__content {
        padding: 1.75rem 1.1rem 2rem;
    }

    .newsroom-tech__title {
        font-size: 1.12rem;
    }

    .newsroom-tech__subtitle {
        font-size: 0.86rem;
    }

    .newsroom-latest {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* --- ULTRA WIDE (≥2000px / ≥2560px) --- */
@media (min-width: 2000px) {
    .newsroom-latest {
        padding: 5.5rem clamp(2.5rem, 4vw, 5rem) 6.5rem;
    }

    .newsroom-latest__inner {
        max-width: 1760px;
    }

    .newsroom-latest__head {
        margin-bottom: 3.5rem;
    }

    .newsroom-latest__title {
        font-size: 2.35rem;
        letter-spacing: 0.02em;
    }

    .newsroom-latest__underline {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }

    .newsroom-latest__grid {
        gap: 1.65rem;
    }

    .newsroom-latest .estudios-card {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
        min-height: 320px;
    }

    .newsroom-latest .estudios-card__img {
        width: 50%;
    }

    .newsroom-latest .estudios-card__content {
        width: 100%;
        max-width: none;
        padding: 1.75rem 1.5rem 1.75rem 1.85rem;
    }

    .newsroom-latest .estudios-card__title {
        font-size: 1.12rem;
        line-height: 1.3;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .newsroom-latest .estudios-card__line {
        width: 3rem;
        height: 4px;
        margin: 0.55rem 0 0.75rem;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 0.98rem;
        line-height: 1.45;
        margin: 0 0 1.05rem;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 1rem;
        padding: 0.55rem 1.15rem;
        border-radius: 8px;
    }

    .newsroom-latest__more {
        font-size: 1.2rem;
        padding: 0.9rem 2.75rem;
    }

    .newsroom-tech__inner,
    .newsroom-tech__content {
        min-height: 700px;
    }

    .newsroom-tech__content {
        width: 58%;
        padding: 4.5rem 3.5rem 4.5rem 4.5rem;
    }

    .newsroom-tech__photo {
        inset: 0 0 0 30%;
    }

    .newsroom-tech__title {
        font-size: 2.05rem;
    }

    .newsroom-tech__subtitle {
        font-size: 1.28rem;
    }

    .newsroom-tech__underline {
        width: 5.5rem;
        height: 5px;
        margin: 1.1rem 0 1.4rem;
    }

    .newsroom-feature {
        padding: 5rem 0;
    }

    .newsroom-feature__media img {
        min-height: 560px;
    }

    .newsroom-feature__content {
        padding: 4rem 5rem 4rem 3.5rem;
    }

    .newsroom-feature__title {
        font-size: 2.05rem;
        max-width: 34rem;
    }

    .newsroom-feature__underline {
        width: 5.5rem;
        height: 5px;
        margin: 1.1rem 0 1.5rem;
    }

    .newsroom-feature__body p {
        max-width: 40rem;
    }

    .newsroom-feature__cta {
        font-size: 1.15rem;
        padding: 0.9rem 2.1rem;
        margin-top: 2rem;
    }

    .newsroom-topics {
        padding: 5.5rem 4rem 6rem;
    }

    .newsroom-topics__inner {
        max-width: 1680px;
    }

    .newsroom-topics__title {
        font-size: 2.35rem;
    }

    .newsroom-topics__underline {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }

    .newsroom-topics__list {
        gap: 1.35rem;
    }

    .newsroom-topics__item {
        min-height: 5.75rem;
        padding: 1.05rem 1.5rem 1.05rem 1.15rem;
        gap: 1.5rem;
    }

    .newsroom-topics__num {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.35rem;
    }

    .newsroom-topics__item-title {
        font-size: 1.35rem;
    }

    .newsroom-topics__item-desc {
        font-size: 1.2rem;
    }

    .newsroom-topics__btn {
        font-size: 1.15rem;
        padding: 0.7rem 1.65rem;
    }

    .newsroom-highlight {
        padding: 5.5rem 4rem 6rem;
    }

    .newsroom-highlight__inner {
        max-width: 1760px;
    }

    .newsroom-highlight__title {
        font-size: 2.35rem;
    }

    .newsroom-highlight__underline {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }

    .newsroom-highlight .newsroom-card__title {
        font-size: 1.15rem;
    }

    .newsroom-highlight .newsroom-card__text {
        font-size: 1.05rem;
    }

    .contacto-home {
        padding: 5rem 4rem 6rem;
    }

    .contacto-home__inner {
        max-width: 1680px;
        gap: 3.5rem;
    }

    .contacto-home__title {
        font-size: 2.05rem;
        margin-bottom: 1.5rem;
    }

    .contacto-home__form {
        gap: 1rem;
    }

    .contacto-home__field input,
    .contacto-home__field textarea {
        font-size: 1.22rem;
        padding: 1rem 1.25rem;
        border-radius: 14px;
    }

    .contacto-home__field textarea {
        min-height: 8rem;
    }

    .contacto-home__submit {
        font-size: 1.28rem;
        padding: 0.85rem 2rem;
    }
}

@media (min-width: 2560px) {
    .newsroom-latest {
        padding: 6.5rem clamp(3rem, 4.5vw, 6rem) 7.5rem;
    }

    .newsroom-latest__inner {
        max-width: 2100px;
    }

    .newsroom-latest__title {
        font-size: 2.6rem;
    }

    .newsroom-latest .estudios-card {
        min-height: 340px;
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    }

    .newsroom-latest .estudios-card__img {
        width: 48%;
    }

    .newsroom-latest .estudios-card__title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 1.05rem;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 1.08rem;
        padding: 0.6rem 1.25rem;
    }

    .newsroom-latest__more {
        font-size: 1.3rem;
        padding: 1rem 3rem;
    }

    .newsroom-tech__inner,
    .newsroom-tech__content {
        min-height: 780px;
    }

    .newsroom-tech__content {
        width: 56%;
        padding: 5rem 4rem 5rem 5rem;
    }

    .newsroom-tech__photo {
        inset: 0 0 0 32%;
    }

    .newsroom-tech__title {
        font-size: 2.25rem;
    }

    .newsroom-tech__subtitle {
        font-size: 1.4rem;
    }

    .newsroom-feature__media img {
        min-height: 640px;
    }

    .newsroom-feature__content {
        padding: 5rem 6rem 5rem 4rem;
    }

    .newsroom-feature__title {
        font-size: 2.25rem;
        max-width: 38rem;
    }

    .newsroom-feature__cta {
        font-size: 1.25rem;
        padding: 1rem 2.35rem;
    }

    .newsroom-topics {
        padding: 6.5rem 5rem 7rem;
    }

    .newsroom-topics__inner {
        max-width: 1920px;
    }

    .newsroom-topics__title {
        font-size: 2.6rem;
    }

    .newsroom-topics__item {
        min-height: 6.5rem;
        padding: 1.2rem 1.75rem 1.2rem 1.35rem;
    }

    .newsroom-topics__num {
        width: 3.6rem;
        height: 3.6rem;
        font-size: 1.5rem;
    }

    .newsroom-topics__item-title {
        font-size: 1.5rem;
    }

    .newsroom-topics__item-desc {
        font-size: 1.3rem;
    }

    .newsroom-topics__btn {
        font-size: 1.25rem;
        padding: 0.8rem 1.85rem;
    }

    .newsroom-highlight {
        padding: 6.5rem 5rem 7rem;
    }

    .newsroom-highlight__inner {
        max-width: 2100px;
    }

    .newsroom-highlight__title {
        font-size: 2.6rem;
    }

    .newsroom-highlight .newsroom-card__title {
        font-size: 1.25rem;
    }

    .newsroom-highlight .newsroom-card__text {
        font-size: 1.15rem;
    }

    .contacto-home {
        padding: 6rem 5rem 7rem;
    }

    .contacto-home__inner {
        max-width: 1920px;
        gap: 4rem;
    }

    .contacto-home__title {
        font-size: 2.25rem;
    }

    .contacto-home__field input,
    .contacto-home__field textarea {
        font-size: 1.35rem;
        padding: 1.1rem 1.35rem;
    }

    .contacto-home__submit {
        font-size: 1.4rem;
        padding: 0.95rem 2.25rem;
    }
}

/* ===== Anticipate (CTA diagonal) ===== */

.newsroom-anticipate {
    background: #ffffff;
    overflow: hidden;
}

.newsroom-anticipate__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    min-height: clamp(320px, 42vw, 480px);
}

.newsroom-anticipate__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem);
    box-sizing: border-box;
}

.newsroom-anticipate__title {
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    text-transform: uppercase;
    color: var(--newsroom-navy);
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.newsroom-anticipate__title-light {
    display: block;
    font-family: var(--newsroom-font);
    font-size: clamp(1.15rem, 2.2vw, 1.75rem);
    font-weight: 400;
}

.newsroom-anticipate__title-bold {
    display: block;
    margin-top: 0.15em;
    font-family: var(--newsroom-font);
    font-size: clamp(1.35rem, 2.6vw, 2.05rem);
    font-weight: 800;
}

.newsroom-anticipate__text {
    font-family: var(--newsroom-font);
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--newsroom-navy);
    margin: 0 0 clamp(1.35rem, 2.5vw, 1.85rem);
    max-width: 34rem;
}

.newsroom-anticipate__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--newsroom-font);
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    background: var(--newsroom-navy);
    color: #ffffff;
    border: 2px solid var(--newsroom-navy);
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-anticipate__cta:hover,
.newsroom-anticipate__cta:focus {
    background: transparent;
    color: var(--newsroom-navy);
}

.newsroom-anticipate__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.newsroom-anticipate__media img {
    width: 100%;
    height: 100%;
    min-height: clamp(280px, 40vw, 480px);
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .newsroom-anticipate__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .newsroom-anticipate__media {
        clip-path: none;
        min-height: 240px;
        order: -1;
    }

    .newsroom-anticipate__media img {
        min-height: 240px;
        aspect-ratio: 16 / 9;
    }

    .newsroom-anticipate__content {
        padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
    }
}

/* ===== Feature (futuro / newsletter) ===== */

.newsroom-feature {
    background: #ffffff;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
    overflow: hidden;
}

.newsroom-feature__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 0;
    max-width: none;
    margin: 0;
    padding: 0;
}

.newsroom-feature__media {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin-right: clamp(-2.5rem, -4vw, -1.25rem);
}

.newsroom-feature__media img {
    width: 100%;
    height: auto;
    min-height: clamp(320px, 42vw, 520px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.newsroom-feature__content {
    position: relative;
    z-index: 2;
    align-self: center;
    box-sizing: border-box;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.25rem);
    background: #ffffff;
}

.newsroom-feature__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.65rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--newsroom-navy, #1D2343);
    margin: 0;
    text-transform: uppercase;
    max-width: 28rem;
}

.newsroom-feature__underline {
    display: block;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 4px;
    background: var(--newsroom-navy, #1D2343);
    margin: 0.85rem 0 1.25rem;
}

.newsroom-feature__body p {
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    line-height: var(--vj-body-line-height);
    font-weight: 300;
    color: #3a3f4b;
    margin: 0 0 1rem;
    max-width: 34rem;
}

.newsroom-feature__body p:last-child {
    margin-bottom: 0;
}

.newsroom-feature__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.35rem, 2.5vw, 1.85rem);
    padding: 0.75rem 1.65rem;
    border-radius: 999px;
    border: 2px solid var(--newsroom-navy, #1D2343);
    background: var(--newsroom-navy, #1D2343);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1vw, 0.92rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-feature__cta:hover,
.newsroom-feature__cta:focus {
    background: transparent;
    color: var(--newsroom-navy, #1D2343);
}

@media (max-width: 1024px) {
    .newsroom-feature__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    }

    .newsroom-feature__content {
        padding: 1.75rem 1.5rem 1.75rem 1.75rem;
    }
}

@media (max-width: 900px) {
    .newsroom-feature {
        padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
    }

    .newsroom-feature__inner {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2.25rem);
    }

    .newsroom-feature__media {
        margin-right: 0;
    }

    .newsroom-feature__media img {
        min-height: 240px;
        aspect-ratio: 16 / 10;
        border-radius: 0;
    }

    .newsroom-feature__content {
        padding: 0;
    }

    .newsroom-feature__title {
        max-width: none;
        font-size: clamp(1.2rem, 4.2vw, 1.45rem);
    }

    .newsroom-feature__body p {
        max-width: none;
    }
}

/* ===== Novedades / temas ===== */

.newsroom-topics {
    background: #ffffff;
    padding: clamp(3.25rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-topics__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.newsroom-topics__head {
    margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}

.newsroom-topics__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--newsroom-navy, #1D2343);
}

.newsroom-topics__underline {
    display: block;
    width: clamp(3.5rem, 6vw, 5rem);
    height: 4px;
    background: var(--newsroom-navy, #1D2343);
    margin: 0.85rem 0 0;
}

.newsroom-topics__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.newsroom-topics__item {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 1.8vw, 1.35rem);
    box-sizing: border-box;
    min-height: clamp(4.25rem, 6.5vw, 5rem);
    padding: clamp(0.7rem, 1.2vw, 0.9rem) clamp(0.85rem, 1.6vw, 1.25rem) clamp(0.7rem, 1.2vw, 0.9rem) clamp(0.65rem, 1.2vw, 0.9rem);
    background: #E8ECF4;
    border-radius: 999px;
}

.newsroom-topics__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.35rem, 3.2vw, 2.85rem);
    height: clamp(2.35rem, 3.2vw, 2.85rem);
    border-radius: 50%;
    background: var(--newsroom-navy, #1D2343);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.15rem);
    font-weight: 700;
    line-height: 1;
}

.newsroom-topics__text {
    flex: 1 1 auto;
    min-width: 0;
}

.newsroom-topics__item-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.88rem, 1.15vw, 1.05rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--newsroom-navy, #1D2343);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.newsroom-topics__item-desc {
    margin: 0.2rem 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.82rem, 1vw, 0.95rem);
    font-weight: 300;
    line-height: 1.4;
    color: #5A6478;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.newsroom-topics__item--skeleton {
    min-height: 4.5rem;
    background: linear-gradient(90deg, #e8ecf4 25%, #f3f5f9 50%, #e8ecf4 75%);
    background-size: 200% 100%;
    pointer-events: none;
}

.newsroom-topics__empty {
    list-style: none;
    margin: 0;
    padding: 0;
}

.newsroom-topics__empty .newsroom-empty {
    margin: 0;
    padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    font-weight: 300;
    color: #5A6478;
    background: #F4F6F8;
    border-radius: 16px;
}

.newsroom-topics__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: var(--newsroom-navy, #1D2343);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.78rem, 0.95vw, 0.9rem);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 2px solid var(--newsroom-navy, #1D2343);
}

.newsroom-topics__btn:hover,
.newsroom-topics__btn:focus {
    background: transparent;
    color: var(--newsroom-navy, #1D2343);
}

@media (max-width: 768px) {
    .newsroom-topics__item {
        flex-wrap: wrap;
        border-radius: 28px;
        padding: 1rem 1.1rem 1.1rem;
        gap: 0.75rem;
    }

    .newsroom-topics__text {
        flex: 1 1 calc(100% - 3.5rem);
    }

    .newsroom-topics__btn {
        width: 100%;
        margin-left: 0;
        margin-top: 0.15rem;
    }
}

@media (max-width: 480px) {
    .newsroom-topics {
        padding: 2.5rem 1.1rem;
    }

    .newsroom-topics__title {
        font-size: 1.12rem;
    }

    .newsroom-topics__item-title {
        font-size: 0.9rem;
    }

    .newsroom-topics__item-desc {
        font-size: 0.82rem;
    }
}

/* ===== Highlight ===== */

.newsroom-highlight {
    background: var(--newsroom-navy);
    padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
}

.newsroom-highlight[hidden] {
    display: none !important;
}

.newsroom-highlight__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.newsroom-highlight__head {
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.newsroom-highlight__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.newsroom-highlight__title strong {
    font-weight: 800;
}

.newsroom-highlight__underline {
    display: block;
    width: clamp(4rem, 7vw, 5.5rem);
    height: 4px;
    background: #ffffff;
    margin: 0.85rem 0 0;
}

.newsroom-highlight .newsroom-empty {
    flex: 1 1 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: var(--vj-body-size);
    line-height: var(--vj-body-line-height);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 16px;
}

.newsroom-highlight__grid {
    --newsroom-cols: 4;
    --newsroom-gap: clamp(0.9rem, 1.6vw, 1.35rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--newsroom-gap);
}

.newsroom-highlight .newsroom-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsroom-highlight .newsroom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.newsroom-highlight .newsroom-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: 0;
}

.newsroom-highlight .newsroom-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(34, 58, 138, 0.22);
    pointer-events: none;
}

.newsroom-highlight .newsroom-card__body {
    align-items: center;
    text-align: center;
    padding: clamp(1.1rem, 1.6vw, 1.35rem) clamp(0.85rem, 1.3vw, 1.1rem) clamp(1.2rem, 1.8vw, 1.45rem);
}

.newsroom-highlight .newsroom-card__title {
    font-size: clamp(0.82rem, 1.05vw, 0.95rem);
    font-weight: 800;
    line-height: 1.35;
    min-height: calc(1.35em * 3);
    max-height: calc(1.35em * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsroom-highlight .newsroom-card__line {
    width: 2.25rem;
    height: 2px;
    margin: 0.7rem auto 0.85rem;
}

.newsroom-highlight .newsroom-card__text {
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    font-weight: 300;
    line-height: 1.55;
    color: var(--newsroom-navy);
    min-height: calc(1.55em * 3);
    max-height: calc(1.55em * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsroom-highlight .newsroom-card__read {
    font-size: 0.68rem;
    padding: 0.45rem 1.15rem;
}

.newsroom-highlight__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 3.5vw, 2.75rem);
}

.newsroom-highlight__more {
    font-family: var(--newsroom-font);
    font-size: clamp(0.88rem, 1.05vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 2.35rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--newsroom-navy);
    border: 2px solid #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.newsroom-highlight__more:hover,
.newsroom-highlight__more:focus {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .newsroom-highlight__grid {
        --newsroom-cols: 2;
    }
}

@media (max-width: 600px) {
    .newsroom-highlight__grid {
        --newsroom-cols: 1;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* --- ULTRA WIDE overrides (después de estilos base) --- */
@media (min-width: 2000px) {
    .newsroom-latest .estudios-card {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
        min-height: 320px;
    }

    .newsroom-latest .estudios-card__img {
        width: 50%;
    }

    .newsroom-latest .estudios-card__content {
        width: 100%;
        max-width: none;
        padding: 1.75rem 1.5rem 1.75rem 1.85rem;
    }

    .newsroom-latest .estudios-card__title {
        font-size: 1.12rem;
        line-height: 1.3;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 0.98rem;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 1rem;
        padding: 0.55rem 1.15rem;
    }

    .newsroom-feature__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    }

    .newsroom-feature__media {
        margin-right: clamp(-4rem, -5vw, -2rem);
    }

    .newsroom-feature__media img {
        min-height: 580px;
    }

    .newsroom-feature__content {
        padding: 4.5rem clamp(3rem, 5vw, 5.5rem) 4.5rem clamp(2rem, 3vw, 3rem);
    }

    .newsroom-feature__title {
        font-size: 2.15rem;
        max-width: none;
        width: 100%;
    }

    .newsroom-feature__underline {
        width: 5.5rem;
        height: 5px;
        margin: 1.1rem 0 1.5rem;
    }

    .newsroom-feature__body p {
        max-width: none;
        width: 100%;
    }

    .newsroom-feature__cta {
        font-size: 1.2rem;
        padding: 0.95rem 2.2rem;
        margin-top: 2rem;
    }

    .newsroom-topics {
        padding: 5.5rem clamp(3rem, 5vw, 5rem) 6rem;
    }

    .newsroom-topics__inner {
        max-width: 1760px;
    }

    .newsroom-topics__head {
        margin-bottom: 3rem;
    }

    .newsroom-topics__title {
        font-size: 2.35rem;
    }

    .newsroom-topics__underline {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }

    .newsroom-topics__list {
        gap: 1.4rem;
    }

    .newsroom-topics__item {
        min-height: 6rem;
        padding: 1.1rem 1.65rem 1.1rem 1.2rem;
        gap: 1.6rem;
    }

    .newsroom-topics__num {
        width: 3.35rem;
        height: 3.35rem;
        font-size: 1.4rem;
    }

    .newsroom-topics__item-title {
        font-size: 1.4rem;
    }

    .newsroom-topics__item-desc {
        font-size: 1.22rem;
    }

    .newsroom-topics__btn {
        font-size: 1.18rem;
        padding: 0.75rem 1.75rem;
    }

    .newsroom-highlight {
        padding: 5.5rem 4rem 6rem;
    }

    .newsroom-highlight__inner {
        max-width: 1760px;
    }

    .newsroom-highlight__title {
        font-size: 2.35rem;
    }

    .newsroom-highlight__underline {
        width: 6.5rem;
        height: 5px;
        margin-top: 1rem;
    }

    .newsroom-highlight .newsroom-card__title {
        font-size: 1.15rem;
    }

    .newsroom-highlight .newsroom-card__text {
        font-size: 1.05rem;
    }

    .newsroom-highlight__more {
        font-size: 1.15rem;
        padding: 0.9rem 2.75rem;
    }

    .contacto-home {
        padding: 5rem 4rem 6rem;
    }

    .contacto-home__inner {
        max-width: 1680px;
        gap: 3.5rem;
    }

    .contacto-home__title {
        font-size: 2.05rem;
        margin-bottom: 1.5rem;
    }

    .contacto-home__field input,
    .contacto-home__field textarea {
        font-size: 1.22rem;
        padding: 1rem 1.25rem;
        border-radius: 14px;
    }

    .contacto-home__submit {
        font-size: 1.28rem;
        padding: 0.85rem 2rem;
    }
}

@media (min-width: 2560px) {
    .newsroom-latest .estudios-card {
        min-height: 340px;
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    }

    .newsroom-latest .estudios-card__img {
        width: 48%;
    }

    .newsroom-latest .estudios-card__title {
        font-size: 1.2rem;
    }

    .newsroom-latest .estudios-card__text {
        font-size: 1.05rem;
    }

    .newsroom-latest .estudios-card__btn {
        font-size: 1.08rem;
        padding: 0.6rem 1.25rem;
    }

    .newsroom-feature__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    }

    .newsroom-feature__media img {
        min-height: 660px;
    }

    .newsroom-feature__content {
        padding: 5.5rem clamp(4rem, 6vw, 7rem) 5.5rem 3.5rem;
    }

    .newsroom-feature__title {
        font-size: 2.4rem;
    }

    .newsroom-feature__cta {
        font-size: 1.3rem;
        padding: 1.05rem 2.5rem;
    }

    .newsroom-topics {
        padding: 6.5rem clamp(4rem, 5.5vw, 6rem) 7rem;
    }

    .newsroom-topics__inner {
        max-width: 2100px;
    }

    .newsroom-topics__title {
        font-size: 2.6rem;
    }

    .newsroom-topics__item {
        min-height: 6.75rem;
        padding: 1.25rem 1.9rem 1.25rem 1.4rem;
        gap: 1.85rem;
    }

    .newsroom-topics__num {
        width: 3.75rem;
        height: 3.75rem;
        font-size: 1.55rem;
    }

    .newsroom-topics__item-title {
        font-size: 1.55rem;
    }

    .newsroom-topics__item-desc {
        font-size: 1.32rem;
    }

    .newsroom-topics__btn {
        font-size: 1.28rem;
        padding: 0.85rem 2rem;
    }

    .newsroom-highlight {
        padding: 6.5rem 5rem 7rem;
    }

    .newsroom-highlight__inner {
        max-width: 2100px;
    }

    .newsroom-highlight__title {
        font-size: 2.6rem;
    }

    .newsroom-highlight .newsroom-card__title {
        font-size: 1.25rem;
    }

    .newsroom-highlight .newsroom-card__text {
        font-size: 1.15rem;
    }

    .contacto-home {
        padding: 6rem 5rem 7rem;
    }

    .contacto-home__inner {
        max-width: 1920px;
        gap: 4rem;
    }

    .contacto-home__title {
        font-size: 2.25rem;
    }

    .contacto-home__field input,
    .contacto-home__field textarea {
        font-size: 1.35rem;
        padding: 1.1rem 1.35rem;
    }

    .contacto-home__submit {
        font-size: 1.4rem;
        padding: 0.95rem 2.25rem;
    }
}

