.hotel-images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adds space between images */
}

.hotel-images-image {
    position: relative; /* Allows for absolutely positioned elements */
    flex: 1 1 23%; /* Adjusts width to fit four images in a row, accounting for gap */
    overflow: hidden; /* Ensures no overflow of images */
    border-radius: 5px; /* Optional: adds rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

.hotel-images-image img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
    display: block;
}

.image-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.image-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }
}


.activity-images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adds space between images */
}

.activity-images-image {
    position: relative; /* Allows for absolutely positioned elements */
    flex: 1 1 23%; /* Adjusts width to fit four images in a row, accounting for gap */
    overflow: hidden; /* Ensures no overflow of images */
    border-radius: 5px; /* Optional: adds rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}

.activity-images-image img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
    display: block;
}

.image-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.image-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }
}
