.access-venue-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: start;
}

.access-venue-title h2 {
    margin: 0;
    color: #2864b8;
    font-size: 30px;
}

.access-venue-content p {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.access-venue-map {
    width: 100%;
}

.access-venue-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 800px) {
    .access-venue-container {
        grid-template-columns: 1fr;
    }
}