/* ──────────────────────────────────────────────────────────────────────
   myRangabhoomi Shows — shared grid + shortcode styles
   ────────────────────────────────────────────────────────────────────── */

/* ── Force Laila font across all plugin UI ──────────────────────────── */
.mrb-filters-card,
.mrb-filters-card *,
.mrb-shows-grid,
.mrb-show-card,
.mrb-show-card *,
.mrb-shows-pagination,
.mrb-shows-empty,
.mrb-venues-grid,
.mrb-venue-card,
.mrb-venue-card * {
    font-family: 'Laila', system-ui, sans-serif !important;
}

/* ── Kill theme .post-content a border-bottom on cards ─────────────── */
.mrb-show-card a,
.mrb-show-card__link,
.mrb-show-card__link:hover,
.mrb-show-card a:hover,
.mrb-venue-card a,
.mrb-venue-card__link,
.mrb-venue-card__link:hover,
.mrb-venue-card a:hover {
    border-bottom: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* ── Login gate (legacy — natak shows shortcode only) ───────────────── */
.mrb-login-gate {
    padding: 32px;
    text-align: center;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin: 24px 0;
}
.mrb-login-gate p { font-size: 1.1rem; margin: 0; }
.mrb-login-gate a { font-weight: 600; }

/* ── Shared gate buttons (used by preview gate + venue gate) ────────── */
.mrb-gate-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, color 0.15s;
}
.mrb-gate-btn--primary {
    background: #4c4084;
    color: #fff !important;
}
.mrb-gate-btn--primary:hover {
    background: #3a3068;
    color: #fff !important;
    transform: translateY(-1px);
}
.mrb-gate-btn--outline {
    background: #ffc300;
    color: #1a1a2e !important;
    border: none !important;
}
.mrb-gate-btn--outline:hover {
    background: #e6b000;
    color: #1a1a2e !important;
    transform: translateY(-1px);
}

/* ── Shows grid preview wrap (logged-out) ───────────────────────────── */
.mrb-preview-wrap {
    position: relative;
    overflow: hidden;
    max-height: 800px; /* ~3 rows of cards on desktop */
    /* Anchor for the absolutely-positioned gate even when filters yield
       zero shows — without this, an empty grid collapses to height 0 and
       the gate floats up over the filter bar. */
    min-height: 420px;
}

/* Gradient + CTA overlay */
.mrb-preview-gate {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 380px;
    background: linear-gradient( to bottom, transparent 0%, rgba(255,255,255,0.85) 38%, #fff 62% );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    pointer-events: none; /* let clicks through to gradient area */
}
.mrb-preview-gate__inner {
    pointer-events: all;
    text-align: center;
    max-width: 440px;
    padding: 28px 24px 0;
    background: transparent;
}
/* Logo in gate — targets the img WordPress's get_custom_logo() produces */
.mrb-preview-gate__logo-wrap {
    margin-bottom: 14px;
}
.mrb-preview-gate__logo-wrap a,
.mrb-preview-gate__logo-wrap a:hover {
    display: block;
    border-bottom: none !important;
    box-shadow: none !important;
}
.mrb-preview-gate__logo-wrap img {
    display: block;
    max-width: 180px;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.mrb-preview-gate__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4c4084;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin: 0 0 10px;
}
.mrb-preview-gate__title {
    font-family: 'Laila', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.25;
}
.mrb-preview-gate__sub {
    font-size: 0.84rem;
    color: #777;
    margin: 0 0 20px;
}
.mrb-preview-gate__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tablet: 2 cols, 3 rows = 6 cards */
@media ( max-width: 1024px ) {
    .mrb-preview-wrap { max-height: 1100px; }
}
/* Mobile: 1 col, 4 rows = 4 cards */
@media ( max-width: 480px ) {
    .mrb-preview-wrap { max-height: 1200px; }
    .mrb-preview-gate { height: 380px; }
    .mrb-preview-gate__title { font-size: 1.2rem; }
    .mrb-gate-btn { padding: 11px 18px; font-size: 0.86rem; }
}

/* ── Filter card wrapper ────────────────────────────────────────────── */
.mrb-filters-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 16px 20px 18px;
    margin-bottom: 28px;
    overflow: hidden;   /* clip children at card border-radius */
}

