/*
Theme component: ARANOX Newsroom
Revision: AW4_016_08_PREMIUM_REV01
*/

/* AW4_016_08_NEWSROOM_PREMIUM_START */

:root{
    --nr-shell:min(100% - 56px,1240px);
    --nr-ink:#061725;
    --nr-muted:#5a7182;
    --nr-paper:#f3f8fa;
    --nr-paper-2:#eaf2f6;
    --nr-dark:#020b12;
    --nr-navy:#061d2a;
    --nr-navy-2:#083248;
    --nr-cyan:#48d5df;
    --nr-blue:#32b2df;
    --nr-orange:#ff922e;
    --nr-line:rgba(7,81,111,.12);
    --nr-dark-line:rgba(110,222,235,.16);
    --nr-radius-xl:36px;
    --nr-radius-lg:28px;
    --nr-radius-md:19px;
    --nr-shadow:
        0 38px 90px rgba(5,36,55,.14),
        0 10px 28px rgba(5,36,55,.07);
    --nr-shadow-dark:
        0 38px 86px rgba(0,0,0,.3),
        inset 0 1px 0 rgba(255,255,255,.035);
}

.newsroom-page,
.newsroom-page *{
    box-sizing:border-box;
}

.newsroom-page{
    overflow:hidden;
    color:var(--nr-ink);
    background:var(--nr-paper);
}

.newsroom-page a{
    color:inherit;
}

.newsroom-shell{
    position:relative;
    z-index:2;
    width:var(--nr-shell);
    margin-inline:auto;
}

.newsroom-featured,
.newsroom-releases,
.newsroom-about,
.newsroom-press{
    position:relative;
    padding:clamp(94px,9vw,144px) 0;
}

.newsroom-heading{
    max-width:960px;
    margin-bottom:52px;
}

.newsroom-heading h2{
    margin:19px 0 0;
    font-size:clamp(2.7rem,5.25vw,5.85rem);
    font-weight:780;
    line-height:.93;
    letter-spacing:-.065em;
    text-wrap:balance;
}

.newsroom-heading--light{
    color:#fff;
}

.newsroom-eyebrow,
.newsroom-kicker{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#0080aa;
    font-size:.72rem;
    font-weight:900;
    line-height:1;
    letter-spacing:.17em;
    text-transform:uppercase;
}

.newsroom-eyebrow::before,
.newsroom-kicker::before{
    content:"";
    width:35px;
    height:2px;
    border-radius:99px;
    background:
        linear-gradient(
            90deg,
            var(--nr-orange),
            var(--nr-blue),
            var(--nr-cyan)
        );
}

.newsroom-heading--light .newsroom-kicker,
.newsroom-hero .newsroom-eyebrow,
.newsroom-themes .newsroom-kicker,
.newsroom-media-center .newsroom-kicker,
.newsroom-metrics .newsroom-kicker{
    color:var(--nr-cyan);
}

/* HERO */

.newsroom-hero{
    position:relative;
    min-height:min(900px,94vh);
    display:grid;
    align-items:center;
    overflow:hidden;
    color:#fff;
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(42,184,220,.23),
            transparent 28%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(47,205,183,.08),
            transparent 31%
        ),
        linear-gradient(
            132deg,
            #020a10,
            #051925 48%,
            #09364b
        );
    isolation:isolate;
}

.newsroom-hero::before{
    content:"";
    position:absolute;
    z-index:-1;
    width:min(78vw,980px);
    aspect-ratio:1;
    right:-23%;
    top:-46%;
    border:1px solid rgba(82,218,231,.12);
    border-radius:50%;
    box-shadow:
        0 0 0 90px rgba(82,218,231,.017),
        0 0 0 180px rgba(82,218,231,.011),
        0 0 120px rgba(48,178,218,.07);
    animation:nrOrbit 28s linear infinite;
}

.newsroom-hero::after{
    content:"";
    position:absolute;
    z-index:-1;
    width:470px;
    height:470px;
    left:-230px;
    bottom:-240px;
    border-radius:50%;
    background:
        radial-gradient(
            circle,
            rgba(53,204,191,.14),
            transparent 69%
        );
    filter:blur(6px);
    animation:nrGlow 8s ease-in-out infinite;
}

.newsroom-hero__mesh{
    position:absolute;
    inset:0;
    z-index:-2;
    opacity:.29;
    background-image:
        linear-gradient(
            rgba(87,217,230,.075) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87,217,230,.075) 1px,
            transparent 1px
        );
    background-size:64px 64px;
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 15% 85%,
            transparent
        );
    animation:nrGrid 25s linear infinite;
}

.newsroom-hero__layout{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(390px,.72fr);
    gap:clamp(62px,7vw,105px);
    align-items:center;
    min-height:inherit;
    padding-block:clamp(105px,10vw,148px);
}

.newsroom-hero__content{
    max-width:900px;
}

.newsroom-hero h1{
    margin:25px 0 25px;
    font-size:clamp(4.8rem,8.3vw,9.1rem);
    font-weight:790;
    line-height:.83;
    letter-spacing:-.085em;
    text-wrap:balance;
}

.newsroom-hero__lead{
    max-width:800px;
    margin:0;
    color:#fff;
    font-size:clamp(1.45rem,2.15vw,2.12rem);
    font-weight:500;
    line-height:1.23;
    letter-spacing:-.025em;
}

.newsroom-hero__text{
    max-width:820px;
    margin:27px 0 0;
    color:rgba(229,247,250,.66);
    font-size:clamp(1rem,1.35vw,1.18rem);
    line-height:1.78;
}

.newsroom-hero__actions,
.newsroom-feature-card__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:39px;
}

.newsroom-button{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 25px;
    overflow:hidden;
    border:1px solid transparent;
    border-radius:999px;
    font-size:.76rem;
    font-weight:900;
    letter-spacing:.07em;
    text-decoration:none;
    text-transform:uppercase;
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease,
        background .28s ease;
}

