/* ===================================================================
   show.css - styles for the public show detail page (/show.aspx)

   Re-skins the top banner and show-information area to the CenterPoint
   Legacy Theatre layout, in Plaza brand colors. Scoped under
   body.page-show. The Ticket Availability picker and The Cast section
   reuse classes from plaza-brand.css and are NOT restyled here. Brand
   tokens (--plaza-*) come from plaza-brand.css.
   =================================================================== */

body.page-show {
    --show-maxw: 1180px;
    background: var(--plaza-paper, #FAF6EC);
}

/* ===================================================================
   1. BANNER
   =================================================================== */
.page-show .show-hero {
    background:
        linear-gradient(135deg, #5a1a1f 0%, var(--plaza-brown, #441116) 55%, var(--plaza-brown-deep, #2d0a0e) 100%);
    color: #fff;
}

.page-show .show-hero-inner {
    max-width: var(--show-maxw);
    margin: 0 auto;
    padding: 22px 18px 36px;
}

.page-show .show-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--plaza-cream, #F5E2B8);
    text-decoration: none;
    opacity: 0.9;
    margin-bottom: 22px;
}

.page-show .show-back:hover { opacity: 1; }

.page-show .show-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    text-align: center;
}

.page-show .show-hero-poster {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
}

.page-show .show-hero-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.page-show .show-hero-img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
    background: linear-gradient(135deg, var(--plaza-gold, #C4932C) 0%, var(--plaza-gold-dark, #A87A1F) 100%);
    color: var(--plaza-brown, #441116);
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 700;
    font-size: 26px;
}

.page-show .show-hero-main {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
}

.page-show .show-hero-stage {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--plaza-cream, #F5E2B8);
    margin-bottom: 8px;
}

.page-show .show-hero-title {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 800;
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 14px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.page-show .show-hero-pillrow {
    margin-bottom: 14px;
}

.page-show .show-hero-blurb {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 22px;
    max-width: 60ch;
}

.page-show .show-hero-ctas {
    margin-bottom: 22px;
}

.page-show .show-hero-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 36px;
    background: var(--plaza-gold, #C4932C);
    color: var(--plaza-brown, #441116);
    border-radius: var(--plaza-radius, 6px);
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transition: background 0.15s ease, transform 0.12s ease;
}

.page-show .show-hero-ticket:hover {
    background: var(--plaza-gold-light, #E4B056);
    transform: translateY(-1px);
}

.page-show .show-hero-playing {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 16px;
    color: var(--plaza-cream, #F5E2B8);
}

.page-show .show-hero-playing i { color: var(--plaza-gold, #C4932C); }
.page-show .show-hero-playing .lbl { font-weight: 700; }
.page-show .show-hero-playing .dates { color: #fff; }

/* Show-sponsor badge (tblphotos type 11) in the hero, like welcome.aspx.
   Centered under the content on mobile; pinned bottom-right on desktop. */
.page-show .show-hero-sponsor {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
}
.page-show .show-hero-sponsor img {
    height: 64px;
    max-height: 64px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

/* ===================================================================
   2. SHOW INFORMATION
   =================================================================== */
.page-show .show-main {
    max-width: var(--show-maxw);
    margin: 0 auto;
    padding: 0 18px;
}

.page-show .show-info {
    padding: 36px 0 8px;
}

.page-show .show-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.page-show .show-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--plaza-paper-edge, #EFE6CC);
    border-radius: 10px;
    padding: 16px 18px;
    box-shadow: var(--plaza-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
}

.page-show .show-info-card-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 147, 44, 0.16);
    color: var(--plaza-gold-dark, #A87A1F);
    font-size: 19px;
}

.page-show .show-info-card-title {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--plaza-gold-dark, #A87A1F);
    margin-bottom: 2px;
}

.page-show .show-info-card-value {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-size: 19px;
    font-weight: 700;
    color: var(--plaza-brown, #441116);
    line-height: 1.2;
}

/* Full-size section heading, matching .show-detail-section h2
   ("Ticket Availability"). */
.page-show .show-info-desc-eyebrow {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 700;
    font-size: 26px;
    color: var(--plaza-brown, #441116);
    margin: 0 0 12px;
}

/* The synopsis itself reuses .show-detail-about-body from plaza-brand.css. */

.page-show .show-venue-block {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--plaza-paper-edge, #EFE6CC);
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: var(--plaza-text, #1d1d1d);
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.page-show .show-venue-heading {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    color: var(--plaza-brown, #441116);
    margin: 0 0 10px;
}

/* The text column sizes to its content (not flex-grow) so the photo sits
   right next to the address instead of being pushed to the far edge. */
.page-show .show-venue-info { flex: 0 1 auto; min-width: 0; max-width: 360px; }

.page-show .show-venue-photo { flex: 0 0 auto; }

.page-show .show-venue-photo img {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(45, 10, 14, 0.15);
}

/* On phones, keep the venue text and photo side by side (don't stack the
   photo below); just shrink the gap, heading, and image so both fit. */
@media (max-width: 600px) {
    .page-show .show-venue-block { gap: 14px; }
    .page-show .show-venue-heading { font-size: 18px; }
    .page-show .show-venue-photo img { max-width: 130px; }
}

.page-show .show-venue-name {
    font-weight: 700;
    color: var(--plaza-brown, #441116);
}

.page-show .show-venue-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-weight: 600;
    color: var(--plaza-brown, #441116);
    text-decoration: none;
    border-bottom: 2px solid var(--plaza-gold, #C4932C);
    padding-bottom: 1px;
}

.page-show .show-venue-map i { color: var(--plaza-gold-dark, #A87A1F); }

/* Description + sponsor: two columns on desktop (description left, a larger
   sponsor image to the right), stacked on mobile. */
.page-show .show-info-desc-main { min-width: 0; }

.page-show .show-sponsor {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--plaza-paper-edge, #EFE6CC);
    text-align: center;
}

.page-show .show-sponsor-eyebrow {
    display: block;
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--plaza-gold, #C4932C);
    margin-bottom: 14px;
}

.page-show .show-sponsor-badge img.show-sponsor-img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(45, 10, 14, 0.15));
}

/* Show Sponsor Ad (tblphotos type 2) in the right column. Authored at 600px,
   scaled to the column width. */
.page-show .show-sponsor-badge img.show-sponsor-ad {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(45, 10, 14, 0.12);
}

.page-show .show-sponsor-name {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--plaza-brown, #441116);
}

@media (min-width: 768px) {
    .page-show .show-info-desc {
        display: flex;
        align-items: flex-start;
        gap: 44px;
    }
    .page-show .show-info-desc-main { flex: 1 1 auto; }
    .page-show .show-sponsor {
        flex: 0 0 300px;
        margin-top: 0;
        padding-top: 6px;
        border-top: 0;
    }
    .page-show .show-sponsor-badge img.show-sponsor-img { max-width: 300px; }
}

/* ===================================================================
   Promotional ad strip (Show Sponsor Ad + Visit Cleburne)
   =================================================================== */
.page-show .show-ads {
    margin: 28px 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-show .show-ad { width: 100%; text-align: center; }

.page-show .show-ad-img {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(45, 10, 14, 0.12);
}

/* ===================================================================
   3. TICKET POLICIES (collapsible)
   =================================================================== */
.page-show .show-policy-wrap {
    margin: 12px 0 4px;
}

.page-show .show-policy {
    background: #fff;
    border: 1px solid var(--plaza-paper-edge, #EFE6CC);
    border-radius: 10px;
    overflow: hidden;
}

.page-show .show-policy-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 700;
    font-size: 20px;
    color: var(--plaza-brown, #441116);
}

.page-show .show-policy-summary::-webkit-details-marker { display: none; }

.page-show .show-policy-chevron {
    color: var(--plaza-gold-dark, #A87A1F);
    font-size: 15px;
    transition: transform 0.2s ease;
}

.page-show .show-policy[open] .show-policy-chevron { transform: rotate(180deg); }

.page-show .show-policy-body {
    padding: 4px 20px 20px;
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 15px;
    line-height: 1.65;
    color: var(--plaza-text, #1d1d1d);
    border-top: 1px solid var(--plaza-paper-edge, #EFE6CC);
}

.page-show .show-policy-body p { margin: 12px 0; }
.page-show .show-policy-body p:last-child { margin-bottom: 0; }

/* ===================================================================
   TICKET AVAILABILITY PICKER - slot-tagged, day-grouped redesign.
   Adapted from the performance-listing handoff into Plaza brand:
   every performance carries a Morning / Matinee / Evening tag (derived
   from its start hour) so same-day matinee vs evening shows read
   unmistakably. The whole row is the link. Scoped to .page-show so the
   shared .perf-row styles used by ticketing/show.aspx are untouched.
   =================================================================== */
.page-show .show-detail-picker {
    padding: 28px 0 8px;
}

/* Calendar rail (hidden on phones, shown tablet+ like the base cal). */
.page-show .show-mini-cal-col { display: none; }
@media (min-width: 768px) { .page-show .show-mini-cal-col { display: block; } }
.page-show .smc-clear {
    margin-top: 14px;
    background: none; border: 0; padding: 0;
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 12.5px; font-weight: 700;
    color: var(--plaza-gold-dark, #A87A1F);
    cursor: pointer;
}
.page-show .smc-clear:hover { text-decoration: underline; }

/* Listing column: stack of day groups, capped narrow now the row is the
   link (no separate Select button). */
.page-show .perf-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 600px;
}

/* ---- Day group: one header per calendar day, with a pick-one pill when
   the day holds more than one performance. ---- */
.page-show .show-perf-group {
    border-radius: 12px;
    transition: background-color .2s ease, box-shadow .2s ease;
}
.page-show .show-perf-group.is-lit {
    background: rgba(196, 147, 44, .08);
    box-shadow: inset 0 0 0 1.5px rgba(196, 147, 44, .35);
    padding: 10px;
    margin: -10px;
}
.page-show .show-perf-group-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
}
.page-show .show-perf-group-date {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 12.5px; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; color: var(--plaza-brown, #441116);
    white-space: nowrap;
}
.page-show .show-perf-group-pill {
    font-size: 11px; font-weight: 700; white-space: nowrap;
    color: var(--plaza-gold-dark, #A87A1F);
    background: rgba(196, 147, 44, .14);
    padding: 2px 9px; border-radius: 20px; letter-spacing: .02em;
}
.page-show .show-perf-group-rule {
    flex: 1; height: 1px; background: var(--plaza-paper-edge, #EFE6CC);
}
.page-show .show-perf-group-rows {
    display: flex; flex-direction: column; gap: 8px;
}

/* ---- Row: the entire row is the link. 4px left border carries the
   slot accent. ---- */
.page-show .show-perf-row {
    display: flex; align-items: stretch;
    border: 1.5px solid var(--plaza-paper-edge, #EFE6CC);
    border-left: 4px solid var(--slot-accent, var(--plaza-gold, #C4932C));
    border-radius: 10px; overflow: hidden;
    background: #fff; text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.page-show a.show-perf-row:hover {
    border-color: var(--slot-accent, var(--plaza-gold, #C4932C));
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
    transform: translateY(-1px);
    text-decoration: none;
}
.page-show a.show-perf-row:active { transform: translateY(0); }

/* Slot accents, drawn from the Plaza palette: evening is the deep-brown
   outlier; matinee + morning live in the warm gold family, told apart
   foremost by icon and word. */
.page-show .perf-slot-evening { --slot-accent: var(--plaza-brown, #441116);     --slot-wash: rgba(68, 17, 22, .06); }
.page-show .perf-slot-matinee { --slot-accent: var(--plaza-gold-dark, #A87A1F); --slot-wash: rgba(196, 147, 44, .10); }
.page-show .perf-slot-morning { --slot-accent: var(--plaza-gold, #C4932C);      --slot-wash: rgba(228, 176, 86, .18); }

/* Tag cell: eyebrow (icon + slot word) over a large start time. */
.page-show .perf-tag {
    width: 116px; flex: 0 0 auto;
    padding: 13px 14px;
    display: flex; flex-direction: column; gap: 5px; justify-content: center;
    background: var(--slot-wash, rgba(196, 147, 44, .10));
}
.page-show .perf-tag-eyebrow {
    display: flex; align-items: center; gap: 6px;
    color: var(--slot-accent, var(--plaza-gold, #C4932C));
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 10.5px; font-weight: 800; letter-spacing: .07em;
}
.page-show .perf-slot-ico { display: block; flex: 0 0 auto; }
.page-show .perf-tag-time {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-size: 21px; font-weight: 700; line-height: 1;
    color: var(--plaza-brown, #441116);
}
.page-show .perf-tag-time .mer {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 12px; font-weight: 600; margin-left: 3px;
    color: var(--plaza-muted, #6b6b6b);
}

/* Details cell: production title + availability line. */
.page-show .perf-detail {
    flex: 1 1 auto; min-width: 0;
    padding: 13px 15px;
    display: flex; flex-direction: column; gap: 5px; justify-content: center;
}
.page-show .perf-detail-name {
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-size: 15.5px; font-weight: 600; color: var(--plaza-brown, #441116);
    line-height: 1.2;
}
.page-show .perf-avail {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 13px; font-weight: 600; color: var(--plaza-muted, #6b6b6b);
}
.page-show .perf-avail .dot {
    width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
    background: var(--plaza-muted, #6b6b6b);
}
.page-show .perf-avail .dot.green  { background: #2e7d32; }
.page-show .perf-avail .dot.yellow { background: var(--plaza-gold, #C4932C); }
.page-show .perf-avail .dot.red    { background: #b4372a; }
.page-show .perf-avail.is-limited  { color: #b4372a; }
.page-show .perf-low {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 11.5px; font-weight: 700; color: #b4372a;
}

/* Affordance cell: chevron in the slot accent, or a Sold Out label. */
.page-show .perf-aff {
    display: flex; align-items: center; padding: 0 14px; flex: 0 0 auto;
    color: var(--slot-accent, var(--plaza-gold, #C4932C));
}
.page-show .perf-chev { transition: transform .15s ease; }
.page-show a.show-perf-row:hover .perf-chev { transform: translateX(3px); }
.page-show .perf-soldout {
    font-family: var(--plaza-font-ui, "Inter", sans-serif);
    font-size: 12.5px; font-weight: 700; color: #9a948c; white-space: nowrap;
}

/* Sold-out rows are inert and dimmed, with a grey accent. */
.page-show .show-perf-row.is-soldout {
    opacity: .62;
    border-left-color: #cfcac2;
    cursor: default;
}
.page-show .show-perf-row.is-soldout .perf-tag-eyebrow,
.page-show .show-perf-row.is-soldout .perf-aff { color: #9a948c; }
.page-show .show-perf-row.is-soldout .perf-tag { background: rgba(0, 0, 0, .04); }

/* Phone: tighter tag cell. */
@media (max-width: 767px) {
    .page-show .perf-tag { width: 100px; padding: 11px 12px; }
    .page-show .perf-tag-time { font-size: 20px; }
    .page-show .perf-detail { padding: 11px 12px; }
}

/* ===================================================================
   4. IN-PROGRESS CART MODAL (carried over from the prior page)
   =================================================================== */
.page-show .show-cart-overlay {
    position: fixed; inset: 0; z-index: 7500;
    background: rgba(38, 16, 12, 0.65);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.page-show .show-cart-overlay.is-hiding { display: none; }
.page-show .show-cart-card {
    background: #fff;
    border: 1px solid var(--plaza-paper-edge, #EFE6CC);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(61, 21, 23, 0.35);
    max-width: 480px; width: 100%;
    overflow: hidden;
}
.page-show .show-cart-head {
    background: var(--plaza-brown, #441116); color: var(--plaza-cream, #F5E2B8);
    padding: 14px 20px;
}
.page-show .show-cart-head h3 {
    margin: 0;
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-weight: 600; font-size: 20px; color: var(--plaza-cream, #F5E2B8);
}
.page-show .show-cart-body {
    padding: 18px 22px;
    color: var(--plaza-brown, #441116); font-size: 14px; line-height: 1.5;
}
.page-show .show-cart-body p { margin: 0 0 10px; }
.page-show .show-cart-detail {
    background: rgba(216, 190, 130, 0.18);
    border-left: 3px solid var(--plaza-gold, #C4932C);
    padding: 10px 14px; margin: 10px 0;
    font-size: 13px;
}
.page-show .show-cart-detail .lbl {
    display: block; font-size: 10px; font-weight: 600;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: #8C6A2C; margin-bottom: 2px;
}
.page-show .show-cart-detail .val {
    font-weight: 600; color: var(--plaza-brown, #441116);
    font-family: var(--plaza-font-display, "Playfair Display", Georgia, serif);
    font-size: 16px;
}
.page-show .show-cart-detail .when {
    color: var(--plaza-brown, #441116); font-size: 13px;
    margin-top: 6px;
}
.page-show .show-cart-foot {
    display: flex; justify-content: flex-end; gap: 10px;
    padding: 12px 22px 18px;
}
.page-show .show-cart-btn-primary {
    background: var(--plaza-gold, #C4932C); color: var(--plaza-brown, #441116);
    border: 0; padding: 10px 18px; border-radius: 999px;
    font-weight: 700;
    font-size: 12px; letter-spacing: 1.4px;
    text-transform: uppercase; cursor: pointer; text-decoration: none;
}
.page-show .show-cart-btn-primary:hover { background: #b98635; }
.page-show .show-cart-btn-secondary {
    background: transparent; color: #6B1F22;
    border: 1px solid var(--plaza-paper-edge, #EFE6CC); padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600; font-size: 12px; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer;
}
.page-show .show-cart-btn-secondary:hover { background: rgba(107, 31, 34, 0.06); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (min-width: 768px) {
    .page-show .show-hero-inner { padding: 26px 32px 46px; }
    .page-show .show-hero-grid {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 40px;
    }
    .page-show .show-hero-poster { width: 300px; }
    .page-show .show-hero-title { font-size: 58px; }
    .page-show .show-hero-blurb { margin-left: 0; margin-right: 0; }
    .page-show .show-hero-sponsor {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-top: 0;
    }
    .page-show .show-hero-sponsor img { height: 88px; max-height: 88px; }

    .page-show .show-info-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .page-show .show-main { padding: 0 32px; }
    .page-show .show-info-desc-eyebrow { font-size: 28px; }
}

@media (min-width: 1024px) {
    .page-show .show-hero-title { font-size: 66px; }
    .page-show .show-hero-poster { width: 340px; }
}
