/* ==========================================================================
   GS Venue Blocks — prices.css
   Standard entry prices table (gs_block_prices → v3_standard_prices repeater).
   Inherits .wp-block-table base styling from hours.css; this file adds a bit
   more room between the 4-column price table and the prices footnote. The
   Members/Extras blocks now live in their own files — this sheet only covers
   the non-member entry table.
   ========================================================================== */

/* Prices table — 4 cols (Entry / Amount / Days / Notes).
   Pull the amount column a touch wider so large figures don't wrap. */
.gs-venue__body .gs-venue__prices-table { margin: 0 0 20px; }
.gs-venue__body .gs-venue__prices-table table { table-layout: auto; }
.gs-venue__body .gs-venue__prices-table td:nth-child(2) {
    font-weight: 600;
    white-space: nowrap;
    color: #000;
}
.gs-venue__body .gs-venue__prices-table th:nth-child(2) {
    width: 120px;
}

/* Footnote line — "Check the official website or call ... for current pricing". */
.gs-venue__body .gs-venue__prices-footnote {
    font-size: 13px;
    color: #111;
    margin: 8px 0 0;
    line-height: 1.5;
}
.gs-venue__body .gs-venue__prices-footnote a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.gs-venue__body .gs-venue__prices-footnote a:hover {
    text-decoration-thickness: 2px;
}

/* Legacy placeholder classes kept for back-compat with any pre-v3.1 markup. */
.gs-venue__prices-tier { margin-top: 24px; }
.gs-venue__prices-tier:first-child { margin-top: 0; }
.gs-venue__prices-tier .gs-venue__section-label { margin-bottom: 12px; }

@media (max-width: 640px) {
    .gs-venue__body .gs-venue__prices-table th:nth-child(2) { width: auto; }
}