.newsroom-button::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:0;
    background:
        linear-gradient(
            112deg,
            transparent 23%,
            rgba(255,255,255,.34),
            transparent 70%
        );
    transform:translateX(-130%);
}

.newsroom-button:hover{
    transform:translateY(-3px);
}

.newsroom-button:hover::before{
    opacity:1;
    animation:nrButtonSweep .8s ease;
}

.newsroom-button--primary{
    color:#001620 !important;
    background:
        linear-gradient(
            135deg,
            #68e5e7,
            #31afe1
        );
    box-shadow:
        0 17px 35px rgba(44,181,221,.22),
        inset 0 1px 0 rgba(255,255,255,.46);
}

.newsroom-button--outline{
    color:#eefcff !important;
    border-color:rgba(139,227,238,.25);
    background:rgba(255,255,255,.045);
    backdrop-filter:blur(12px);
}

.newsroom-button--dark{
    color:#fff !important;
    background:
        linear-gradient(
            135deg,
            #061725,
            #0a3449
        );
    box-shadow:0 14px 29px rgba(4,31,47,.18);
}

.newsroom-hero__panel{
    position:relative;
    min-height:510px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:clamp(34px,4vw,49px);
    overflow:hidden;
    border:1px solid rgba(113,225,237,.2);
    border-radius:var(--nr-radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(18,61,80,.78),
            rgba(3,18,28,.86)
        );
    box-shadow:var(--nr-shadow-dark);
    backdrop-filter:blur(20px);
}

.newsroom-hero__panel::before{
    content:"";
    position:absolute;
    inset:20px;
    border:1px solid rgba(115,225,237,.1);
    border-radius:25px;
    pointer-events:none;
}

.newsroom-hero__panel::after{
    content:"";
    position:absolute;
    top:-42%;
    left:-48%;
    width:42%;
    height:190%;
    opacity:.5;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(108,230,239,.13),
            transparent
        );
    transform:skewX(-16deg);
    animation:nrPanelSweep 7.2s ease-in-out infinite;
}

.newsroom-hero__panel-top,
.newsroom-hero__panel-copy,
.newsroom-hero__panel-mark{
    position:relative;
    z-index:2;
}

.newsroom-hero__panel-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
    color:rgba(231,248,251,.58);
    font-size:.68rem;
    font-weight:900;
    letter-spacing:.13em;
    text-transform:uppercase;
}

.newsroom-hero__panel-top strong{
    color:var(--nr-cyan);
}

.newsroom-hero__panel-mark{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:125px;
    margin-block:30px;
    color:transparent;
    font-size:clamp(5rem,8vw,8rem);
    font-weight:900;
    line-height:1;
    letter-spacing:-.07em;
    -webkit-text-stroke:1px rgba(255,255,255,.18);
}

.newsroom-hero__panel-mark img{
    display:block;
    width:min(72%,270px);
    max-width:270px;
    max-height:68px;
    object-fit:contain;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 14px 28px rgba(0,0,0,.32))
        drop-shadow(0 0 18px rgba(69,208,224,.15));
    animation:nrLogoBreath 5.4s ease-in-out infinite;
}

.newsroom-hero__panel-copy span{
    color:var(--nr-cyan);
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.newsroom-hero__panel-copy p{
    max-width:410px;
    margin:16px 0 0;
    color:#fff;
    font-size:clamp(1.5rem,2.2vw,2.18rem);
    line-height:1.08;
    letter-spacing:-.035em;
}

/* DESTAQUE */

.newsroom-featured{
    overflow:hidden;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(48,175,221,.1),
            transparent 29%
        ),
        linear-gradient(
            180deg,
            #f7fafc,
            #edf4f7
        );
}

.newsroom-feature-card{
    position:relative;
    display:grid;
    grid-template-columns:minmax(360px,1.02fr) minmax(0,.98fr);
    min-height:560px;
    overflow:hidden;
    border:1px solid var(--nr-line);
    border-radius:var(--nr-radius-xl);
    background:#fff;
    box-shadow:var(--nr-shadow);
    transition:
        transform .4s cubic-bezier(.2,.7,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}

.newsroom-feature-card:hover{
    transform:translateY(-8px);
    border-color:rgba(43,163,205,.27);
    box-shadow:
        0 49px 105px rgba(5,36,55,.2),
        0 12px 30px rgba(5,36,55,.08);
}

.newsroom-feature-card__media,
.newsroom-card__media{
    position:relative;
    display:block;
    overflow:hidden;
    background:#051722;
}

.newsroom-feature-card__media::after,
.newsroom-card__media::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            180deg,
            transparent 54%,
            rgba(2,14,23,.39)
        );
}

.newsroom-feature-card__media > img,
.newsroom-card__media > img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:
        transform .85s cubic-bezier(.2,.7,.2,1),
        filter .85s ease;
}

.newsroom-feature-card:hover
.newsroom-feature-card__media > img,
.newsroom-card:hover
.newsroom-card__media > img{
    transform:scale(1.055);
    filter:saturate(1.06) contrast(1.025);
}

.newsroom-feature-card__content{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:clamp(38px,5.2vw,74px);
    overflow:hidden;
}

.newsroom-feature-card__content::before{
    content:"";
    position:absolute;
    width:270px;
    height:270px;
    right:-160px;
    top:-150px;
    border:1px solid rgba(42,168,210,.1);
    border-radius:50%;
    box-shadow:
        0 0 0 42px rgba(42,168,210,.018),
        0 0 0 84px rgba(42,168,210,.012);
}

.newsroom-feature-card h3{
    position:relative;
    margin:24px 0 18px;
    font-size:clamp(2.15rem,3.5vw,4.1rem);
    font-weight:780;
    line-height:.97;
    letter-spacing:-.058em;
    text-wrap:balance;
}

