/* =========================
   RESET
========================= */

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#222;
    background:#fff;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.site-header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.primary-menu{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.primary-menu li{
    list-style:none;
}

.primary-menu a{
    color:#111;
    font-weight:600;
    text-decoration:none;
}

.header-search input{
    width:340px;
    padding:12px 18px;
    border:1px solid #ddd;
    border-radius:8px;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

/* =========================
   HERO
========================= */

.hero{
    padding:80px 0;
}

.hero .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:#f3f3f3;
    border-radius:40px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:6px;
    font-weight:700;
    text-decoration:none;
}

.btn-primary{
    background:#000;
    color:#fff;
}

.btn-outline{
    border:2px solid #000;
    color:#000;
}

.hero-right img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

.hero .container{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:42px;
}

.primary-menu{
    display:none;
}

.header-search{
    display:none;
}

.menu-toggle{
    display:block;
}

}





/* ===========================
FEATURED STORIES
=========================== */

.featured-stories{

    padding:80px 0;

}

.section-heading{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.section-heading h2{

    font-size:34px;

}

.section-heading a{

    text-decoration:none;

    font-weight:700;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.story-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.story-card:hover{

    transform:translateY(-8px);

}

.story-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.story-content{

    padding:20px;

}

.story-category{

    display:inline-block;

    background:#000;

    color:#fff;

    padding:5px 12px;

    font-size:12px;

    margin-bottom:15px;

}

.story-content h3{

    margin-bottom:15px;

    font-size:22px;

}

.story-content p{

    color:#666;

    line-height:1.6;

}

@media(max-width:991px){

.featured-grid{

grid-template-columns:1fr;

}

}










/*==========================
TRENDING NOW
===========================*/

.trending-now{

padding:70px 0;

background:#fafafa;

}

.trending-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.trend-card{

display:flex;

gap:20px;

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.trend-number{

font-size:38px;

font-weight:700;

color:#b8860b;

min-width:60px;

}

.trend-content h3{

font-size:20px;

margin-bottom:10px;

line-height:1.4;

}

.trend-content span{

font-size:14px;

color:#888;

}

@media(max-width:991px){

.trending-grid{

grid-template-columns:1fr;

}

}