/* =========================================
   GALLERY SECTION
========================================= */

.gallery-preview-section{
    padding:100px 0;
    background:#ffffff;
}

.gallery-preview-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* =========================================
   LEFT CONTENT
========================================= */

.gallery-preview-content .gallery-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#fff4d6;
    color:#ffb400;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.gallery-preview-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    color:#002147;
    margin-bottom:25px;
}

.gallery-preview-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 30px;
    background:#002147;
    color:#ffffff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.gallery-btn:hover{
    background:#ffb400;
    color:#002147;
}

/* =========================================
   RIGHT SLIDER
========================================= */

.gallery-slider{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,33,71,.15);
}

.gallery-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .5s ease;
}

.gallery-slide.active{
    opacity:1;
}

.gallery-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .gallery-preview-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .gallery-preview-content h2{
        font-size:36px;
    }

    .gallery-slider{
        height:400px;
    }
}

@media(max-width:768px){

    .gallery-preview-section{
        padding:70px 0;
    }

    .gallery-preview-content h2{
        font-size:30px;
    }

    .gallery-preview-content p{
        font-size:16px;
    }

    .gallery-slider{
        height:300px;
    }
}