.newsroom-feature-card h3 a,
.newsroom-card h3 a{
    text-decoration:none;
    transition:color .25s ease;
}

.newsroom-feature-card h3 a:hover,
.newsroom-card h3 a:hover{
    color:#007fa9;
}

.newsroom-feature-card p{
    position:relative;
    margin:0;
    color:#586f80;
    font-size:1.04rem;
    line-height:1.75;
}

.newsroom-meta{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    color:#61798a;
    font-size:.66rem;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.newsroom-meta > *{
    display:inline-flex;
    align-items:center;
    min-height:29px;
    padding:0 10px;
    border:1px solid rgba(10,94,130,.1);
    border-radius:999px;
    background:rgba(234,243,248,.76);
}

.newsroom-meta span:first-child{
    color:#00749c;
    border-color:rgba(0,140,189,.16);
    background:rgba(31,182,218,.095);
}

.newsroom-text-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#007da8 !important;
    font-size:.78rem;
    font-weight:900;
    letter-spacing:.06em;
    text-decoration:none;
    text-transform:uppercase;
}

.newsroom-text-link span{
    display:inline-grid;
    place-items:center;
    width:31px;
    height:31px;
    border:1px solid rgba(0,125,168,.17);
    border-radius:50%;
    transition:
        transform .28s ease,
        color .28s ease,
        background .28s ease;
}

.newsroom-text-link:hover span{
    color:#fff;
    background:#007da8;
    transform:translate(3px,3px);
}

/* PLACEHOLDERS EDITORIAIS */

.newsroom-media-placeholder{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    padding:clamp(28px,4vw,42px);
    overflow:hidden;
    color:#fff;
    background:
        radial-gradient(
            circle at 73% 22%,
            rgba(0,188,231,.4),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #04121b,
            #0a344a
        );
}

.newsroom-media-placeholder::before,
.newsroom-media-placeholder::after{
    content:"";
    position:absolute;
    border:1px solid rgba(104,226,239,.16);
    border-radius:50%;
}

.newsroom-media-placeholder::before{
    width:65%;
    aspect-ratio:1;
    top:8%;
    right:-12%;
    animation:nrOrbit 23s linear infinite;
}

.newsroom-media-placeholder::after{
    width:41%;
    aspect-ratio:1;
    top:19%;
    right:0;
    border-style:dashed;
    animation:nrOrbitReverse 17s linear infinite;
}

.newsroom-media-placeholder i,
.newsroom-media-placeholder b,
.newsroom-media-placeholder em{
    position:relative;
    z-index:3;
    font-style:normal;
}

.newsroom-media-placeholder i{
    margin-bottom:auto;
    color:var(--nr-cyan);
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.17em;
}

.newsroom-media-placeholder i img,
.newsroom-media-placeholder__logo{
    display:block;
    width:min(44%,230px);
    max-width:230px;
    max-height:64px;
    object-fit:contain;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 13px 27px rgba(0,0,0,.32));
}

.newsroom-media-placeholder b{
    max-width:340px;
    font-size:clamp(2.35rem,4vw,4.4rem);
    font-weight:800;
    line-height:.84;
    letter-spacing:-.057em;
}

.newsroom-media-placeholder em{
    margin-top:17px;
    color:rgba(230,248,251,.59);
    font-size:.63rem;
    font-weight:850;
    letter-spacing:.14em;
}

/* TEMAS */

.newsroom-themes{
    position:relative;
    overflow:hidden;
    padding:clamp(94px,9vw,144px) 0;
    color:#fff;
    background:
        radial-gradient(
            circle at 15% 23%,
            rgba(44,169,207,.14),
            transparent 25%
        ),
        radial-gradient(
            circle at 88% 78%,
            rgba(42,205,180,.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #030e15,
            #071d2a 48%,
            #082e40
        );
}

.newsroom-themes::before,
.newsroom-media-center::before,
.newsroom-metrics::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.24;
    pointer-events:none;
    background-image:
        linear-gradient(
            rgba(87,215,228,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(87,215,228,.07) 1px,
            transparent 1px
        );
    background-size:58px 58px;
}

.newsroom-themes__grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:21px;
    border:0;
}

.newsroom-themes__grid article{
    position:relative;
    min-height:275px;
    padding:32px;
    overflow:hidden;
    border:1px solid rgba(116,222,235,.14);
    border-radius:var(--nr-radius-lg);
    color:#fff;
    background:
        linear-gradient(
            145deg,
            rgba(17,60,79,.72),
            rgba(5,24,36,.86)
        );
    box-shadow:
        0 25px 55px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.025);
    transition:
        transform .34s cubic-bezier(.2,.7,.2,1),
        border-color .34s ease,
        box-shadow .34s ease;
}

.newsroom-themes__grid article::before{
    content:"";
    position:absolute;
    top:-35%;
    left:-60%;
    width:40%;
    height:180%;
    opacity:.4;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(104,231,239,.12),
            transparent
        );
    transform:skewX(-15deg);
}

.newsroom-themes__grid article:hover{
    transform:translateY(-9px);
    border-color:rgba(116,222,235,.34);
    box-shadow:
        0 36px 72px rgba(0,0,0,.32),
        0 0 32px rgba(51,190,217,.07);
}

.newsroom-themes__grid article:hover::before{
    animation:nrCardSweep .9s ease;
}

.newsroom-themes__grid article > span{
    position:relative;
    z-index:2;
    display:inline-grid;
    place-items:center;
    width:44px;
    height:44px;
    border:1px solid rgba(84,220,233,.18);
    border-radius:14px;
    color:var(--nr-cyan);
    background:rgba(65,198,215,.07);
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.12em;
}

