.jumbotron {
    /* Light enough to keep the dark copy legible, sheer enough to let the photo through. */
    background-color: rgba(255,255,255,0.65);
    height: 568px;
}

.jumbotron-content {
    margin: auto;
}

.jumbotron-image {
    background-image: url('https://kamilistorage.blob.core.windows.net/gallery/location-hero.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 568px;
}

.location-gallery {
    max-width: 1160px;
    margin: 0 auto;
    padding: 3.5rem 1rem 1rem;
    text-align: center;
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 1.5rem;
}

.location-gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.location-gallery-grid img {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.location-gallery-grid a:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-map {
    width: 100%;
    height: 380px;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (min-width: 992px) {
    .location-map {
        height: 480px;
    }
}
