@charset "utf-8";
/* CSS Document */
.package-gallery{
    margin-bottom:40px;
}

.main-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:24px;
    display:block;
}

.thumb-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:12px;
}

.thumb-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    transition:.3s;
}

.thumb-grid img:hover{
    transform:scale(1.02);
}

@media(max-width:768px){

.main-image img{
    height:260px;
}

.thumb-grid{
    grid-template-columns:1fr;
    gap:8px;
}

.thumb-grid img{
    height:180px;
}

.package-gallery-full{
    margin-bottom:60px;
}

}