.newsroom-themes__grid h3{
    position:relative;
    z-index:2;
    margin:43px 0 13px;
    font-size:1.52rem;
    font-weight:760;
    letter-spacing:-.035em;
}

.newsroom-themes__grid p{
    position:relative;
    z-index:2;
    margin:0;
    color:rgba(231,246,250,.59);
    line-height:1.7;
}

/* COMUNICADOS */

.newsroom-releases{
    overflow:hidden;
    background:
        radial-gradient(
            circle at 9% 14%,
            rgba(45,167,224,.075),
            transparent 25%
        ),
        #f5f9fb;
}

.newsroom-releases__top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:44px;
    margin-bottom:50px;
}

.newsroom-releases__top .newsroom-heading{
    margin-bottom:0;
}

.newsroom-filter{
    display:grid;
    grid-template-columns:minmax(190px,1fr) minmax(175px,.8fr) auto;
    gap:9px;
    width:min(100%,620px);
    padding:10px;
    border:1px solid rgba(11,94,129,.11);
    border-radius:23px;
    background:rgba(255,255,255,.88);
    box-shadow:
        0 20px 50px rgba(6,37,57,.085),
        inset 0 1px 0 rgba(255,255,255,.85);
    backdrop-filter:blur(12px);
}

.newsroom-filter label{
    min-width:0;
}

.newsroom-filter input,
.newsroom-filter select,
.newsroom-filter button{
    width:100%;
    min-height:53px;
    border:1px solid rgba(14,83,113,.12);
    border-radius:15px;
    padding:0 16px;
    color:var(--nr-ink);
    background:#f4f8fa;
    font:inherit;
    outline:none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        transform .25s ease;
}

.newsroom-filter input:focus,
.newsroom-filter select:focus{
    border-color:rgba(0,150,202,.5);
    background:#fff;
    box-shadow:0 0 0 4px rgba(27,172,216,.1);
}

.newsroom-filter button{
    min-width:110px;
    border-color:transparent;
    color:#001621;
    background:
        linear-gradient(
            135deg,
            #61e1e4,
            #31afe0
        );
    font-size:.73rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    cursor:pointer;
    box-shadow:0 10px 22px rgba(42,167,209,.16);
}

.newsroom-filter button:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 29px rgba(42,167,209,.25);
}

.newsroom-releases__grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px;
}

.newsroom-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    border:1px solid rgba(10,82,113,.1);
    border-radius:var(--nr-radius-lg);
    background:#fff;
    box-shadow:
        0 20px 46px rgba(5,36,56,.075),
        inset 0 1px 0 rgba(255,255,255,.8);
    transition:
        transform .34s cubic-bezier(.2,.7,.2,1),
        box-shadow .34s ease,
        border-color .34s ease;
}

.newsroom-card:hover{
    transform:translateY(-9px);
    border-color:rgba(26,159,205,.25);
    box-shadow:
        0 36px 75px rgba(5,36,56,.15),
        0 10px 24px rgba(5,36,56,.06);
}

.newsroom-card__media{
    aspect-ratio:16/10;
}

.newsroom-card__body{
    position:relative;
    display:flex;
    flex:1;
    flex-direction:column;
    padding:27px;
}

.newsroom-card__body::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    right:-76px;
    bottom:-76px;
    border:1px solid rgba(33,164,206,.08);
    border-radius:50%;
}

.newsroom-card h3{
    position:relative;
    margin:20px 0 13px;
    font-size:1.42rem;
    font-weight:760;
    line-height:1.12;
    letter-spacing:-.035em;
}

.newsroom-card p{
    position:relative;
    margin:0;
    color:#5e7182;
    line-height:1.68;
}

.newsroom-card footer{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:auto;
    padding-top:26px;
    color:#718290;
    font-size:.74rem;
    font-weight:800;
}

.newsroom-card footer a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#007da9;
    text-decoration:none;
}

.newsroom-card footer a > span{
    display:inline-grid;
    place-items:center;
    width:26px;
    height:26px;
    border:1px solid rgba(0,125,169,.15);
    border-radius:50%;
    transition:
        transform .25s ease,
        color .25s ease,
        background .25s ease;
}

.newsroom-card footer a:hover > span{
    color:#fff;
    background:#007da9;
    transform:translate(2px,-2px);
}

.newsroom-pagination ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    margin:54px 0 0;
    padding:0;
    list-style:none;
}

.newsroom-pagination .page-numbers{
    display:inline-grid;
    place-items:center;
    min-width:45px;
    min-height:45px;
    padding:0 13px;
    border:1px solid rgba(10,83,115,.12);
    border-radius:14px;
    color:#304b5e;
    background:#fff;
    box-shadow:0 8px 20px rgba(5,37,57,.05);
    font-size:.78rem;
    font-weight:850;
    text-decoration:none;
}

.newsroom-pagination .current{
    color:#001621;
    border-color:transparent;
    background:
        linear-gradient(
            135deg,
            #62e2e5,
            #32b0e0
        );
}

.newsroom-empty{
    padding:70px 34px;
    border:1px solid var(--nr-line);
    border-radius:var(--nr-radius-xl);
    text-align:center;
    background:#fff;
    box-shadow:var(--nr-shadow);
}

