.venue-directory-page {
    padding: 34px 18px 56px;
}

.venue-directory-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.venue-directory-heading {
    margin-bottom: 22px;
}

.venue-directory-eyebrow {
    margin: 0 0 6px;
    color: #16813a;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.venue-directory-heading h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.venue-directory-intro {
    margin: 10px 0 0;
    color: #667085;
    font-size: 1rem;
}

.venue-bonus-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 34px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #16813a;
    color: #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .08);
}

.venue-bonus-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    font-size: 1rem;
}

.venue-bonus-banner div {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.venue-bonus-banner strong {
    font-size: .98rem;
}

.venue-bonus-banner span:not(.venue-bonus-icon) {
    font-size: .92rem;
    opacity: .95;
}

.venue-day-section {
    margin-top: 34px;
}

.venue-day-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.venue-day-heading::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #dfe3e8;
}

.venue-day-heading h2 {
    margin: 0;
    color: #142033;
    font-size: 1.3rem;
    line-height: 1;
}

.venue-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.venue-card {
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
}

.venue-card-image-link {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #e9edf1;
}

.venue-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.venue-card:hover .venue-card-image {
    transform: scale(1.025);
}

.venue-card-body {
    padding: 20px;
}

.venue-card-top h3 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.2;
}

.venue-card-top h3 a {
    color: #142033;
    text-decoration: none;
}

.venue-card-top h3 a:hover {
    color: #16813a;
}

.venue-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 7px 0 0;
    color: #667085;
    font-size: .9rem;
}

.venue-location span {
    color: #16813a;
    font-size: .55rem;
}

.venue-tournament {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid #edf0f2;
}

.venue-tournament-label,
.venue-time-label {
    display: block;
    margin: 0;
    color: #7a8493;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.venue-tournament-name {
    margin: 5px 0 0;
    color: #263244;
    font-size: .98rem;
    font-weight: 700;
}

.venue-time-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 15px 16px;
    border-radius: 12px;
    background: #f7f9f8;
}

.venue-time-block strong {
    display: block;
    margin-top: 4px;
    color: #142033;
    font-size: 1rem;
}

.venue-time-divider {
    width: 1px;
    height: 36px;
    background: #dfe3e8;
}

.venue-view-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #142033;
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.venue-view-button:hover {
    background: #16813a;
    transform: translateY(-1px);
}

.venue-directory-empty {
    padding: 30px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #fff;
    color: #667085;
    text-align: center;
}

@media (max-width: 760px) {
    .venue-directory-page {
        padding: 24px 14px 44px;
    }

    .venue-bonus-banner {
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .venue-bonus-banner div {
        display: block;
    }

    .venue-bonus-banner strong,
    .venue-bonus-banner span:not(.venue-bonus-icon) {
        display: block;
    }

    .venue-bonus-banner span:not(.venue-bonus-icon) {
        margin-top: 3px;
    }

    .venue-card-grid {
        grid-template-columns: 1fr;
    }

    .venue-card-image-link {
        height: 205px;
    }
}

@media (max-width: 430px) {
    .venue-card-body {
        padding: 17px;
    }

    .venue-time-row {
        gap: 12px;
        padding: 14px;
    }

    .venue-time-block strong {
        font-size: .94rem;
    }
}
