/*=========================================
NOTIFICATIONS PAGE
=========================================*/

.gjp-notifications-page{

    background:#f8fafc;

}


/*=========================================
Breadcrumb
=========================================*/

.gjp-notifications-breadcrumb{

    padding:20px 0;

    background:#ffffff;

    border-bottom:1px solid #e5e7eb;

}

.gjp-breadcrumb{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

}

.gjp-breadcrumb a{

    color:#2563eb;

    text-decoration:none;

    transition:.3s;

}

.gjp-breadcrumb a:hover{

    color:#1d4ed8;

}

.gjp-breadcrumb span{

    color:#64748b;

}

.gjp-breadcrumb-separator{

    color:#cbd5e1;

}


/*=========================================
Hero Section
=========================================*/

.gjp-notifications-hero{

    padding:60px 0;

    background:linear-gradient(135deg,#eff6ff,#ffffff);

}

.gjp-notifications-hero-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}

.gjp-notifications-hero-content{

    flex:1;

}

.gjp-page-badge{

    display:inline-block;

    padding:8px 16px;

    background:#dbeafe;

    color:#2563eb;

    font-size:13px;

    font-weight:600;

    border-radius:30px;

    margin-bottom:20px;

}

.gjp-notifications-hero-content h1{

    margin:0 0 18px;

    font-size:42px;

    line-height:1.2;

    color:#0f172a;

    font-weight:700;

}

.gjp-notifications-hero-content p{

    max-width:620px;

    margin:0;

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}

.gjp-notifications-hero-image{

    flex-shrink:0;

}

.gjp-notifications-hero-image img{

    width:340px;

    max-width:100%;

    display:block;

}


/*=========================================
Search & Filters
=========================================*/

.gjp-notifications-search-section{

    padding:40px 0;

    background:#ffffff;

}

.gjp-notifications-search-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr auto;

    gap:18px;

    align-items:center;

}

.gjp-search-box input{

    width:100%;

    height:52px;

    padding:0 18px;

    border:1px solid #dbe4ee;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.gjp-search-box input:focus{

    border-color:#2563eb;

}

.gjp-filter-box select{

    width:100%;

    height:52px;

    padding:0 16px;

    border:1px solid #dbe4ee;

    border-radius:12px;

    font-size:15px;

    outline:none;

    background:#ffffff;

    cursor:pointer;

}

.gjp-filter-box select:focus{

    border-color:#2563eb;

}

.gjp-reset-filter button{

    height:52px;

    padding:0 22px;

    border:none;

    border-radius:12px;

    background:#2563eb;

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.gjp-reset-filter button:hover{

    background:#1d4ed8;

}
/*=========================================
FEATURED NOTIFICATION
=========================================*/

.gjp-featured-notification-section{

    padding:0 0 50px;

}

.gjp-featured-notification{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

/*=========================================
Featured Badge
=========================================*/

.gjp-featured-badge{

    background:linear-gradient(90deg,#2563eb,#1d4ed8);

    padding:14px 24px;

}

.gjp-featured-badge span{

    color:#ffffff;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    text-transform:uppercase;

}

/*=========================================
Content
=========================================*/

.gjp-featured-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:34px;

}

/*=========================================
Left Section
=========================================*/

.gjp-featured-left{

    display:flex;

    align-items:flex-start;

    gap:24px;

    flex:1;

}

.gjp-featured-logo{

    width:84px;

    height:84px;

    border-radius:18px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.gjp-featured-logo img{

    width:58px;

    height:58px;

    object-fit:contain;

}

.gjp-notification-category{

    display:inline-block;

    margin-bottom:12px;

    padding:6px 14px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.gjp-featured-details h2{

    margin:0 0 14px;

    font-size:30px;

    color:#0f172a;

    line-height:1.3;

    font-weight:700;

}

.gjp-featured-details p{

    margin:0 0 22px;

    color:#64748b;

    font-size:16px;

    line-height:1.8;

    max-width:700px;

}

/*=========================================
Last Date
=========================================*/

.gjp-last-date{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:15px;

}

.gjp-last-date strong{

    color:#dc2626;

}

.gjp-last-date span{

    color:#dc2626;

    font-weight:600;

}

/*=========================================
Right Section
=========================================*/

.gjp-featured-right{

    flex-shrink:0;

}

.gjp-view-details-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:12px;

    background:#2563eb;

    color:#ffffff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.gjp-view-details-btn:hover{

    background:#1d4ed8;

    transform:translateY(-2px);

}
/*=========================================
NOTIFICATIONS GRID
=========================================*/

.gjp-notifications-list-section{

    padding:0 0 60px;

}

.gjp-notifications-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}


/*=========================================
Notification Card
=========================================*/

.gjp-notification-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:28px;

    transition:.35s;

    box-shadow:0 6px 18px rgba(15,23,42,.04);

}

.gjp-notification-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(15,23,42,.08);

    border-color:#dbeafe;

}


