/* THUMBNAIL AREAS */
.apartment-gallery {
    max-width: 1200px;
    margin: 0 auto;
}

/* MAIN IMAGE AREA */
.main-image {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* SAME visual size for all images */
}

/* THUMBNAILS */
.thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumbs img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.thumbs img:hover {
    opacity: 1;
}
