.venue-info {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info {
    font-weight: bold;
    font-size: 1.5em;
    margin: 0.3rem 0;
}

.info-text {
    font-size: 1.3em;
    margin: 0.3rem 0;
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.venue-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0.375rem 1.125rem rgba(0,0,0,0.3);
    aspect-ratio: 4/3;
}

#dress-code {
    margin: 2rem 0;
}

#get-there {
    text-decoration: none;
}

.emoji {
    width: 1.5em;
    height: 1.5em;
}

.info,
#dress-code > h3 {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
}

/* Mobile */
@media (max-width: 992px) {
    .venue-gallery {
        grid-template-columns: 1fr;
        margin: 2rem 0;
    }
}