/* ==================================
   NEWS SECTION — PREMIUM NIGHT
================================== */

.news-section{
    padding:120px 6vw 140px;
    background:
            linear-gradient(
                    180deg,
                    var(--news-bg-1),
                    var(--news-bg-2)
            );

    color:#fff;
}


/* =====================
   HEADER
===================== */

.news-header{
    text-align:center;
    margin-bottom:70px;
}

.news-title{
    font-size:34px;
    letter-spacing:.25em;
    color:#efd9b0;
}

.news-title::after{
    content:"";
    display:block;
    width:80px;
    height:2px;
    margin:18px auto 0;
    background:linear-gradient(
            90deg,
            transparent,
            #c8a46a,
            transparent
    );
}

.news-sub{
    margin-top:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    font-size:11px;
    letter-spacing:.2em;
    color:#c8a46a;
}

.news-sub .dot{
    width:6px;
    height:6px;
    background:#c8a46a;
    border-radius:50%;
}

/* =====================
   GRID
===================== */

.news-grid{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

@media(max-width:1024px){
    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

/* =====================
   CARD
===================== */

.news-card{
    background:#111;
    border-radius:22px;
    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,.5);
    transition:.35s ease;
}

.news-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.news-image{
    aspect-ratio:16/10;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
    transition:.5s ease;
}

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

/* CONTENT */

.news-content{
    padding:26px 28px 32px;
}

.news-date{
    font-size:10px;
    letter-spacing:.25em;
    opacity:.6;
    display:block;
    margin-bottom:10px;
}

.news-content h3{
    font-size:18px;
    margin-bottom:10px;
    letter-spacing:.05em;
}

.news-content p{
    font-size:14px;
    line-height:1.6;
    opacity:.85;
    margin-bottom:18px;
}

/* LINK */

.news-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    font-size:11px;
    letter-spacing:.22em;
    text-decoration:none;

    padding:11px 22px;
    border-radius:999px;

    background:
            linear-gradient(
                    135deg,
                    #2a2418,
                    #3a2f1c
            );

    color:#efd9b0;
    border:1px solid rgba(239,217,176,.35);

    transition:.3s ease;
}

.news-link:hover{
    background:
            linear-gradient(
                    135deg,
                    #efd9b0,
                    #c8a46a
            );
    color:#1a140b;
    transform:translateY(-2px);
    box-shadow:0 10px 26px rgba(239,217,176,.35);
}

/* =====================
   MOBILE
===================== */

@media(max-width:768px){

    .news-section{
        padding:90px 5vw 120px;
    }

    .news-title{
        font-size:24px;
        letter-spacing:.18em;
    }

}