.newsroom-empty > span{
    color:#007da9;
    font-size:.71rem;
    font-weight:900;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.newsroom-empty h3{
    margin:18px 0 12px;
    font-size:2.15rem;
    letter-spacing:-.04em;
}

.newsroom-empty p{
    max-width:650px;
    margin:0 auto 28px;
    color:var(--nr-muted);
}

/* MEDIA CENTER — ESTRUTURA ORIGINAL E ATUAL */

.newsroom-media-center{
    position:relative;
    overflow:hidden;
    padding:clamp(94px,9vw,144px) 0;
    color:#fff;
    background:
        radial-gradient(
            circle at 84% 17%,
            rgba(51,191,221,.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 14% 82%,
            rgba(40,207,182,.08),
            transparent 28%
        ),
        linear-gradient(
            132deg,
            #030e16,
            #071f2e 52%,
            #0a354a
        );
}

.newsroom-media-center__intro{
    max-width:820px;
    margin:25px 0 0;
    color:rgba(230,247,251,.63);
    font-size:1.03rem;
    line-height:1.75;
}

.newsroom-media-center__grid,
.newsroom-media-center__grid--premium{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
    margin-top:52px;
    border:0;
}

.newsroom-media-center__grid > article,
.newsroom-media-resource{
    position:relative;
    min-height:245px;
    padding:30px;
    overflow:hidden;
    border:1px solid rgba(108,222,235,.15);
    border-radius:var(--nr-radius-lg);
    color:#fff;
    background:
        linear-gradient(
            145deg,
            rgba(18,65,84,.76),
            rgba(5,24,36,.88)
        );
    box-shadow:var(--nr-shadow-dark);
    transition:
        transform .34s cubic-bezier(.2,.7,.2,1),
        border-color .34s ease,
        box-shadow .34s ease;
}

.newsroom-media-center__grid > article{
    display:grid;
    grid-template-columns:90px minmax(0,1fr);
    grid-template-rows:1fr auto;
    gap:20px 25px;
}

.newsroom-media-resource{
    display:grid;
    grid-template-columns:145px minmax(0,1fr);
    gap:27px;
}

.newsroom-media-center__grid > article::before,
.newsroom-media-resource::before{
    content:"";
    position:absolute;
    top:-35%;
    left:-55%;
    width:36%;
    height:175%;
    opacity:.4;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(99,231,240,.13),
            transparent
        );
    transform:skewX(-16deg);
}

.newsroom-media-center__grid > article:hover,
.newsroom-media-resource:hover{
    transform:translateY(-8px);
    border-color:rgba(108,222,235,.34);
    box-shadow:
        0 38px 75px rgba(0,0,0,.32),
        0 0 34px rgba(47,188,218,.07);
}

.newsroom-media-center__grid > article:hover::before,
.newsroom-media-resource:hover::before{
    animation:nrCardSweep .9s ease;
}

.newsroom-media-center__grid > article > span{
    position:relative;
    z-index:2;
    display:grid;
    place-items:center;
    width:76px;
    height:76px;
    border:1px solid rgba(99,221,234,.14);
    border-radius:22px;
    color:var(--nr-cyan);
    background:rgba(3,20,31,.43);
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.12em;
}

.newsroom-media-center__grid > article > div{
    position:relative;
    z-index:2;
}

.newsroom-media-center__grid h3,
.newsroom-media-resource__content h3{
    margin:4px 0 13px;
    color:#fff;
    font-size:1.52rem;
    line-height:1.1;
    letter-spacing:-.035em;
}

.newsroom-media-center__grid p,
.newsroom-media-resource__content p{
    margin:0;
    color:rgba(229,246,250,.59);
    line-height:1.67;
}

.newsroom-media-center__grid > article > em{
    position:relative;
    z-index:2;
    grid-column:2;
    color:var(--nr-cyan);
    font-size:.68rem;
    font-style:normal;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
}

.newsroom-media-resource__identity{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:180px;
    padding:18px;
    border:1px solid rgba(99,221,234,.13);
    border-radius:21px;
    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(45,177,207,.16),
            transparent 63%
        ),
        rgba(3,20,31,.45);
}

.newsroom-media-resource__identity img{
    display:block;
    width:min(90%,125px);
    max-width:125px;
    max-height:40px;
    object-fit:contain;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 10px 20px rgba(0,0,0,.28));
}

.newsroom-media-resource__identity span{
    margin-top:24px;
    color:var(--nr-cyan);
    font-size:.6rem;
    font-weight:900;
    letter-spacing:.15em;
}

.newsroom-media-resource__content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    min-width:0;
}

.newsroom-media-resource__content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    align-self:flex-start;
    margin-top:auto;
    padding-top:23px;
    color:#58d8e3;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.08em;
    text-decoration:none;
    text-transform:uppercase;
}

.newsroom-media-resource__content a span{
    display:inline-grid;
    place-items:center;
    width:30px;
    height:30px;
    border:1px solid rgba(88,216,227,.19);
    border-radius:50%;
    transition:
        transform .26s ease,
        color .26s ease,
        background .26s ease;
}

.newsroom-media-resource__content a:hover span{
    color:#03151f;
    background:#58d8e3;
    transform:translate(3px,-3px);
}

/* SOBRE */

.newsroom-about{
    overflow:hidden;
    background:
        radial-gradient(
            circle at 88% 22%,
            rgba(39,175,217,.1),
            transparent 27%
        ),
        #fff;
}

.newsroom-about::before{
    content:"";
    position:absolute;
    width:560px;
    height:560px;
    right:-310px;
    top:-320px;
    border:1px solid rgba(3,130,177,.08);
    border-radius:50%;
    box-shadow:
        0 0 0 70px rgba(3,130,177,.018),
        0 0 0 140px rgba(3,130,177,.012);
}

.newsroom-about__layout{
    display:grid;
    grid-template-columns:.3fr 1fr;
    gap:clamp(45px,7vw,90px);
    align-items:start;
}

.newsroom-about__mark{
    position:relative;
    display:grid;
    place-items:center;
    min-height:210px;
    padding:28px;
    border:1px solid var(--nr-line);
    border-radius:var(--nr-radius-xl);
    color:transparent;
    background:
        linear-gradient(
            145deg,
            #04121c,
            #0a344a
        );
    box-shadow:var(--nr-shadow);
    font-size:clamp(3.8rem,7vw,7rem);
    font-weight:900;
    letter-spacing:-.07em;
    -webkit-text-stroke:1px rgba(89,217,230,.24);
}

