/*Horizontal card-type location block*/
.paragraph--type--location-horizontal {
    max-width: 85%;
    margin: 0 auto;
    border-radius: 5px;
    padding: 20px 0;
}

.paragraph--type--location-horizontal .location-address {
    max-width: 33%;
}
.paragraph--type--location-horizontal .location-image {
    max-width: 25%;
}

.paragraph--type--location-horizontal .location-image img {
    max-width: 100%;
    height: auto;
}

.paragraph--type--location-horizontal .geofield-google-map {
    max-width: 85%;
    min-width: 300px;
}

/*Media Queries*/
@media screen and (max-width: 1000px) {
    .paragraph--type--location-horizontal {
        max-width: 100%;
    }
    .paragraph--type--location-horizontal .d-flex {
        flex-direction: column;
        row-gap: 25px; 
    }
    .paragraph--type--location-horizontal .location-address {
        max-width: 100%;
        text-align: center;
    }
    .paragraph--type--location-horizontal .location-image {
        max-width: 70%;
    }
}