.news-final-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.news-final-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border:1px solid #e7e8ef;
    border-radius:18px;
    background:#fff;
    color:#010025;
    text-decoration:none;
}

.news-final-image{
    aspect-ratio:16/10;
    overflow:hidden;
    background:#010025;
}

.news-final-image img,
.news-final-side-img img,
.news-final-featured-img > img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.news-final-body{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:20px;
}

.news-final-body small,
.news-final-side-copy small,
.news-final-featured-copy small{
    font-size:9px;
    font-weight:700;
}

.news-final-body h3{
    margin:8px 0;
    font-size:16px;
    line-height:1.3;
}

.news-final-body p{
    color:#707486;
    font-size:10px;
    line-height:1.7;
}

.news-final-body strong{
    margin-top:auto;
    padding-top:15px;
    font-size:9px;
}


/* HOME */

.news-final-group{
    display:none;
    grid-template-columns:minmax(0,1.65fr) minmax(300px,.85fr);
    gap:18px;
}

.news-final-featured{
    text-decoration:none;
    color:#fff;
}

.news-final-featured-img{
    position:relative;
    height:480px;
    overflow:hidden;
    border-radius:20px;
    background:#010025;
}

.news-final-shade{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            180deg,
            rgba(1,0,37,.03),
            rgba(1,0,37,.94)
        );
}

.news-final-featured-copy{
    position:absolute;
    z-index:2;
    left:30px;
    right:30px;
    bottom:28px;
}

.news-final-featured-copy h3{
    margin:8px 0 10px;
    color:#fff;
    font-size:27px;
    line-height:1.15;
}

.news-final-featured-copy p{
    max-width:650px;
    color:rgba(255,255,255,.84);
    font-size:10.5px;
    line-height:1.65;
}

.news-final-featured-copy strong{
    font-size:9px;
}

.news-final-secondary{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:18px;
}

.news-final-side{
    display:grid;
    grid-template-columns:42% 58%;
    overflow:hidden;
    border:1px solid #e7e8ef;
    border-radius:18px;
    background:#fff;
    color:#010025;
    text-decoration:none;
}

.news-final-side-img{
    overflow:hidden;
    background:#010025;
}

.news-final-side-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:17px;
}

.news-final-side-copy h3{
    margin:7px 0 10px;
    font-size:13px;
    line-height:1.3;
}

.news-final-side-copy strong{
    font-size:8.5px;
}

.news-final-navigation{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:18px;
}

.news-final-navigation button{
    width:34px;
    height:34px;
    border:1px solid #dedfe7;
    border-radius:50%;
    background:#fff;
    color:#010025;
    cursor:pointer;
}

.news-final-navigation span{
    min-width:48px;
    text-align:center;
    font-size:9px;
    font-weight:700;
}

.news-final-fallback{
    width:100%;
    height:100%;
    min-height:140px;
    display:grid;
    place-items:center;
    background:#010025;
    color:#fff;
    font:800 10px "Montserrat",sans-serif;
}

@media(max-width:900px){

    .news-final-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .news-final-group{
        grid-template-columns:1fr;
    }

    .news-final-secondary{
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
    }
}

@media(max-width:620px){

    .news-final-grid{
        grid-template-columns:1fr;
    }

    .news-final-featured-img{
        height:430px;
    }

    .news-final-featured-copy{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .news-final-featured-copy h3{
        font-size:21px;
    }

    .news-final-secondary{
        grid-template-columns:1fr;
    }

    .news-final-side{
        grid-template-columns:38% 62%;
        min-height:150px;
    }
}
