/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
    line-height:1.7;
}

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

.header{
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#0D6EFD;
    color:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.back-btn{
    border:none;
    background:none;
    color:#fff;
    cursor:pointer;
}

.back-btn .material-icons{
    font-size:28px;
}

.header h2{
    font-size:20px;
    font-weight:600;
}

/* =====================================
   HERO
===================================== */

.hero{
    background:linear-gradient(135deg,#0D6EFD,#3F8CFF);
    color:#fff;
    text-align:center;
    padding:55px 25px;
}

.hero h1{
    font-size:30px;
    margin-bottom:15px;
}

.hero p{
    font-size:15px;
    opacity:.95;
    max-width:700px;
    margin:auto;
}

/* =====================================
   SEARCH
===================================== */

.search{
    padding:20px;
}

.search-box{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:15px;
    padding:14px 18px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.search-box .material-icons{
    color:#0D6EFD;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    margin-left:12px;
    font-size:15px;
    background:transparent;
}

/* =====================================
   CONTENT
===================================== */

.content{
    background:#fff;
    margin:20px;
    padding:22px;
    border-radius:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.content h2{
    color:#0D6EFD;
    margin-bottom:15px;
}

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

.news-card{
    background:#F8F9FC;
    border-radius:18px;
    padding:20px;
    margin-bottom:18px;
    border:1px solid #E5E7EB;
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.10);
}

.news-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:15px;
}

.category{
    background:#0D6EFD;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.date{
    color:#666;
    font-size:13px;
}

.news-card h3{
    color:#222;
    margin-bottom:12px;
    font-size:20px;
}

.news-card p{
    color:#666;
    margin-bottom:20px;
    text-align:justify;
}

.read-btn{
    display:inline-block;
    text-decoration:none;
    background:#0D6EFD;
    color:#fff;
    padding:10px 22px;
    border-radius:25px;
    font-weight:600;
    transition:.3s;
}

.read-btn:hover{
    background:#0056D2;
}

/* =====================================
   CATEGORY LIST
===================================== */

.category-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.category-list span{
    background:#EAF2FF;
    color:#0D6EFD;
    padding:10px 16px;
    border-radius:25px;
    font-size:14px;
    font-weight:500;
}

/* =====================================
   ANNOUN