.custom-gallery{
    max-width:1100px;
    margin:0 auto;
}

.custom-gallery .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.custom-gallery .gallery-item{
    background:#fff;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    border:1px solid #edf2f7;
    border-radius:4px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.custom-gallery .gallery-item:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 30px rgba(0,0,0,.12);
}

.custom-gallery .gallery-item a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    text-decoration:none;
}

.custom-gallery .gallery-item img{
    max-width:100%;
    max-height:120px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
}

.custom-gallery .hidden-gallery{
    display:none;
    margin-top:24px;
}

.custom-gallery .gallery-btn{
    text-align:center;
    margin-top:40px;
}

.custom-gallery .gallery-btn button{
    background:#0b2d72;
    color:#fff;
    border:none;
    border-radius:2px;
    padding:16px 34px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:12px;
}

.custom-gallery .gallery-btn button:hover{
    background:#143f95;
}

.custom-gallery .gallery-btn button:after{
    content:'↗';
    font-size:16px;
}

@media (max-width:991px){
    .custom-gallery .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:767px){
    .custom-gallery .gallery-grid{
        grid-template-columns:1fr;
    }

    .custom-gallery .gallery-item{
        min-height:180px;
    }
}