/* ── Search row ─────────────────────────────────────────────────────── */
.mrb-search-row { margin-bottom: 14px; }
.mrb-search-wrap { position: relative; }
.mrb-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    display: flex;
    align-items: center;
}
.mrb-filter__search {
    width: 100%;
    padding: 11px 16px 11px 42px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fafafa;
    color: #1a1a2e;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    outline: none;
}
.mrb-filter__search::placeholder { color: #b0b0b0; }
.mrb-filter__search:focus {
    border-color: #c0392b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.09);
}

/* ── Controls row ───────────────────────────────────────────────────── */
.mrb-controls-row {
    display: flex;
    gap: 10px;
    align-items: stretch;   /* stretch so all children match tallest item */
    flex-wrap: nowrap;
}

/* ── Filter pill (city / venue) ─────────────────────────────────────── */
.mrb-filter-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    padding: 0 12px;        /* vertical centering via align-items; no top/bottom padding */
    min-height: 40px;
    box-sizing: border-box;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
    flex-shrink: 0;
    min-width: 0;
}
.mrb-filter-pill:focus-within {
    border-color: #c0392b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.09);
}
.mrb-filter-pill .pill-icon {
    color: #999;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.mrb-filter-pill .pill-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    flex-shrink: 0;
}
.mrb-filter-pill .pill-chevron {
    color: #bbb;
    flex-shrink: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    margin-left: 2px;
}
.mrb-filter__select {
    border: 0;              /* kill any browser-native bottom border */
    box-shadow: none;
    outline: none;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 80px;
    max-width: 140px;
    padding-right: 2px;
}
.mrb-filter__select:focus { outline: none; box-shadow: none; }

/* ── Date range ─────────────────────────────────────────────────────── */
.mrb-date-range {
    display: flex;
    align-items: stretch;   /* halves fill full height */
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    background: #fafafa;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 40px;
    box-sizing: border-box;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.mrb-date-range:focus-within {
    border-color: #c0392b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.09);
}
.mrb-date-half {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;        /* no top/bottom — height comes from parent */
    min-height: 40px;
}
.mrb-date-half .pill-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
}
.mrb-date-half .pill-icon {
    color: #999;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.mrb-date-sep {
    width: 1px;
    height: 24px;
    background: #e5e5e5;
    flex-shrink: 0;
}
.mrb-filter__date {
    border: 0;              /* kill browser-native bottom border / outline */
    box-shadow: none;
    outline: none;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a2e;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    width: 96px;
    height: 22px;           /* explicit height to match select line-height */
    line-height: 22px;
}
.mrb-filter__date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* ── Active (has value) state ───────────────────────────────────────── */
.mrb-filter-pill.is-active,
.mrb-date-range.is-active {
    border-color: #c0392b;
    background: rgba(192,57,43,0.04);
}
.mrb-filter-pill.is-active .pill-label,
.mrb-filter-pill.is-active .pill-icon,
.mrb-filter-pill.is-active .pill-chevron,
.mrb-date-range.is-active .pill-label,
.mrb-date-range.is-active .pill-icon { color: #c0392b; }

/* ── Controls spacer / reset ────────────────────────────────────────── */
.mrb-controls-spacer { flex: 1; }
.mrb-filter-reset {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    min-height: 40px;
    box-sizing: border-box;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: transparent;
    color: #888;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.mrb-filter-reset:hover {
    border-color: #c0392b;
    color: #c0392b;
    background: rgba(192,57,43,0.04);
}

/* ── Mobile filter toggle ───────────────────────────────────────────── */
.mrb-filter-toggle {
    display: none;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    background: #fafafa;
    font-size: 0.88rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.mrb-filter-toggle .mrb-toggle-icon { transition: transform 0.2s; }
.mrb-filter-toggle.is-open .mrb-toggle-icon { transform: rotate(180deg); }
.mrb-filter-toggle.is-open {
    border-color: #c0392b;
    color: #c0392b;
    background: #fff;
}

/* ── Filter panel (collapsible on mobile) ───────────────────────────── */
.mrb-filter-panel { /* always open on desktop */ }

/* ── Shows grid — 4 columns desktop ────────────────────────────────── */
.mrb-shows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: opacity 0.2s;
}
.mrb-shows-grid.is-loading { opacity: 0.4; pointer-events: none; }

/* ── Show card ──────────────────────────────────────────────────────── */
.mrb-show-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
}
.mrb-show-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}
.mrb-show-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Thumbnail */
.mrb-show-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
}
.mrb-show-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s;
}
.mrb-show-card:hover .mrb-show-card__thumb img { transform: scale(1.05); }
.mrb-show-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ece9e6 0%, #d8d4d0 100%);
}

