/*=========================================
        RSSS NOTIFICATION PAGE
=========================================*/

.notification-page{
    background:#f8fbff;
    min-height:100vh;
}

.notification-hero{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    text-align:center;
    padding:90px 20px 150px;
    position:relative;
    overflow:hidden;
}

.notification-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.notification-hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    left:-90px;
    bottom:-120px;
}

.notification-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:20px;
}

.notification-hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.notification-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}
.notification-section{
    margin-top:-80px;
    position:relative;
    z-index:5;
    padding-bottom:80px;
}

.notification-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

.notification-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.notification-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(37,99,235,.16);
}

.notification-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.notification-category{
    background:#eff6ff;
    color:#2563eb;
    padding:7px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.notification-date{
    color:#64748b;
    font-size:13px;
}

.notification-card h3{
    margin-bottom:15px;
    color:#0f172a;
}

.notification-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.notification-card a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.notification-card a i{
    margin-left:8px;
}
@media(max-width:768px){

.notification-hero{

padding:70px 20px 120px;

}

.notification-hero h1{

font-size:38px;

}

.notification-grid{

grid-template-columns:1fr;

}

.notification-card{

padding:24px;

}

.notification-top{

flex-direction:column;
align-items:flex-start;
gap:10px;

}

}