.venue-hero {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

/* Responsive stack for mobile */
@media (max-width: 768px) {
    .logistics-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        text-align: center;
    }

    .hotel-block .btn {
        justify-self: center;
    }

    .schedule-block {
        display: flex;
        flex-direction: column;
        width: fit-content;
        justify-self: center;
    }

    .hotel-block {
        align-items: center;
        justify-self: center;
        width: fit-content;
    }
}

.info-block {
    margin-bottom: 2rem;
    scroll-margin-top: 80px;
    border-radius: 8px;
    padding: 1rem;
}

@keyframes highlight-section {
    0%, 20% { background-color: color-mix(in srgb, var(--primary) 12%, transparent); }
    100%     { background-color: transparent; }
}

.info-block:target {
    animation: highlight-section 2.5s ease-out;
}

.info-block h3 {
    border-bottom: 2px solid var(--border1);
    display: inline-block;
    margin-bottom: 1rem;
}

.info-block#parking li {
    margin-bottom: 0.5rem;
}

.info-block#parking li:last-child {
    margin-bottom: 0;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.schedule-table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.schedule-time {
    font-weight: bold;
    width: 100px;
    color: var(--primary);
    vertical-align: top;
}

.schedule-until {
    font-size: 0.75rem;
    display: block;
}

.hotel-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border2);
}

.hotel-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hotel-highlight {
    font-size: 0.85rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 0.4rem;
    margin-top: 1rem;
    font-weight: 600;
}

.hotel-address, .venue-address {
    font-size: 0.9rem;
    opacity: 0.8;
}

iframe {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.book-now-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.book-now-btn .open-in-new {
    filter: invert(1);
}

ul {
    list-style-type: none;
}