/* Card body */
.mrb-show-card__body { padding: 10px 12px 12px; }
.mrb-show-card__meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Date column */
.mrb-show-card__datecol {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 34px;
    flex-shrink: 0;
}
.mrb-show-card__month {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1px;
}
.mrb-show-card__day {
    display: block;
    font-family: 'Laila', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a2e;
}

/* Thin divider between date and info */
.mrb-show-card__divider {
    width: 1px;
    height: 36px;
    background: #efefef;
    flex-shrink: 0;
}

/* Info column */
.mrb-show-card__infocol {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mrb-show-card__time {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #aaa;
}
.mrb-show-card__title {
    font-family: 'Laila', serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #1a1a2e !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View Details action icon */
.mrb-show-card__action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-left: 2px;
}
.mrb-show-card__action-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.mrb-show-card:hover .mrb-show-card__action-btn {
    border-color: #c0392b;
    color: #c0392b;
    background: rgba(192,57,43,0.06);
    transform: translateX(2px);
}

/* ── Featured / paid-placement card ────────────────────────────────── */
.mrb-show-card--featured {
    border-color: transparent;
    box-shadow:
        0 0 0 1.5px rgba(200,155,30,0.55),
        0 2px 16px rgba(200,155,30,0.10);
    background: #fffdf5;
}
.mrb-show-card--featured:hover {
    box-shadow:
        0 0 0 1.5px rgba(200,155,30,0.7),
        0 10px 32px rgba(200,155,30,0.18);
    transform: translateY(-3px);
}
.mrb-show-card--featured .mrb-show-card__day   { color: #b8860b; }
.mrb-show-card--featured .mrb-show-card__divider { background: rgba(200,155,30,0.2); }

/* Featured badge */
.mrb-featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #c8a020 0%, #e8c840 100%);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px 3px 6px;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 1px 8px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* ── Pagination ─────────────────────────────────────────────────────── */
.mrb-shows-pagination {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    justify-content: center;
}
.mrb-page-btn {
    padding: 9px 22px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: #555;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.mrb-page-btn:hover {
    border-color: #c0392b;
    color: #c0392b;
    background: rgba(192,57,43,0.04);
}

/* ── Empty message ──────────────────────────────────────────────────── */
.mrb-shows-empty,
.mrb-venues-empty,
.mrb-no-shows { color: #888; font-style: italic; margin: 24px 0; }

/* ── Venues grid ────────────────────────────────────────────────────── */
.mrb-city-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 16px;
}
.mrb-city-tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-weight: 500;
    color: #555;
    transition: color 0.15s, border-color 0.15s;
}
.mrb-city-tab:hover { color: #333; }
.mrb-city-tab.is-active { color: #c0392b; border-bottom-color: #c0392b; }

.mrb-area-filter-wrap { margin-bottom: 20px; }

.mrb-venues-grid {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 220px, 1fr ) );
    gap: 16px;
    transition: opacity 0.2s;
}
.mrb-venues-grid.is-loading { opacity: 0.5; pointer-events: none; }

/* ── Venue card ─────────────────────────────────────────────────────── */
.mrb-venue-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
    align-self: start;   /* don't stretch to row height — card is only as tall as its content */
}
.mrb-venue-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}
.mrb-venue-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Compact fixed-height image — same size with or without a real photo */
.mrb-venue-card__img-wrap {
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f0f0f0;
}
.mrb-venue-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.32s;
}
.mrb-venue-card:hover .mrb-venue-card__img { transform: scale(1.05); }