.newsroom-about__mark img{
    display:block;
    width:min(80%,245px);
    max-width:245px;
    max-height:70px;
    object-fit:contain;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 14px 26px rgba(0,0,0,.3));
}

.newsroom-about__layout > div:last-child{
    position:relative;
    max-width:900px;
    padding:clamp(34px,5vw,66px);
    border:1px solid var(--nr-line);
    border-radius:var(--nr-radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(239,247,250,.92)
        );
    box-shadow:var(--nr-shadow);
}

.newsroom-about__layout > div:last-child::before{
    content:"";
    position:absolute;
    left:0;
    top:42px;
    bottom:42px;
    width:3px;
    border-radius:99px;
    background:
        linear-gradient(
            180deg,
            var(--nr-orange),
            var(--nr-blue),
            var(--nr-cyan)
        );
}

.newsroom-about h2{
    margin:18px 0 24px;
    font-size:clamp(2.65rem,4.9vw,5.45rem);
    font-weight:780;
    line-height:.93;
    letter-spacing:-.065em;
    text-wrap:balance;
}

.newsroom-about p{
    color:#566d7e;
    font-size:1.03rem;
    line-height:1.76;
}

/* MÉTRICAS */

.newsroom-metrics{
    position:relative;
    overflow:hidden;
    padding:clamp(94px,9vw,144px) 0;
    color:#fff;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(55,200,218,.18),
            transparent 28%
        ),
        linear-gradient(
            126deg,
            #030d15,
            #071f2e 53%,
            #0a354a
        );
}

.newsroom-metrics__grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    border:0;
}

.newsroom-metrics__grid article{
    position:relative;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:29px;
    overflow:hidden;
    border:1px solid rgba(111,222,234,.15);
    border-radius:var(--nr-radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(18,64,83,.72),
            rgba(5,24,36,.86)
        );
    box-shadow:
        0 25px 52px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.025);
    transition:
        transform .32s ease,
        border-color .32s ease;
}

.newsroom-metrics__grid article::before{
    content:"";
    position:absolute;
    width:145px;
    height:145px;
    right:-90px;
    top:-90px;
    border:1px solid rgba(78,216,230,.13);
    border-radius:50%;
    box-shadow:0 0 0 30px rgba(78,216,230,.018);
}

.newsroom-metrics__grid article:hover{
    transform:translateY(-8px);
    border-color:rgba(111,222,234,.34);
}

.newsroom-metrics__grid strong{
    position:relative;
    z-index:2;
    color:#fff;
    font-size:clamp(3.2rem,5vw,5.8rem);
    font-weight:800;
    line-height:.85;
    letter-spacing:-.06em;
}

.newsroom-metrics__grid span{
    position:relative;
    z-index:2;
    max-width:195px;
    margin-top:21px;
    color:rgba(231,247,250,.58);
    line-height:1.55;
}

/* IMPRENSA — APENAS DESIGN */

.newsroom-press{
    overflow:hidden;
    background:
        radial-gradient(
            circle at 91% 12%,
            rgba(41,176,217,.09),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #f7fafb,
            #edf4f7
        );
}

.newsroom-press__layout{
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:clamp(60px,8vw,105px);
    align-items:center;
}

.newsroom-press h2{
    margin:18px 0 24px;
    font-size:clamp(2.75rem,5vw,5.55rem);
    font-weight:780;
    line-height:.93;
    letter-spacing:-.065em;
    text-wrap:balance;
}

.newsroom-press p{
    color:#5a7081;
    font-size:1.04rem;
    line-height:1.76;
}

.newsroom-email{
    display:inline-block;
    margin-top:32px;
    color:#0095c6 !important;
    font-size:clamp(1.35rem,2.35vw,2.25rem);
    font-weight:800;
    letter-spacing:-.035em;
    text-decoration:none;
    transition:transform .25s ease;
}

.newsroom-email:hover{
    transform:translateX(4px);
}

.newsroom-press__form{
    position:relative;
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    padding:clamp(28px,4.5vw,48px);
    overflow:hidden;
    border:1px solid var(--nr-line);
    border-radius:var(--nr-radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.97),
            rgba(239,247,250,.94)
        );
    box-shadow:var(--nr-shadow);
}

.newsroom-press__form::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-135px;
    top:-135px;
    border:1px solid rgba(38,165,208,.1);
    border-radius:50%;
    box-shadow:0 0 0 38px rgba(38,165,208,.018);
}

.newsroom-press__form label{
    position:relative;
    z-index:2;
    margin-top:10px;
    color:#143044;
    font-size:.7rem;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
}

