.gallery-page{
    padding:60px 0 80px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f2f6fb 100%
        );
}
/* =========================================
GRID
========================================= */

.gallery-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(360px,1fr));

    gap:32px;
}

.gallery-card{
    background:white;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #e7edf5;

    transition:.35s;

    box-shadow:
        0 12px 35px rgba(15,23,42,.05);
}

.gallery-card:hover{
    transform:
        translateY(-8px);

    box-shadow:
        0 24px 45px rgba(15,23,42,.10);
}

.gallery-image{
    overflow:hidden;
}

.gallery-image img{
    width:100%;
    height:260px;

    object-fit:cover;

    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

.gallery-content{
    padding:28px;
}

.gallery-content h5{
    font-size:24px;

    line-height:1.7;

    font-weight:700;

    color:#16315c;

    margin:0;
}

.custom-pagination{
    display:flex;

    align-items:center;

    gap:14px;

    list-style:none;

    padding:0;
    margin:0;
}

.custom-pagination li a{
    width:56px;
    height:56px;

    border-radius:16px;

    background:white;

    border:1px solid #dbe7f3;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    color:#16315c;

    transition:.3s;
}

.custom-pagination li.active a{
    background:#002f6c;

    color:white;

    border-color:#002f6c;
}

.custom-pagination li a:hover{
    background:#eff6ff;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px){

    .gallery-header h1{
        font-size:42px;
    }

    .gallery-header p{
        font-size:16px;
    }

    .gallery-search{
        width:100%;
    }

}

@media(max-width:768px){

    .gallery-toolbar{
        flex-direction:column;
    }

    .gallery-search,
    .gallery-filter-btn,
    .gallery-reset-btn{
        width:100%;
    }

}

.gallery-reset-btn{
    height:72px;

    padding:0 36px;

    border-radius:100px;

    background:white;

    border:1px solid #dbe7f3;

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    color:#16315c;

    font-size:18px;

    font-weight:700;

    transition:.3s;
}

.gallery-reset-btn:hover{
    background:#eff6ff;

    color:#16315c;
}

.gallery-empty{
    grid-column:1/-1;

    text-align:center;

    padding:100px 20px;
}

.gallery-empty i{
    font-size:70px;

    color:#cbd5e1;

    margin-bottom:20px;
}

.gallery-empty h4{
    font-size:28px;

    font-weight:700;

    color:#16315c;

    margin-bottom:10px;
}

.gallery-empty p{
    color:#64748b;

    font-size:16px;
}