/*==========================================================
ARENASA
LATEST NEWS
Version 1.0
PART 1
==========================================================*/

/*==========================================================
SECTION
==========================================================*/

.news-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:

        radial-gradient(
            circle at top center,
            rgba(42,110,73,.15),
            transparent 45%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(212,175,55,.05),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #10241B 0%,
            #0A1712 45%,
            #050806 100%
        );

}

/*==========================================================
BACKGROUND EFFECT
==========================================================*/

.news-section::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:

        radial-gradient(

            circle at left center,

            rgba(35,120,78,.10),

            transparent 40%

        ),

        radial-gradient(

            circle at right top,

            rgba(212,175,55,.08),

            transparent 30%

        );

    opacity:.9;

}

.news-section::after{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    opacity:.035;

    background-image:

        radial-gradient(#ffffff 1px, transparent 1px);

    background-size:12px 12px;

}

/*==========================================================
CONTAINER
==========================================================*/

.news-section .container{

    position:relative;

    z-index:2;

    max-width:1450px;

    margin:auto;

    padding:0 30px;

}

/*==========================================================
SECTION HEADER
==========================================================*/

.news-section .section-title{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.news-section .section-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 24px;

    margin-bottom:22px;

    border-radius:100px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.25);

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.news-section .section-subtitle::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#D4AF37;

    box-shadow:0 0 12px rgba(212,175,55,.8);

}

.news-section .section-title h2{

    margin:0;

    color:#FFFFFF;

    font-family:'Cormorant Garamond',serif;

    font-size:54px;

    font-weight:700;

    line-height:1.1;

}

.news-section .section-title p{

    margin:24px auto 0;

    max-width:680px;

    color:rgba(255,255,255,.78);

    font-size:18px;

    line-height:1.9;

}

/*==========================================================
GRID
==========================================================*/

.news-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    align-items:stretch;

}

/*==========================================================
EMPTY STATE
==========================================================*/

.news-empty{

    grid-column:1/-1;

    text-align:center;

    padding:80px 40px;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(212,175,55,.15);

}

.news-empty i{

    font-size:60px;

    color:#D4AF37;

    margin-bottom:20px;

}

.news-empty h3{

    margin:0;

    color:#FFFFFF;

    font-size:28px;

    font-family:'Cormorant Garamond',serif;

}

.news-empty p{

    margin-top:15px;

    color:rgba(255,255,255,.70);

    font-size:16px;

    line-height:1.8;

}

/*==========================================================
NEWS CARD
PART 2
==========================================================*/

.news-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    overflow:hidden;

    border-radius:24px;

    background:rgba(8,26,18,.72);

    backdrop-filter:blur(16px);

    border:1px solid rgba(212,175,55,.18);

    box-shadow:
        0 20px 45px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.03);

    transition:all .35s ease;

}

/*==========================================================
IMAGE
==========================================================*/

.news-image{

    position:relative;

    display:block;

    overflow:hidden;

    aspect-ratio:16 / 9;

    background:#08120D;

}

.news-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .6s ease;

}

/*==========================================================
CATEGORY
==========================================================*/

.news-category{

    position:absolute;

    top:18px;

    left:18px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(212,175,55,.92);

    color:#10241B;

    font-size:12px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

    box-shadow:0 8px 18px rgba(0,0,0,.25);

}

/*==========================================================
CONTENT
==========================================================*/

.news-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:28px;

}

/*==========================================================
META
==========================================================*/

.news-meta{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:rgba(255,255,255,.65);

    font-size:14px;

}

.news-meta span{

    display:flex;

    align-items:center;

    gap:8px;

}

.news-meta i{

    color:#D4AF37;

}

/*==========================================================
TITLE
==========================================================*/

.news-content h3{

    margin:0;

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    line-height:1.28;

    font-weight:700;

}

.news-content h3 a{

    color:#FFFFFF;

    text-decoration:none;

    transition:.3s;

}

/*==========================================================
DESCRIPTION
==========================================================*/

.news-content p{

    margin:18px 0 24px;

    color:rgba(255,255,255,.78);

    font-size:15px;

    line-height:1.9;

    flex:1;

}

