/* =========================================================
PAGE
========================================================= */

.news-page{

    background:#f5f7fb;
    min-height:100vh;
    padding-bottom:60px;

}

.news-container{

    width:min(1380px,95%);
    margin:auto;

}

/* =========================================================
HERO
========================================================= */

.news-hero{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:70px 60px;

    margin-top:20px;
    margin-bottom:35px;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),
    url('../images/news/news-banner.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:#fff;

}

.news-hero-content{

    position:relative;
    z-index:2;

    max-width:850px;

}

.news-hero h1{

    font-size:56px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:800;

}

.news-hero p{

    font-size:18px;
    line-height:1.8;
    opacity:.95;

}

/* =========================================================
QUICK LINKS
========================================================= */

.quick-links{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

    margin-top:25px;

}

.quick-links a{

    text-decoration:none;

    padding:12px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-size:14px;
    font-weight:700;

    border:1px solid rgba(255,255,255,.2);

    transition:.25s;

}

.quick-links a:hover{

    transform:translateY(-2px);

    background:#fff;
    color:#ff2d55;

}

/* =========================================================
SEARCH
========================================================= */

.search-box{

    background:#fff;

    border-radius:24px;

    padding:25px;

    margin-bottom:30px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.search-form{

    display:grid;
    grid-template-columns:1fr 240px 180px;
    gap:18px;

}

.search-input,
.search-select{

    width:100%;
    height:58px;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:0 18px;

    font-size:15px;

}

.search-input:focus,
.search-select:focus{

    outline:none;

    border-color:#ff5f2e;

}

.search-btn{

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff2d55
    );

    color:#fff;

    font-size:16px;
    font-weight:700;

    cursor:pointer;

}

/* =========================================================
FEATURED
========================================================= */

.featured-news{

    margin-bottom:40px;

}

.featured-card{

    display:grid;
    grid-template-columns:1fr 1fr;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.07);

}

.featured-image img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.featured-content{

    padding:45px;

}

.featured-badge{

    display:inline-flex;

    padding:8px 14px;

    border-radius:50px;

    background:#fff1eb;

    color:#ff5f2e;

    font-size:12px;
    font-weight:800;

    margin-bottom:18px;

}

.featured-content h2{

    font-size:38px;
    line-height:1.3;

    margin-bottom:20px;

}

.featured-content p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;

}

.read-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 22px;

    border-radius:14px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff2d55
    );

    color:#fff;

    text-decoration:none;

    font-weight:700;

}

/* =========================================================
NEWS GRID
========================================================= */

.news-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.news-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:.3s;

}

.news-card:hover{

    transform:translateY(-4px);

}

.news-thumb{

    height:240px;
    overflow:hidden;

}

.news-thumb img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.news-content{

    padding:24px;

}

.news-meta{

    display:flex;
    gap:12px;
    flex-wrap:wrap;

    margin-bottom:15px;

}

.news-meta span{

    font-size:12px;
    font-weight:700;

    background:#f3f4f6;

    padding:7px 12px;

    border-radius:50px;

}

.news-content h3{

    font-size:22px;
    line-height:1.4;

    margin-bottom:14px;

}

.news-content p{

    color:#6b7280;

    line-height:1.7;

    margin-bottom:20px;

}

/* =========================================================
SUBSCRIBE
========================================================= */

.subscribe-box{

    margin-top:60px;

    padding:50px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff2d55
    );

    text-align:center;

    color:#fff;

}

.subscribe-box h2{

    font-size:42px;
    margin-bottom:15px;

}

.subscribe-box p{

    font-size:17px;
    margin-bottom:30px;

}

.subscribe-btn{

    display:inline-flex;

    padding:16px 28px;

    border-radius:50px;

    background:#fff;

    color:#ff2d55;

    text-decoration:none;

    font-weight:800;

}

/* =========================================================
EMPTY
========================================================= */

.empty-news{

    text-align:center;

    background:#fff;

    padding:80px 30px;

    border-radius:28px;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .news-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:991px){

    .featured-card{

        grid-template-columns:1fr;

    }

    .search-form{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .news-hero{

        padding:45px 25px;

    }

    .news-hero h1{

        font-size:36px;

    }

    .featured-content{

        padding:25px;

    }

    .featured-content h2{

        font-size:28px;

    }

    .news-grid{

        grid-template-columns:1fr;

    }

    .subscribe-box{

        padding:35px 20px;

    }

    .subscribe-box h2{

        font-size:30px;

    }

}