#interactive-map {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding-top: var(--space-between-sections);
    margin-bottom: var(--space-between-sections);
    position: relative;
    z-index: 1;
}

.interactive-map__content {
    max-width: 1100px;
    padding: 0 15px;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
}
.interactive-map__content h2 {
    font-size: 45px;
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

#interactive-map__map {
    height: 500px;
    width: 100%;
}

.leaflet-marker-icon {
    object-fit: contain;
    width: 32px !important;
}
.leaflet-popup-content {
    width: 320px;
}
.interactive-map__hotel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}
.interactive-map__hotel span {
    display: flex;

}
.interactive-map__hotel .interactive-map__hotel__content__name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 7px;
}
.interactive-map__hotel a.interactive-map__hotel__content__link {
    font-weight: bold;
    margin-top: 7px;
    color: #333;
    display: flex;
}
.interactive-map__hotel__content__link:hover {
    color: #333;
}
.interactive-map__hotel-image {
    width: 50%;
    height: 185px;
    object-fit: cover;
    background-image: url('themes/default/images/loading-image.gif');
    background-size: 30%;
    background-position: 50%;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    #interactive-map {
        width: 100%;
        margin: 0 auto;
        margin-bottom: 60px;
    }
    .leaflet-popup-content {
        width: 220px;
    }
    .interactive-map__hotel {
        flex-direction: column;
        gap: 10px;
    }
    .interactive-map__hotel-image {
        width: 100%;
        height: 150px;
    }
}
