/* =========================
   NEWS CARDS
========================= */

.latest-news{
    position:relative;
    padding:120px 0;
    background:
        radial-gradient(circle at 20% 0%,rgba(0,112,255,.18),transparent 35%),
        linear-gradient(180deg,#05070d,#08132a);
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:50px;
}

.section-kicker{
    display:inline-block;
    color:#00b2ff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.18em;
    margin-bottom:14px;
}

.section-head h1,
.section-head h2{
    font-size:54px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    color:#fff;
    text-shadow:0 0 25px rgba(0,178,255,.25);
}

.view-all{
    color:#00b2ff;
    font-weight:800;
}

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

.news-card{
    background:linear-gradient(180deg,#101a33,#070b18);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 20px 60px rgba(0,0,0,.22);
}

.news-card:hover{
    transform:translateY(-10px);
    border-color:#00b2ff;
    box-shadow:0 25px 70px rgba(0,178,255,.25);
}

.news-card a{
    display:block;
    color:inherit;
    text-decoration:none;
}

.news-image{
    height:230px;
    overflow:hidden;
    background:#071024;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.45s ease;
}

.news-card:hover .news-image img{
    transform:scale(1.07);
}

.news-no-image{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#00b2ff;
    font-size:28px;
    font-weight:900;
    letter-spacing:.08em;
}

.news-content{
    padding:26px;
}

.news-cat{
    display:inline-flex;
    padding:7px 14px;
    border-radius:999px;
    background:linear-gradient(135deg,#0070ff,#00b2ff);
    color:#fff;
    font-size:12px;
    font-weight:900;
    margin-bottom:16px;
}

.news-content h3{
    font-size:24px;
    line-height:1.25;
    margin-bottom:14px;
    color:#fff!important;
}

.news-content p{
    color:#c9d6ea!important;
    line-height:1.7;
    margin-bottom:22px;
}

.news-meta{
    display:flex;
    justify-content:space-between;
    gap:18px;
    color:#8fbfff!important;
    font-size:14px;
    font-weight:700;
}

@media(max-width:1000px){
    .news-grid{
        grid-template-columns:1fr;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .section-head h1,
    .section-head h2{
        font-size:38px;
    }
}