.newsroom-press__form input{
    position:relative;
    z-index:2;
    width:100%;
    min-height:58px;
    padding:0 17px;
    border:1px solid rgba(10,82,113,.14);
    border-radius:15px;
    color:var(--nr-ink);
    background:#fff;
    font:inherit;
    outline:none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.newsroom-press__form input:focus{
    border-color:rgba(0,150,202,.5);
    background:#fff;
    box-shadow:0 0 0 4px rgba(27,172,216,.1);
}

.newsroom-press__form button{
    position:relative;
    z-index:2;
    width:100%;
    min-height:58px;
    margin-top:14px;
    border:0;
    border-radius:15px;
    color:#00151f;
    background:
        linear-gradient(
            135deg,
            #66e5e6,
            #30afe1
        );
    font-size:.76rem;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    cursor:pointer;
    box-shadow:0 13px 28px rgba(43,181,221,.18);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.newsroom-press__form button:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 36px rgba(43,181,221,.27);
}

/* REVEAL */

[data-newsroom-reveal]{
    opacity:0;
    transform:
        translate3d(0,34px,0)
        scale(.985);
    transition:
        opacity .78s ease,
        transform .78s cubic-bezier(.2,.7,.2,1);
    transition-delay:var(--newsroom-delay,0ms);
}

[data-newsroom-reveal].is-visible{
    opacity:1;
    transform:none;
}

/* ANIMAÇÕES */

@keyframes nrGrid{
    from{
        background-position:0 0,0 0;
    }

    to{
        background-position:64px 64px,64px 64px;
    }
}

@keyframes nrOrbit{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes nrOrbitReverse{
    from{
        transform:rotate(360deg);
    }

    to{
        transform:rotate(0deg);
    }
}

@keyframes nrGlow{
    0%,
    100%{
        opacity:.4;
        transform:scale(.95);
    }

    50%{
        opacity:.85;
        transform:scale(1.08);
    }
}

@keyframes nrButtonSweep{
    from{
        transform:translateX(-130%);
    }

    to{
        transform:translateX(150%);
    }
}

@keyframes nrPanelSweep{
    0%,
    20%{
        left:-48%;
    }

    64%,
    100%{
        left:130%;
    }
}

@keyframes nrLogoBreath{
    0%,
    100%{
        opacity:.9;
        transform:scale(.98);
    }

    50%{
        opacity:1;
        transform:scale(1.025);
    }
}

@keyframes nrCardSweep{
    from{
        left:-60%;
    }

    to{
        left:130%;
    }
}

/* RESPONSIVIDADE */

@media (max-width:1100px){

    .newsroom-hero{
        min-height:auto;
    }

    .newsroom-hero__layout,
    .newsroom-press__layout{
        grid-template-columns:1fr;
    }

    .newsroom-hero__layout{
        gap:52px;
        padding-block:105px;
    }

    .newsroom-hero__panel{
        max-width:720px;
    }

    .newsroom-feature-card{
        grid-template-columns:1fr;
    }

    .newsroom-feature-card__media{
        min-height:410px;
    }

    .newsroom-themes__grid,
    .newsroom-releases__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .newsroom-releases__top{
        align-items:stretch;
        flex-direction:column;
    }

    .newsroom-filter{
        width:100%;
    }

    .newsroom-media-center__grid,
    .newsroom-media-center__grid--premium{
        grid-template-columns:1fr;
    }

    .newsroom-about__layout{
        grid-template-columns:1fr;
    }

    .newsroom-about__mark{
        max-width:430px;
    }

    .newsroom-metrics__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:760px){

    :root{
        --nr-shell:min(100% - 30px,1240px);
        --nr-radius-xl:28px;
        --nr-radius-lg:23px;
    }

    .newsroom-featured,
    .newsroom-releases,
    .newsroom-about,
    .newsroom-press,
    .newsroom-themes,
    .newsroom-media-center,
    .newsroom-metrics{
        padding:80px 0;
    }

    .newsroom-hero__layout{
        padding-block:82px;
    }

    .newsroom-hero h1{
        font-size:clamp(4rem,18vw,6.4rem);
    }

    .newsroom-hero__actions,
    .newsroom-feature-card__actions{
        align-items:stretch;
        flex-direction:column;
    }

    .newsroom-button{
        width:100%;
    }

    .newsroom-hero__panel{
        min-height:440px;
        padding:30px 25px;
    }

    .newsroom-feature-card__media{
        min-height:285px;
    }

    .newsroom-feature-card__content{
        padding:35px 25px;
    }

    .newsroom-themes__grid,
    .newsroom-releases__grid,
    .newsroom-metrics__grid{
        grid-template-columns:1fr;
    }

    .newsroom-filter{
        grid-template-columns:1fr;
        padding:9px;
    }

    .newsroom-media-resource{
        grid-template-columns:1fr;
        padding:23px;
    }

    .newsroom-media-resource__identity{
        min-height:135px;
    }

    .newsroom-media-center__grid > article{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .newsroom-media-center__grid > article > em{
        grid-column:1;
    }

    .newsroom-about__layout > div:last-child{
        padding:35px 27px;
    }

    .newsroom-press__form{
        padding:29px 23px;
    }

    .newsroom-heading h2,
    .newsroom-about h2,
    .newsroom-press h2{
        font-size:clamp(2.45rem,13vw,3.75rem);
    }
}

@media (max-width:430px){

    :root{
        --nr-shell:min(100% - 24px,1240px);
    }

    .newsroom-hero h1{
        font-size:clamp(3.65rem,19vw,5.1rem);
    }

    .newsroom-hero__lead{
        font-size:1.3rem;
    }

    .newsroom-feature-card h3{
        font-size:2rem;
    }

    .newsroom-card__body{
        padding:23px;
    }
}

/* ACESSIBILIDADE */

@media (prefers-reduced-motion:reduce){

    [data-newsroom-reveal]{
        opacity:1;
        transform:none;
        transition:none;
    }

    .newsroom-hero::before,
    .newsroom-hero::after,
    .newsroom-hero__mesh,
    .newsroom-button::before,
    .newsroom-hero__panel::after,
    .newsroom-hero__panel-mark img,
    .newsroom-media-placeholder::before,
    .newsroom-media-placeholder::after,
    .newsroom-themes__grid article::before,
    .newsroom-media-center__grid > article::before,
    .newsroom-media-resource::before{
        animation:none !important;
    }

    .newsroom-button,
    .newsroom-feature-card,
    .newsroom-card,
    .newsroom-themes__grid article,
    .newsroom-media-center__grid > article,
    .newsroom-media-resource,
    .newsroom-metrics__grid article,
    .newsroom-feature-card__media > img,
    .newsroom-card__media > img{
        transition:none !important;
    }
}

/* AW4_016_08_NEWSROOM_PREMIUM_END */

/* AW4_016_09_NEWSROOM_LOGOS_E_SOBRE_START */

/*
 * Cards dos recursos institucionais
 * - logotipo colorido;
 * - logotipo maior e elevado;
 * - identificação vertical;
 * - separação física entre texto e imagem.
 */

.newsroom-media-resource__identity{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    min-height:220px;
    padding:24px 13px 18px;
    overflow:hidden;
    border:1px solid rgba(99,221,234,.15);
    border-radius:23px;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(63,194,218,.18),
            transparent 48%
        ),
        linear-gradient(
            180deg,
            rgba(9,45,61,.92),
            rgba(3,25,37,.78)
        );
}

.newsroom-media-resource__identity::before{
    content:"";
    position:absolute;
    width:115px;
    height:115px;
    top:-67px;
    right:-65px;
    border:1px solid rgba(76,211,227,.1);
    border-radius:50%;
    pointer-events:none;
}

.newsroom-media-resource__identity img{
    position:relative;
    z-index:2;
    display:block;
    width:min(100%,155px);
    max-width:155px;
    height:auto;
    max-height:54px;
    margin:9px auto 0;
    object-fit:contain;
    filter:none !important;
    opacity:1;
    transform:none;
}

.newsroom-media-resource__identity span{
    position:absolute;
    z-index:2;
    left:50%;
    bottom:17px;
    display:block;
    max-height:112px;
    margin:0;
    color:#55dce5;
    font-size:.62rem;
    font-weight:900;
    line-height:1;
    letter-spacing:.16em;
    text-align:center;
    text-transform:uppercase;
    white-space:nowrap;
    writing-mode:vertical-rl;
    text-orientation:mixed;
    transform:
        translateX(-50%)
        rotate(180deg);
}

/*
 * Mantém distância mínima entre o logotipo e a identificação vertical.
 */

.newsroom-media-resource__identity img + span{
    top:96px;
    bottom:auto;
    height:105px;
}

/*
 * Bloco Sobre a ARANOX
 * - painel esquerdo vertical;
 * - altura alinhada ao painel textual;
 * - logotipo colorido sem filtro;
 * - composição mais estreita e proporcional.
 */

.newsroom-about__layout{
    display:grid;
    grid-template-columns:minmax(250px,.38fr) minmax(0,1fr);
    gap:clamp(34px,4.5vw,62px);
    align-items:stretch;
}

.newsroom-about__mark{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:none;
    min-height:610px;
    padding:42px 29px;
    overflow:hidden;
    border:1px solid rgba(7,104,139,.16);
    border-radius:36px;
    color:transparent;
    background:
        radial-gradient(
            circle at 50% 22%,
            rgba(45,181,214,.18),
            transparent 37%
        ),
        linear-gradient(
            180deg,
            #071f2d,
            #0a3a4f
        );
    box-shadow:
        0 38px 90px rgba(5,36,55,.16),
        inset 0 1px 0 rgba(255,255,255,.035);
    font-size:0;
    letter-spacing:0;
    -webkit-text-stroke:0;
}

.newsroom-about__mark::before{
    content:"";
    position:absolute;
    inset:22px;
    border:1px solid rgba(97,218,231,.1);
    border-radius:25px;
    pointer-events:none;
}

.newsroom-about__mark::after{
    content:"";
    position:absolute;
    width:230px;
    height:230px;
    left:50%;
    top:50%;
    border:1px solid rgba(91,217,229,.1);
    border-radius:50%;
    box-shadow:
        0 0 0 37px rgba(91,217,229,.018),
        0 0 0 74px rgba(91,217,229,.011);
    transform:translate(-50%,-50%);
    pointer-events:none;
}

.newsroom-about__mark img{
    position:relative;
    z-index:2;
    display:block;
    width:min(88%,240px);
    max-width:240px;
    height:auto;
    max-height:88px;
    object-fit:contain;
    filter:none !important;
    opacity:1;
    transform:none;
}

/*
 * Painel textual da direita.
 */

.newsroom-about__layout > div:last-child{
    min-height:610px;
    height:100%;
}

/*
 * Responsividade.
 */

@media (max-width:1100px){

    .newsroom-about__layout{
        grid-template-columns:minmax(220px,.34fr) minmax(0,1fr);
        gap:30px;
    }

    .newsroom-about__mark,
    .newsroom-about__layout > div:last-child{
        min-height:560px;
    }

    .newsroom-about__mark img{
        width:min(88%,215px);
        max-width:215px;
    }
}

@media (max-width:850px){

    .newsroom-about__layout{
        grid-template-columns:1fr;
    }

    .newsroom-about__mark{
        max-width:100%;
        min-height:290px;
    }

    .newsroom-about__layout > div:last-child{
        min-height:auto;
    }

    .newsroom-about__mark img{
        width:min(72%,245px);
        max-width:245px;
    }
}

@media (max-width:760px){

    .newsroom-media-resource__identity{
        min-height:170px;
        padding:20px 15px;
    }

    .newsroom-media-resource__identity img{
        width:min(82%,175px);
        max-width:175px;
        max-height:60px;
        margin-top:5px;
    }

    .newsroom-media-resource__identity span{
        left:auto;
        right:18px;
        top:50%;
        bottom:auto;
        height:auto;
        max-height:none;
        transform:
            translateY(-50%)
            rotate(180deg);
    }

    .newsroom-media-resource__identity img + span{
        left:auto;
        right:18px;
        top:50%;
        bottom:auto;
        height:auto;
    }
}

@media (max-width:460px){

    .newsroom-media-resource__identity{
        min-height:155px;
    }

    .newsroom-media-resource__identity img{
        width:min(74%,150px);
        max-width:150px;
        max-height:52px;
    }

    .newsroom-about__mark{
        min-height:250px;
        border-radius:28px;
    }

    .newsroom-about__mark img{
        width:min(72%,205px);
        max-width:205px;
    }
}

/* AW4_016_09_NEWSROOM_LOGOS_E_SOBRE_END */