/* Card body */
.mrb-venue-card__body {
    padding: 10px 12px 12px;
}
/* Kill theme p margins inside venue cards */
.mrb-venue-card__body p {
    margin: 0 !important;
}
.mrb-venue-card__name {
    font-family: 'Laila', serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    margin: 0 0 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mrb-venue-card__marathi {
    font-size: 0.78rem;
    color: #666;
    margin: 0 0 5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Area · City on one compact line */
.mrb-venue-card__meta {
    font-size: 0.75rem;
    color: #888;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mrb-venue-card__count {
    font-size: 0.78rem;
    color: #c0392b;
    font-weight: 600;
    margin: 6px 0 0;
}

/* ── Popular venue card ─────────────────────────────────────────────── */
.mrb-venue-card--featured {
    border-color: transparent;
    box-shadow:
        0 0 0 1.5px rgba(76,64,132,0.5),
        0 2px 16px rgba(76,64,132,0.10);
}
.mrb-venue-card--featured:hover {
    box-shadow:
        0 0 0 1.5px rgba(76,64,132,0.75),
        0 10px 28px rgba(76,64,132,0.18);
}

/* Popular badge — sits over the image */
.mrb-venue-card__img-wrap { position: relative; }
.mrb-venue-featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #4c4084;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px 3px 6px;
    border-radius: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.18);
    pointer-events: none;
    z-index: 1;
}

/* ── Shared table (natak shows, venue shows, other shows) ──────────── */
.mrb-shows-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.mrb-shows-table th,
.mrb-shows-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.mrb-shows-table th { font-weight: 600; color: #444; background: #fafafa; }
.mrb-shows-table tr:hover td { background: #f9f9f9; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.mrb-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, opacity 0.15s;
    border: none;
}
.mrb-btn--primary  { background: #c0392b; color: #fff; }
.mrb-btn--primary:hover { background: #a93226; color: #fff; }
.mrb-btn--outline  { background: transparent; border: 2px solid #c0392b; color: #c0392b; }
.mrb-btn--outline:hover { background: #c0392b; color: #fff; }
.mrb-btn--small    { padding: 5px 12px; font-size: 0.8rem; }

/* ── Natak shows list (replaces table) ──────────────────────────────── */
.mrb-natak-shows { margin: 24px 0; }

.mrb-show-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mrb-show-list__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.mrb-show-list__item:last-child { border-bottom: none; }

/* Left: date block */
.mrb-show-list__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
    flex-shrink: 0;
}
.mrb-show-list__month {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}
.mrb-show-list__day {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a2e;
}

/* Middle: time + title + venue */
.mrb-show-list__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.mrb-show-list__time {
    font-size: 0.78rem;
    color: #888;
}
.mrb-show-list__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e !important;
    text-decoration: none;
    line-height: 1.3;
}
.mrb-show-list__title:hover { color: #c0392b !important; }
.mrb-show-list__venue {
    font-size: 0.82rem;
    color: #555;
}

/* Right: action button */
.mrb-show-list__action { flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────────────── */

/* iPad — 2 columns */
@media ( max-width: 1024px ) {
    .mrb-shows-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Large phones / small tablets — filter toggle appears */
@media ( max-width: 768px ) {
    .mrb-shows-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .mrb-filter-toggle { display: flex; }

    .mrb-filter-panel {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.28s ease;
    }
    .mrb-filter-panel.is-open { max-height: 500px; }

    .mrb-controls-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        padding-top: 10px;
        /* no separate border or background — contained by .mrb-filters-card */
    }
    /* reset fixed height constraints for stacked layout */
    .mrb-filter-pill    { width: 100%; min-height: unset; padding: 8px 12px; }
    .mrb-filter__select { min-width: unset; max-width: unset; flex: 1; }
    .mrb-date-range     { width: 100%; min-height: unset; align-items: center; }
    .mrb-date-half      { flex: 1; min-height: unset; padding: 8px 12px; }
    .mrb-filter__date   { width: 100%; height: auto; line-height: inherit; }
    .mrb-controls-spacer { display: none; }
    .mrb-filter-reset   { width: 100%; min-height: unset; padding: 8px 14px; justify-content: center; margin-top: 4px; }
}

/* Mobile portrait — 1 column, 16:9 cards */
@media ( max-width: 480px ) {
    .mrb-shows-grid  { grid-template-columns: 1fr; gap: 10px; }
    .mrb-venues-grid { grid-template-columns: 1fr; }
}

/* ── rows-mode teaser: "View All" button ────────────────────────────── */
.mrb-grid-viewmore {
    text-align: center;
    margin-top: 28px;
    padding-bottom: 4px;
}
.mrb-grid-viewmore .mrb-gate-btn {
    min-width: 200px;
}
