.venue-content {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(3rem, 7vw, 7rem);
}

.venue-visual {
    min-height: 570px;
}

.venue-image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    background: #171717;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .38);
}

.venue-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-image figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.1rem 1.2rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, .92), rgba(10, 10, 10, .12));
    color: rgba(245, 240, 225, .72);
    font-size: .78rem;
}

.venue-image figcaption span {
    display: block;
    color: #f5f0e1;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.venue-image--football {
    top: 0;
    left: 0;
    width: 72%;
    height: 72%;
}

.venue-image--football img {
    object-position: center 48%;
}

.venue-image--basketball {
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 58%;
    height: 55%;
    border: 7px solid #0a0a0a;
}

.venue-image--basketball img {
    object-position: center;
}

@media (max-width: 1024px) {
    .venue-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .venue-visual {
        width: min(100%, 720px);
        min-height: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .venue-content {
        gap: 2.75rem;
    }

    .venue-visual {
        display: grid;
        grid-template-columns: 1fr;
        gap: .75rem;
        min-height: 0;
    }

    .venue-image,
    .venue-image--football,
    .venue-image--basketball {
        position: relative;
        inset: auto;
        width: 100%;
        height: 245px;
        border: 0;
    }

    .venue-image--basketball {
        height: 210px;
    }

    .venue-image figcaption {
        padding: .9rem 1rem;
    }

    .venue-text h2 {
        font-size: clamp(3rem, 14vw, 4.25rem);
    }
}
