.hotel-gallery {
    max-width: 700px;
    margin: 0 auto;
}

/* Главная галерея */
.hotel-gallery-main {
    height: 520px;
    margin-bottom: 12px;
}
.hotel-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    border-radius: 10px;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff;
}

/* Превьюшки сеткой */
.hotel-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 превью в ряд */
    gap: 10px;
    margin-top: 12px;
}

.hotel-gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    border-bottom: 5px solid #fff;
}