/* ============================================================
   Game Day Concert — Global Styles
   Shared by all game-day* ACF blocks
   ============================================================ */

/* ── Base ─────────────────────────────────────────────────── */
.uber-page {
    font-family: 'Poppins', sans-serif;
    color: #222;
}

/* ── Hero ─────────────────────────────────────────────────── */
.uber-hero {
    position: relative;
    width: 100%;
    min-height: 260px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.uber-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.55);
}

.uber-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: left;
}

.uber-hero__headline {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
}

.uber-hero__headline strong {
    display: block;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

/* ── Intro ────────────────────────────────────────────────── */
.uber-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 32px;
}

.uber-intro__headline {
    font-size: 18px;
    font-weight: 700;
    color: #A01A2A;
    margin: 0 0 16px;
}

.uber-intro__body {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 12px;
    color: #333;
}

.uber-intro__disclaimer {
    font-size: 13px;
    font-style: italic;
    color: #555;
    margin: 0;
}

/* ── Steps ────────────────────────────────────────────────── */
.uber-steps {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .uber-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.uber-step__number {
    font-size: 28px;
    font-weight: 700;
    color: #A01A2A;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.uber-step__number::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ccc;
}

.uber-step__title {
    font-size: 16px;
    font-weight: 700;
    color: #A01A2A;
    margin: 0 0 10px;
}

.uber-step__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* ── Event Cards ──────────────────────────────────────────── */
.uber-events {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .uber-events {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .uber-events {
        grid-template-columns: 1fr;
    }
}

.uber-event-card {
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.uber-event-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.uber-event-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    aspect-ratio: unset;
    object-fit: cover;
    display: block;
}

.uber-event-card__img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    display: block;
}

.uber-event-card__body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uber-event-card__artist {
    font-size: 25px;
    line-height: 32px;
    font-weight: 300;
    color: #A01A2A;
    margin: 0 0 4px;
    text-decoration: none;
}

.uber-event-card__artist:hover {
    text-decoration: underline;
    color: #A01A2A;
}

.uber-event-card__dates {
    font-size: 21px;
    line-height: 28px;
    font-weight: 700;
    color: #022D44;
    margin: 0 0 10px;
}

.uber-event-card__venue {
    font-size: 18px;
    line-height: 28px;
    color: #000000;
    margin: 0 0 16px;
}

.uber-event-card__cta {
    margin-top: auto;
    padding-top: 12px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #A01A2A;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.uber-event-card__cta:hover {
    color: #A01A2A;
    text-decoration: underline;
}

.uber-event-card__cta::after {
    content: '→';
}