/*=========================================
Card Header
=========================================*/

.gjp-card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:22px;

}

.gjp-card-logo{

    width:72px;

    height:72px;

    border-radius:16px;

    border:1px solid #e5e7eb;

    background:#f8fafc;

    display:flex;

    align-items:center;

    justify-content:center;

}

.gjp-card-logo img{

    width:48px;

    height:48px;

    object-fit:contain;

}


/*=========================================
Category Badge
=========================================*/

.gjp-card-badge{

    display:inline-block;

    padding:7px 16px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}


/*=========================================
Card Title
=========================================*/

.gjp-notification-card h3{

    margin:0 0 16px;

    font-size:24px;

    line-height:1.45;

    color:#0f172a;

    font-weight:700;

}


/*=========================================
Card Description
=========================================*/

.gjp-notification-card p{

    margin:0 0 24px;

    color:#64748b;

    font-size:15px;

    line-height:1.8;

}


/*=========================================
Card Footer
=========================================*/

.gjp-card-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:18px;

    border-top:1px solid #edf2f7;

}


/*=========================================
Last Date
=========================================*/

.gjp-card-last-date{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.gjp-card-last-date strong{

    color:#dc2626;

    font-size:13px;

    font-weight:600;

}

.gjp-card-last-date span{

    color:#dc2626;

    font-size:15px;

    font-weight:700;

}


/*=========================================
View Details
=========================================*/

.gjp-card-link{

    color:#2563eb;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.gjp-card-link:hover{

    color:#1d4ed8;

}
/*=========================================
PAGINATION
=========================================*/

.gjp-notifications-pagination-section{

    padding:0 0 80px;

}

.gjp-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.gjp-page-number,
.gjp-page-arrow{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e5e7eb;

    border-radius:12px;

    background:#ffffff;

    color:#334155;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.30s;

}

.gjp-page-number:hover,
.gjp-page-arrow:hover{

    background:#2563eb;

    color:#ffffff;

    border-color:#2563eb;

}

.gjp-page-number.active{

    background:#2563eb;

    color:#ffffff;

    border-color:#2563eb;

}


/*=========================================
TABLET RESPONSIVE
=========================================*/

@media (max-width:991px){

    .gjp-notifications-hero{

        padding:50px 0;

    }

    .gjp-notifications-hero-wrapper{

        flex-direction:column;

        text-align:center;

        gap:40px;

    }

    .gjp-notifications-hero-content p{

        max-width:100%;

    }

    .gjp-notifications-hero-image img{

        width:260px;

    }

    .gjp-notifications-search-wrapper{

        grid-template-columns:1fr 1fr;

    }

    .gjp-search-box{

        grid-column:1 / -1;

    }

    .gjp-reset-filter{

        grid-column:1 / -1;

    }

    .gjp-reset-filter button{

        width:100%;

    }

    .gjp-featured-content{

        flex-direction:column;

        align-items:flex-start;

    }

    .gjp-featured-right{

        width:100%;

    }

    .gjp-view-details-btn{

        width:100%;

        justify-content:center;

    }

    .gjp-notifications-grid{

        grid-template-columns:1fr;

    }

}


/*=========================================
MOBILE RESPONSIVE
=========================================*/

@media (max-width:576px){

    .gjp-notifications-breadcrumb{

        padding:16px 0;

    }

    .gjp-breadcrumb{

        font-size:13px;

        flex-wrap:wrap;

    }

    .gjp-notifications-hero{

        padding:40px 0;

    }

    .gjp-page-badge{

        font-size:12px;

        padding:7px 14px;

    }

    .gjp-notifications-hero-content h1{

        font-size:30px;

    }

    .gjp-notifications-hero-content p{

        font-size:15px;

        line-height:1.7;

    }

    .gjp-notifications-search-wrapper{

        grid-template-columns:1fr;

    }

    .gjp-filter-box select,
    .gjp-search-box input,
    .gjp-reset-filter button{

        width:100%;

    }

    .gjp-featured-content{

        padding:24px;

    }

    .gjp-featured-left{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

    .gjp-featured-logo{

        width:72px;

        height:72px;

    }

    .gjp-featured-logo img{

        width:48px;

        height:48px;

    }

    .gjp-featured-details h2{

        font-size:24px;

    }

    .gjp-featured-details p{

        font-size:15px;

    }

    .gjp-last-date{

        justify-content:center;

        flex-wrap:wrap;

    }

    .gjp-notification-card{

        padding:22px;

    }

    .gjp-card-header{

        flex-direction:column;

        align-items:flex-start;

        gap:16px;

    }

    .gjp-notification-card h3{

        font-size:20px;

    }

    .gjp-card-footer{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

    }

    .gjp-card-link{

        font-size:14px;

    }

    .gjp-pagination{

        gap:8px;

    }

    .gjp-page-number,
    .gjp-page-arrow{

        width:42px;

        height:42px;

        font-size:14px;

    }

}