/* Home location plan + video section */

.home-location-video-section {
    padding-top: 74px;
    padding-bottom: 74px;
    background:
        radial-gradient(circle at 15% 20%, rgba(217, 166, 71, .10), transparent 32%),
        #fbf5ea;
}

.home-location-video-section .section-heading {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.home-location-video-section .section-heading p {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(46, 36, 24, .72);
}

.home-location-video-grid {
    display: grid;
    gap: 34px;
    align-items: stretch;
}

.home-location-plan-card,
.home-video-card {
    margin: 0 !important;
}

.home-location-plan-card a,
.home-video-card {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(96, 72, 42, .13);
    box-shadow: 0 18px 50px rgba(42, 32, 20, .10);
}

.home-location-plan-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.home-video-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 430px;
    background: #141414;
}

.home-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 980px) {
    .home-location-video-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .home-location-video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-location-plan-card img,
    .home-video-frame {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 640px) {
    .home-location-video-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .home-location-video-section .section-heading p {
        margin-top: 12px;
    }

    .home-location-plan-card a,
    .home-video-card {
        border-radius: 22px;
    }

    .home-location-plan-card img {
        aspect-ratio: 4 / 3;
        object-position: center;
    }

    .home-video-frame {
        aspect-ratio: 16 / 9;
    }
}