/*==========================================================
READ MORE
==========================================================*/

.news-readmore{

    display:inline-flex;

    align-items:center;

    gap:12px;

    width:max-content;

    text-decoration:none;

    color:#D4AF37;

    font-size:15px;

    font-weight:700;

    transition:.3s;

}

.news-readmore i{

    transition:.3s;

}

/*==========================================================
BOTTOM BUTTON
==========================================================*/

.news-button{

    margin-top:70px;

    text-align:center;

}

.btn-news{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 42px;

    border-radius:60px;

    border:1px solid rgba(212,175,55,.35);

    background:rgba(212,175,55,.08);

    color:#FFFFFF;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    transition:.35s;

}

/*==========================================================
ARENASA
LATEST NEWS
PART 3
HOVER • ANIMATION • RESPONSIVE
==========================================================*/

/*==========================================================
CARD HOVER
==========================================================*/

.news-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.35);

    box-shadow:
        0 28px 60px rgba(0,0,0,.40),
        0 0 35px rgba(212,175,55,.08);

}

.news-card:hover .news-image img{

    transform:scale(1.08);

}

.news-card:hover .news-content h3 a{

    color:#D4AF37;

}

.news-card:hover .news-readmore{

    color:#F6D76A;

}

.news-card:hover .news-readmore i{

    transform:translateX(6px);

}

.news-card:hover .news-category{

    background:#D4AF37;

    box-shadow:
        0 10px 24px rgba(212,175,55,.35);

}

/*==========================================================
IMAGE OVERLAY
==========================================================*/

.news-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            to top,

            rgba(0,0,0,.30),

            transparent

        );

    transition:.35s;

}

.news-card:hover .news-image::after{

    background:

        linear-gradient(

            to top,

            rgba(16,36,27,.45),

            rgba(212,175,55,.06)

        );

}

/*==========================================================
BUTTON
==========================================================*/

.btn-news:hover{

    transform:translateY(-4px);

    background:#D4AF37;

    color:#10241B;

    border-color:#D4AF37;

    box-shadow:

        0 15px 35px rgba(212,175,55,.28);

}

/*==========================================================
SCROLL ANIMATION
==========================================================*/

.news-card{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease,

        box-shadow .35s ease,

        border-color .35s ease;

}

.news-card.show{

    opacity:1;

    transform:translateY(0);

}

.news-card:nth-child(2){

    transition-delay:.15s;

}

.news-card:nth-child(3){

    transition-delay:.30s;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1400px){

    .news-grid{

        gap:28px;

    }

}

@media(max-width:1200px){

    .news-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .news-section{

        padding:100px 0;

    }

}

@media(max-width:992px){

    .news-section .section-title h2{

        font-size:46px;

    }

    .news-content{

        padding:24px;

    }

    .news-content h3{

        font-size:27px;

    }

}

@media(max-width:768px){

    .news-section{

        padding:80px 0;

    }

    .news-section .container{

        padding:0 20px;

    }

    .news-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .news-section .section-title{

        margin-bottom:50px;

    }

    .news-section .section-title h2{

        font-size:38px;

    }

    .news-section .section-title p{

        font-size:16px;

        line-height:1.8;

    }

    .news-content{

        padding:22px;

    }

    .news-content h3{

        font-size:25px;

    }

    .news-content p{

        font-size:14px;

    }

}

@media(max-width:576px){

    .news-section{

        padding:70px 0;

    }

    .news-section .container{

        padding:0 18px;

    }

    .news-section .section-title h2{

        font-size:34px;

    }

    .news-section .section-subtitle{

        font-size:12px;

        padding:8px 18px;

    }

    .news-category{

        font-size:11px;

        padding:7px 14px;

    }

    .news-content{

        padding:20px;

    }

    .news-content h3{

        font-size:23px;

    }

    .btn-news{

        width:100%;

    }

}

@media(max-width:420px){

    .news-section .section-title h2{

        font-size:30px;

    }

    .news-content h3{

        font-size:21px;

    }

}

/*==========================================================
END
==========================================================*/