:root {
    --tcl-bg: #101010;
    --tcl-panel: #181818;
    --tcl-panel-soft: #202020;
    --tcl-text: #ffffff;
    --tcl-muted: #cfc7bd;
    --tcl-accent: #dd8e18;
    --tcl-accent-hover: #bf721a;
    --tcl-border: rgba(255,255,255,0.14);
}
.tcl-events-list {
    display: grid;
    gap: 28px;
    margin: 30px auto;
    max-width: 1180px;
}
.tcl-event-card {
    display: grid;
    grid-template-columns: minmax(220px, 38%) 1fr;
    overflow: hidden;
    background: var(--tcl-panel);
    border: 1px solid var(--tcl-border);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.tcl-event-card__image {
    display: block;
    min-height: 260px;
    background: var(--tcl-panel-soft);
}
.tcl-event-card__image img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}
.tcl-event-card__body {
    padding: 30px;
    color: var(--tcl-text);
}
.tcl-event-card__date {
    color: var(--tcl-accent);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}
.tcl-event-card__title {
    margin: 0 0 10px;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.1;
}
.tcl-event-card__title a {
    color: var(--tcl-text);
    text-decoration: none;
}
.tcl-event-card__title a:hover {
    color: var(--tcl-accent);
}
.tcl-event-card__host {
    color: var(--tcl-muted);
    margin-bottom: 14px;
    font-weight: 600;
}
.tcl-event-card__excerpt {
    color: var(--tcl-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}
.tcl-event-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tcl-accent);
    color: #111 !important;
    border-radius: 8px;
    padding: 12px 22px;
    text-decoration: none !important;
    font-weight: 700;
}
.tcl-event-card__button:hover {
    background: #fff;
    color: #111 !important;
}
.tcl-events-placeholder {
    background: var(--tcl-panel);
    border: 1px solid var(--tcl-border);
    border-radius: 16px;
    padding: 34px;
    color: var(--tcl-text);
    text-align: center;
}
.tcl-events-placeholder h3 {
    color: var(--tcl-accent);
    margin-top: 0;
}
.tcl-events-placeholder p {
    color: var(--tcl-muted);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 760px) {
    .tcl-event-card {
        grid-template-columns: 1fr;
    }
    .tcl-event-card__body {
        padding: 24px;
    }
}

/* ==================================================
   TCL Events v1.0.2 - Single Event Page Foundation
================================================== */
body.tcl-event-single-page {
    background: #0b0b0b;
}
.tcl-event-single {
    background: radial-gradient(circle at top left, rgba(221,142,24,0.09), transparent 34%), #0b0b0b;
    color: var(--tcl-text);
    padding: clamp(42px, 6vw, 86px) 20px;
}
.tcl-event-single__wrap {
    max-width: 1160px;
    margin: 0 auto;
}
.tcl-event-single__back {
    color: var(--tcl-accent) !important;
    text-decoration: none !important;
    font-weight: 700;
    display: inline-flex;
    margin-bottom: 28px;
}
.tcl-event-single__back:hover {
    color: #ffffff !important;
}
.tcl-event-single__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 44%);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    margin-bottom: clamp(34px, 5vw, 64px);
}
.tcl-event-single__eyebrow,
.tcl-event-single__datetime {
    color: var(--tcl-accent);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
}
.tcl-event-single__title {
    color: #ffffff !important;
    font-size: clamp(42px, 7vw, 82px) !important;
    line-height: .98 !important;
    margin: 14px 0 20px !important;
    max-width: 820px;
}
.tcl-event-single__datetime {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    font-size: 18px;
}
.tcl-event-single__status {
    display: inline-flex;
    margin-top: 22px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--tcl-border);
    color: var(--tcl-muted);
    background: rgba(255,255,255,0.04);
    font-weight: 700;
    font-size: 13px;
}
.tcl-event-single__status--sold_out,
.tcl-event-single__status--cancelled,
.tcl-event-single__status--postponed {
    color: var(--tcl-accent);
    border-color: rgba(221,142,24,0.45);
}
.tcl-event-single__image {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--tcl-border);
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    background: var(--tcl-panel);
}
.tcl-event-single__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.tcl-event-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}
.tcl-event-single__content,
.tcl-event-single__details,
.tcl-event-single__action-panel {
    background: rgba(24,24,24,.92);
    border: 1px solid var(--tcl-border);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.tcl-event-single__content {
    padding: clamp(26px, 4vw, 42px);
    color: var(--tcl-muted);
    line-height: 1.8;
}
.tcl-event-single__content p,
.tcl-event-single__content li {
    color: var(--tcl-muted);
    font-size: 17px;
}
.tcl-event-single__content h2,
.tcl-event-single__content h3,
.tcl-event-single__details h2,
.tcl-event-single__action-panel h2 {
    color: var(--tcl-accent) !important;
}
.tcl-event-single__details {
    padding: 28px;
    position: sticky;
    top: 110px;
}
.tcl-event-single__details h2 {
    margin-top: 0;
    font-size: 24px;
}
.tcl-event-single__details p {
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 0;
    padding: 16px 0;
    color: var(--tcl-muted);
}
.tcl-event-single__details p:last-child {
    padding-bottom: 0;
}
.tcl-event-single__details strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
}
.tcl-event-single__details span {
    color: var(--tcl-muted);
}
.tcl-event-single__action-panel {
    margin-top: 30px;
    padding: clamp(26px, 4vw, 38px);
    color: var(--tcl-muted);
}
.tcl-event-single__action-panel h2 {
    margin-top: 0;
}
.tcl-event-single__small-note {
    font-size: 14px;
    color: rgba(255,255,255,.55) !important;
}
@media (max-width: 900px) {
    .tcl-event-single__hero,
    .tcl-event-single__grid {
        grid-template-columns: 1fr;
    }
    .tcl-event-single__details {
        position: static;
    }
}

/* ==================================================
   TCL Events v1.0.3 - RSVP Foundation
================================================== */
.tcl-rsvp-panel h2 {
    margin-top: 0;
    color: var(--tcl-accent) !important;
}
.tcl-rsvp-panel__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 24px;
}
.tcl-rsvp-panel__summary span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--tcl-border);
    border-radius: 999px;
    color: var(--tcl-muted);
    padding: 8px 12px;
}
.tcl-rsvp-panel__summary strong {
    color: #ffffff;
}
.tcl-rsvp-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}
.tcl-rsvp-form p {
    margin: 0;
}
.tcl-rsvp-form__full,
.tcl-rsvp-form__actions {
    grid-column: 1 / -1;
}
.tcl-rsvp-form label {
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 7px;
}
.tcl-rsvp-form label span {
    color: var(--tcl-accent);
}
.tcl-rsvp-form input,
.tcl-rsvp-form textarea {
    width: 100%;
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 10px !important;
    padding: 13px 14px !important;
    font: inherit;
    box-sizing: border-box;
}
.tcl-rsvp-form input:focus,
.tcl-rsvp-form textarea:focus {
    border-color: var(--tcl-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(221,142,24,.18) !important;
}
.tcl-rsvp-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px !important;
}
.tcl-rsvp-form button {
    background: var(--tcl-accent) !important;
    color: #111111 !important;
    border: 0 !important;
    border-radius: 9px !important;
    padding: 14px 28px !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}
.tcl-rsvp-form button:hover,
.tcl-rsvp-form button:focus {
    background: #ffffff !important;
    color: #111111 !important;
}
.tcl-rsvp-notice {
    border-radius: 10px;
    padding: 14px 16px;
    margin: 0 0 18px;
    font-weight: 700;
}
.tcl-rsvp-notice--success {
    background: var(--tcl-accent);
    color: #111111;
}
.tcl-rsvp-notice--error {
    background: #3a1616;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.14);
}
.tcl-rsvp-panel__closed {
    color: var(--tcl-muted);
    font-weight: 700;
}
.tcl-rsvp-hp {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
@media (max-width: 700px) {
    .tcl-rsvp-form {
        grid-template-columns: 1fr;
    }
    .tcl-rsvp-form__actions {
        justify-content: stretch;
    }
    .tcl-rsvp-form button {
        width: 100%;
    }
}


/* ==================================================
   TCL Events v1.0.4 - RSVP Reliability + Layout Refinement
================================================== */
.tcl-event-single__action-panel {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.tcl-rsvp-panel {
    max-width: 100%;
}
.tcl-rsvp-form input[type="number"] {
    max-width: 180px;
}
@media (min-width: 901px) {
    .tcl-event-single__action-panel {
        padding: 30px 34px;
    }
}
@media (max-width: 900px) {
    .tcl-event-single__action-panel {
        max-width: none;
    }
}


/* ==================================================
   TCL Events v1.0.7 - RSVP Polish
================================================== */
.tcl-rsvp-panel {
    padding: clamp(22px, 3vw, 32px) !important;
}
.tcl-rsvp-panel h2 {
    font-size: clamp(28px, 3vw, 36px) !important;
    margin-bottom: 14px !important;
}
.tcl-rsvp-panel__summary {
    margin: 12px 0 20px !important;
}
.tcl-rsvp-form {
    gap: 14px 18px !important;
}
.tcl-rsvp-form input,
.tcl-rsvp-form textarea {
    min-height: 48px;
}
.tcl-rsvp-form textarea {
    min-height: 105px;
}
.tcl-rsvp-notice {
    margin-bottom: 16px !important;
}
@media (min-width: 901px) {
    .tcl-event-single__action-panel:has(.tcl-rsvp-panel) {
        max-width: 860px;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }
    .tcl-event-single__action-panel:has(.tcl-rsvp-panel) .tcl-rsvp-panel {
        background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
        border: 1px solid var(--tcl-border);
        border-radius: 18px;
        box-shadow: 0 18px 50px rgba(0,0,0,.35);
    }
}


/* ==================================================
   TCL Events v1.0.8 - Single Page Layout Refinement
   - RSVP/actions now sit under the description column
   - Event title reduced for a more balanced desktop layout
================================================== */
.tcl-event-single__title {
    font-size: clamp(36px, 5vw, 64px) !important;
    line-height: 1.04 !important;
    max-width: 720px;
}
.tcl-event-single__main-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}
.tcl-event-single__action-panel {
    margin-top: 0 !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.tcl-event-single__action-panel:has(.tcl-rsvp-panel) {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.tcl-event-single__action-panel:has(.tcl-rsvp-panel) .tcl-rsvp-panel {
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border: 1px solid var(--tcl-border);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
}
.tcl-rsvp-panel {
    padding: clamp(20px, 2.5vw, 30px) !important;
}
.tcl-rsvp-panel h2 {
    font-size: clamp(25px, 2.5vw, 32px) !important;
}
@media (max-width: 900px) {
    .tcl-event-single__title {
        font-size: clamp(34px, 11vw, 52px) !important;
    }
    .tcl-event-single__main-column {
        gap: 22px;
    }
}

/* ==================================================
   TCL Events v1.1.0 - Paid Ticket Foundation
================================================== */
.tcl-ticket-panel {
    padding: clamp(20px, 2.5vw, 30px) !important;
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border: 1px solid var(--tcl-border);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
}
.tcl-ticket-panel h2 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    color: var(--tcl-accent) !important;
    font-size: clamp(25px, 2.5vw, 32px) !important;
}
.tcl-ticket-panel__closed,
.tcl-ticket-form__note {
    color: var(--tcl-muted) !important;
}
.tcl-ticket-form__rows {
    display: grid;
    gap: 14px;
}
.tcl-ticket-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: rgba(0,0,0,.20);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
}
.tcl-ticket-row__main strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 4px;
}
.tcl-ticket-row__main span {
    color: var(--tcl-muted);
    font-size: 15px;
}
.tcl-ticket-row__qty label {
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 6px;
}
.tcl-ticket-row__qty input[type="number"] {
    width: 100%;
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font: inherit;
}
.tcl-ticket-row__qty input[type="number"]:focus {
    border-color: var(--tcl-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(221,142,24,.18) !important;
}
.tcl-ticket-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 20px;
}
.tcl-ticket-form__actions button {
    background: var(--tcl-accent) !important;
    color: #111111 !important;
    border: 0 !important;
    border-radius: 9px !important;
    padding: 14px 28px !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}
.tcl-ticket-form__actions button:hover,
.tcl-ticket-form__actions button:focus {
    background: #ffffff !important;
    color: #111111 !important;
}
@media (max-width: 700px) {
    .tcl-ticket-row {
        grid-template-columns: 1fr;
    }
    .tcl-ticket-form__actions {
        align-items: stretch;
        flex-direction: column;
    }
    .tcl-ticket-form__actions button {
        width: 100%;
    }
}

/* WooCommerce cart/checkout styling intentionally lives in the child theme as of v1.1.5. */

/* v1.1.5 — keep event ticket quantity arrows visible. */
.tcl-ticket-row__qty input[type="number"] {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    padding-right: 4px !important;
}

.tcl-ticket-row__qty input[type="number"]::-webkit-outer-spin-button,
.tcl-ticket-row__qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button !important;
    display: block !important;
    opacity: 1 !important;
    margin-left: 4px !important;
}


/* ==================================================
   TCL Events v1.1.6 — polished ticket quantity stepper
================================================== */
.tcl-ticket-stepper {
    display: inline-grid;
    grid-template-columns: 36px 58px 36px;
    align-items: stretch;
    width: auto;
    min-height: 46px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0,0,0,.30);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}
.tcl-ticket-stepper__button {
    appearance: none;
    width: 36px;
    min-height: 46px;
    border: 0;
    border-radius: 0;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.90);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}
.tcl-ticket-stepper__button:hover,
.tcl-ticket-stepper__button:focus {
    background: rgba(221,142,24,.22);
    color: #ffffff;
    outline: none;
}
.tcl-ticket-stepper input[type="number"] {
    width: 58px !important;
    min-width: 58px !important;
    height: 46px !important;
    min-height: 46px !important;
    border: 0 !important;
    border-left: 1px solid rgba(255,255,255,.12) !important;
    border-right: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 0 !important;
    background: rgba(0,0,0,.18) !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    text-align: center !important;
    padding: 0 4px !important;
    box-shadow: none !important;
    -moz-appearance: textfield !important;
}
.tcl-ticket-stepper input[type="number"]::-webkit-outer-spin-button,
.tcl-ticket-stepper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}
.tcl-ticket-row__qty {
    justify-self: end;
}
@media (max-width: 640px) {
    .tcl-ticket-row__qty {
        justify-self: stretch;
    }
    .tcl-ticket-stepper {
        grid-template-columns: 34px 1fr 34px;
        width: 100%;
    }
    .tcl-ticket-stepper input[type="number"] {
        width: 100% !important;
        min-width: 0 !important;
    }
}


/* ==================================================
   TCL Events v1.2.4 — RSVP guest quantity stepper
================================================== */
.tcl-rsvp-form__guest-count {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tcl-rsvp-stepper {
    align-self: flex-start;
}
.tcl-rsvp-stepper input[type="number"] {
    margin: 0 !important;
}
@media (max-width: 640px) {
    .tcl-rsvp-stepper {
        align-self: stretch;
    }
}


/* ==================================================
   TCL Events v1.2.5 — RSVP stepper button polish
   Keeps RSVP form submit button styling from affecting +/- controls.
================================================== */
.tcl-rsvp-form .tcl-ticket-stepper__button {
    appearance: none !important;
    width: 36px !important;
    min-width: 36px !important;
    min-height: 46px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,.06) !important;
    color: rgba(255,255,255,.90) !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}
.tcl-rsvp-form .tcl-ticket-stepper__button:hover,
.tcl-rsvp-form .tcl-ticket-stepper__button:focus {
    background: rgba(221,142,24,.22) !important;
    color: #ffffff !important;
    outline: none !important;
}
.tcl-rsvp-form .tcl-ticket-stepper input[type="number"] {
    max-width: none !important;
}
.tcl-rsvp-form .tcl-rsvp-stepper {
    grid-template-columns: 36px 58px 36px;
}
@media (max-width: 640px) {
    .tcl-rsvp-form .tcl-rsvp-stepper {
        grid-template-columns: 34px 1fr 34px;
    }
    .tcl-rsvp-form .tcl-ticket-stepper__button {
        width: 34px !important;
        min-width: 34px !important;
    }
}

/* ==================================================
   TCL Events v1.2.6 — Event status controls
================================================== */
.tcl-event-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 10px;
}
.tcl-event-card__meta .tcl-event-card__date {
    margin-bottom: 0;
}
.tcl-event-card__status {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(221,142,24,.38);
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(221,142,24,.14);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.tcl-event-card--cancelled .tcl-event-card__button,
.tcl-event-card--postponed .tcl-event-card__button,
.tcl-event-card--sold_out .tcl-event-card__button {
    background: rgba(255,255,255,.10);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.16);
}
.tcl-event-status-message {
    padding: clamp(20px, 2.5vw, 30px);
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border: 1px solid rgba(221,142,24,.32);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.30);
}
.tcl-event-status-message h2 {
    margin: 0 0 10px !important;
    color: var(--tcl-accent) !important;
    font-size: clamp(25px, 2.5vw, 32px) !important;
}
.tcl-event-status-message p {
    margin: 0 !important;
    color: var(--tcl-muted) !important;
    font-size: 16px;
    line-height: 1.7;
}
.tcl-event-single__status--hidden_internal,
.tcl-event-single__status--draft {
    color: #ffffff;
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
}

/* ==================================================
   TCL Events v1.2.7 — Public events page polish
================================================== */
.tcl-events-public {
    display: block;
    width: 100%;
}
.tcl-events-listing-hero {
    max-width: 980px;
    margin: 10px auto 34px;
    padding: clamp(28px, 4vw, 46px);
    text-align: center;
    color: var(--tcl-text);
    background: radial-gradient(circle at top left, rgba(221,142,24,.16), transparent 42%), linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border: 1px solid var(--tcl-border);
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(0,0,0,.20);
}
.tcl-events-listing-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--tcl-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tcl-events-listing-hero h2 {
    margin: 0 0 14px !important;
    color: #ffffff !important;
    font-size: clamp(34px, 5vw, 58px) !important;
    line-height: 1.02 !important;
}
.tcl-events-listing-hero p {
    max-width: 760px;
    margin: 0 auto !important;
    color: var(--tcl-muted) !important;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
}
.tcl-event-card__type {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--tcl-muted);
    background: rgba(255,255,255,.06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.tcl-event-card__type--paid_ticketed,
.tcl-event-card__type--free_rsvp {
    color: #ffffff;
    border-color: rgba(221,142,24,.35);
    background: rgba(221,142,24,.12);
}
.tcl-events-placeholder {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(30px, 4vw, 48px);
}
.tcl-events-placeholder h3 {
    color: #ffffff !important;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.12;
}
.tcl-events-placeholder p {
    font-size: 17px;
    line-height: 1.7;
}
@media (max-width: 760px) {
    .tcl-events-listing-hero {
        margin-top: 0;
        padding: 26px 20px;
        border-radius: 18px;
    }
    .tcl-event-card__meta {
        gap: 8px;
    }
    .tcl-event-card__type,
    .tcl-event-card__status {
        font-size: 11px;
    }
}


/* ==================================================
   TCL Events v1.2.8 — Public title polish
================================================== */
.tcl-events-listing-hero__eyebrow {
    font-size: clamp(15px, 1.5vw, 18px) !important;
    letter-spacing: .10em;
    margin-bottom: 14px;
}
.tcl-events-listing-hero h2 {
    font-size: clamp(28px, 4vw, 46px) !important;
    line-height: 1.06 !important;
}
.tcl-event-card__title {
    font-size: clamp(19px, 2.2vw, 28px) !important;
    line-height: 1.16 !important;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.tcl-event-card__title a,
.tcl-event-card__title a:visited {
    color: #ffffff !important;
}
.tcl-event-card__title a:hover {
    color: var(--tcl-accent) !important;
}
.tcl-event-single__title {
    font-size: clamp(34px, 4.4vw, 56px) !important;
    line-height: 1.06 !important;
    max-width: 680px;
}
@media (max-width: 900px) {
    .tcl-event-single__title {
        font-size: clamp(31px, 10vw, 46px) !important;
    }
}


/* ==================================================
   TCL Events v1.2.9 — Final public listing heading/date polish
================================================== */
.tcl-events-listing-hero h2 {
    text-transform: uppercase;
    letter-spacing: .04em;
}
.tcl-event-card__meta .tcl-event-card__date {
    font-size: clamp(15px, 1.5vw, 18px) !important;
    font-weight: 900 !important;
    letter-spacing: .10em !important;
    text-transform: uppercase;
    color: var(--tcl-accent) !important;
}
@media (max-width: 760px) {
    .tcl-event-card__meta .tcl-event-card__date {
        font-size: 14px !important;
    }
}

/* ==================================================
   TCL Events v1.3.0 - Paid Ticket Attendee Details
================================================== */
.tcl-attendee-panel {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
}
.tcl-attendee-panel h3 {
    margin: 0 0 8px !important;
    color: #ffffff !important;
    font-size: clamp(20px, 2vw, 26px) !important;
}
.tcl-attendee-panel__intro {
    margin: 0 0 16px !important;
    color: var(--tcl-muted) !important;
}
.tcl-attendee-panel.is-empty .tcl-attendee-fields:before {
    content: 'Select ticket quantities above to add attendee details.';
    display: block;
    color: var(--tcl-muted);
    font-weight: 700;
}
.tcl-attendee-fields {
    display: grid;
    gap: 14px;
}
.tcl-attendee-card {
    padding: 16px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
}
.tcl-attendee-card h4 {
    margin: 0 0 12px !important;
    color: var(--tcl-accent) !important;
    font-size: 15px !important;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.tcl-attendee-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}
.tcl-attendee-card p {
    margin: 0 !important;
}
.tcl-attendee-card__full {
    grid-column: 1 / -1;
}
.tcl-attendee-card label {
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 7px;
}
.tcl-attendee-card label span {
    color: var(--tcl-accent);
}
.tcl-attendee-card input,
.tcl-attendee-card select,
.tcl-attendee-card textarea {
    width: 100%;
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font: inherit;
    box-sizing: border-box;
}
.tcl-attendee-card select option {
    background: #111111;
    color: #ffffff;
}
.tcl-attendee-card input:focus,
.tcl-attendee-card select:focus,
.tcl-attendee-card textarea:focus {
    border-color: var(--tcl-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(221,142,24,.18) !important;
}
@media (max-width: 700px) {
    .tcl-attendee-card__grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   TCL Events v1.3.7 - Waitlist Foundation
================================================== */
.tcl-waitlist-panel {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 34px);
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
}
.tcl-waitlist-panel h2 {
    margin-top: 0 !important;
    color: var(--tcl-accent) !important;
}
.tcl-waitlist-panel__message {
    color: var(--tcl-muted) !important;
    margin: 0 0 18px !important;
    line-height: 1.7;
}
.tcl-waitlist-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.tcl-waitlist-form p {
    margin: 0 !important;
}
.tcl-waitlist-form__full,
.tcl-waitlist-form__actions {
    grid-column: 1 / -1;
}
.tcl-waitlist-form label {
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}
.tcl-waitlist-form label span {
    color: var(--tcl-accent);
}
.tcl-waitlist-form input[type="text"],
.tcl-waitlist-form input[type="email"],
.tcl-waitlist-form input[type="number"],
.tcl-waitlist-form textarea {
    width: 100%;
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
    font: inherit;
    box-sizing: border-box;
}
.tcl-waitlist-form input:focus,
.tcl-waitlist-form textarea:focus {
    border-color: var(--tcl-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(221,142,24,.18) !important;
}
.tcl-waitlist-form__actions {
    display: flex;
    justify-content: flex-end;
}
.tcl-waitlist-form__actions button {
    background: var(--tcl-accent) !important;
    color: #111111 !important;
    border: 0 !important;
    border-radius: 10px !important;
    padding: 13px 24px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.tcl-waitlist-form__actions button:hover {
    background: #ffffff !important;
}
@media (max-width: 700px) {
    .tcl-waitlist-form {
        grid-template-columns: 1fr;
    }
    .tcl-waitlist-form__actions {
        justify-content: stretch;
    }
    .tcl-waitlist-form__actions button {
        width: 100%;
    }
}

/* TCL Events v1.6.0 Staff Mobile Check-In Portal */
body.tcl-staff-checkin-body {
    margin: 0;
    background: #160f0b;
    color: #f8efe5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.tcl-staff-checkin-body #wpadminbar {
    display: none !important;
}
.tcl-staff-app,
.tcl-staff-app * {
    box-sizing: border-box;
}
.tcl-staff-app {
    --tcl-staff-bg: #160f0b;
    --tcl-staff-card: #24170f;
    --tcl-staff-card-2: #301f14;
    --tcl-staff-border: rgba(255,255,255,.14);
    --tcl-staff-text: #fff8ee;
    --tcl-staff-muted: #d8c4ae;
    --tcl-staff-accent: #dd8e18;
    --tcl-staff-success: #36b36b;
    --tcl-staff-warning: #f2b84b;
    --tcl-staff-danger: #e76f51;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(221,142,24,.28), transparent 32rem),
        linear-gradient(180deg, #1c120c 0%, #100a07 100%);
    color: var(--tcl-staff-text);
    padding: max(18px, env(safe-area-inset-top)) 14px max(22px, env(safe-area-inset-bottom));
}
.tcl-staff-app a {
    color: inherit;
}
.tcl-staff-header {
    max-width: 980px;
    margin: 0 auto 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.tcl-staff-kicker {
    display: inline-flex;
    color: var(--tcl-staff-accent);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 7px;
}
.tcl-staff-header h1,
.tcl-staff-login-card h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 9vw, 42px);
    line-height: .95;
}
.tcl-staff-header-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}
.tcl-staff-header-actions a,
.tcl-staff-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--tcl-staff-border);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
    font-size: 14px;
}
.tcl-staff-button--primary,
.tcl-staff-scan-actions .tcl-staff-button--primary {
    border-color: var(--tcl-staff-accent);
    background: var(--tcl-staff-accent);
    color: #140d09 !important;
}
.tcl-staff-section,
.tcl-staff-event-hero,
.tcl-staff-scan-panel,
.tcl-staff-tools,
.tcl-staff-scan-card,
.tcl-staff-login-card {
    max-width: 980px;
    margin: 0 auto 16px;
}
.tcl-staff-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}
.tcl-staff-section-heading h2,
.tcl-staff-event-hero h2,
.tcl-staff-scan-panel h2,
.tcl-staff-scan-card h2 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
}
.tcl-staff-section-heading p,
.tcl-staff-event-hero p,
.tcl-staff-scan-card p,
.tcl-staff-login-card p {
    margin: 4px 0 0;
    color: var(--tcl-staff-muted);
}
.tcl-staff-event-list,
.tcl-staff-guest-list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.tcl-staff-event-card,
.tcl-staff-guest-card,
.tcl-staff-event-hero,
.tcl-staff-scan-panel,
.tcl-staff-tools,
.tcl-staff-scan-card,
.tcl-staff-empty,
.tcl-staff-login-card,
.tcl-staff-notice {
    border: 1px solid var(--tcl-staff-border);
    background: rgba(36,23,15,.92);
    border-radius: 24px;
    box-shadow: 0 16px 50px rgba(0,0,0,.22);
}
.tcl-staff-event-card {
    overflow: hidden;
}
.tcl-staff-event-card__main {
    display: block;
    padding: 18px;
    color: inherit !important;
    text-decoration: none !important;
}
.tcl-staff-event-card h3 {
    margin: 9px 0 4px;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}
.tcl-staff-event-card p {
    margin: 0 0 12px;
    color: var(--tcl-staff-muted);
}
.tcl-staff-event-card__stats,
.tcl-staff-totals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.tcl-staff-event-card__stats span,
.tcl-staff-totals div {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    padding: 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}
.tcl-staff-totals div span {
    display: block;
    color: var(--tcl-staff-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
}
.tcl-staff-totals div strong {
    color: #fff;
    font-size: 24px;
}
.tcl-staff-progress {
    height: 8px;
    overflow: hidden;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
}
.tcl-staff-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--tcl-staff-accent), #ffe0a3);
}
.tcl-staff-progress--large {
    grid-column: 1 / -1;
    margin-top: 14px;
}
.tcl-staff-event-card > .tcl-staff-button {
    margin: 0 18px 18px;
    width: calc(100% - 36px);
}
.tcl-staff-pill,
.tcl-staff-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.tcl-staff-pill {
    background: rgba(221,142,24,.16);
    color: #ffd596;
    border: 1px solid rgba(221,142,24,.36);
}
.tcl-staff-status.is-in {
    background: rgba(54,179,107,.16);
    color: #9cf0bd;
    border: 1px solid rgba(54,179,107,.42);
}
.tcl-staff-status.is-out {
    background: rgba(255,255,255,.09);
    color: #ffe7c4;
    border: 1px solid rgba(255,255,255,.15);
}
.tcl-staff-event-hero {
    padding: 18px;
    display: grid;
    gap: 14px;
}
.tcl-staff-scan-panel,
.tcl-staff-tools,
.tcl-staff-scan-card,
.tcl-staff-login-card,
.tcl-staff-empty,
.tcl-staff-notice {
    padding: 16px;
}
.tcl-staff-scan-panel form {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}
.tcl-staff-scan-panel input[type="text"],
.tcl-staff-tools input[type="search"],
.tcl-staff-tools select {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 16px !important;
    background: rgba(0,0,0,.24) !important;
    color: #fff !important;
    padding: 12px 14px !important;
    font-size: 16px !important;
    box-shadow: none !important;
}
.tcl-staff-scan-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
.tcl-staff-scanner {
    margin-top: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: #090604;
    padding: 10px;
}
.tcl-staff-scanner video {
    display: block;
    width: 100%;
    max-height: 55vh;
    border-radius: 14px;
    background: #000;
}
.tcl-staff-scanner p {
    color: var(--tcl-staff-muted);
    margin: 10px 0;
}
.tcl-staff-scan-card.is-success {
    border-color: rgba(54,179,107,.55);
    background: linear-gradient(135deg, rgba(54,179,107,.24), rgba(36,23,15,.95));
}
.tcl-staff-scan-card.is-warning {
    border-color: rgba(242,184,75,.6);
    background: linear-gradient(135deg, rgba(242,184,75,.22), rgba(36,23,15,.95));
}
.tcl-staff-scan-card > span {
    color: var(--tcl-staff-accent);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.tcl-staff-alert-line {
    color: #ffd596 !important;
    font-weight: 800;
}
.tcl-staff-tools {
    display: grid;
    gap: 10px;
}
.tcl-staff-filter-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.tcl-staff-filter-tabs button {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-weight: 900;
}
.tcl-staff-filter-tabs button.is-active {
    background: var(--tcl-staff-accent);
    border-color: var(--tcl-staff-accent);
    color: #140d09;
}
.tcl-staff-tools select {
    display: none;
}
.tcl-staff-guest-card {
    padding: 16px;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tcl-staff-guest-card.is-scan-match {
    border-color: var(--tcl-staff-accent);
    box-shadow: 0 0 0 3px rgba(221,142,24,.2), 0 18px 60px rgba(0,0,0,.28);
}
.tcl-staff-guest-card.is-checked-in {
    background: rgba(27,58,38,.85);
}
.tcl-staff-guest-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.tcl-staff-guest-card h2 {
    margin: 9px 0 2px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
}
.tcl-staff-guest-card p {
    margin: 0;
    color: var(--tcl-staff-muted);
    font-weight: 700;
}
.tcl-staff-check-button {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 20px;
    background: var(--tcl-staff-success);
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.tcl-staff-check-button.is-undo {
    width: auto;
    min-width: 74px;
    padding: 0 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 14px;
}
.tcl-staff-guest-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}
.tcl-staff-guest-details > div {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(0,0,0,.16);
    padding: 10px;
    min-width: 0;
}
.tcl-staff-guest-details > div.is-wide {
    grid-column: 1 / -1;
}
.tcl-staff-guest-details span {
    display: block;
    color: var(--tcl-staff-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}
.tcl-staff-guest-details strong {
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.tcl-staff-guest-details code {
    color: #ffe0a3;
    background: transparent;
    font-size: 13px;
}
.tcl-staff-empty,
.tcl-staff-notice {
    max-width: 980px;
    margin: 0 auto 14px;
    color: var(--tcl-staff-muted);
    font-weight: 800;
}
.tcl-staff-notice--success {
    border-color: rgba(54,179,107,.5);
    color: #9cf0bd;
}
.tcl-staff-notice--warning {
    border-color: rgba(242,184,75,.6);
    color: #ffd596;
}
.tcl-staff-notice--error {
    border-color: rgba(231,111,81,.6);
    color: #ffb7a6;
}
.tcl-staff-login-card {
    margin-top: 16vh;
    text-align: center;
}
@media (min-width: 760px) {
    .tcl-staff-event-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tcl-staff-event-hero {
        grid-template-columns: 1fr minmax(300px, 420px);
        align-items: center;
    }
    .tcl-staff-tools {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
    .tcl-staff-filter-tabs {
        min-width: 340px;
    }
}
@media (max-width: 520px) {
    .tcl-staff-app {
        padding-left: 10px;
        padding-right: 10px;
    }
    .tcl-staff-header {
        display: block;
    }
    .tcl-staff-header-actions {
        justify-content: flex-start;
        margin-top: 12px;
    }
    .tcl-staff-section-heading {
        display: block;
    }
    .tcl-staff-scan-actions {
        grid-template-columns: 1fr;
    }
    .tcl-staff-guest-details {
        grid-template-columns: 1fr;
    }
}
.tcl-staff-anchor {
    display: block;
    position: relative;
    top: -8px;
    height: 0;
    overflow: hidden;
}

/* TCL Events v1.6.1 Staff Portal compact list polish */
.tcl-staff-view-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.tcl-staff-view-toggle button {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-weight: 900;
}
.tcl-staff-view-toggle button.is-active {
    background: #fff8ee;
    border-color: #fff8ee;
    color: #140d09;
}
.tcl-staff-check-button__list {
    display: none;
}
.tcl-staff-guest-summary code {
    color: #ffe0a3;
    background: transparent;
    font-size: .95em;
}
.tcl-staff-guest-list.is-list-view {
    gap: 7px;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-anchor {
    top: -6px;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-guest-card {
    padding: 10px 10px 10px 12px;
    border-radius: 17px;
    box-shadow: none;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-guest-card__top {
    align-items: center;
    gap: 9px;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-status,
.tcl-staff-guest-list.is-list-view .tcl-staff-guest-details {
    display: none;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-guest-card h2 {
    margin: 0 0 2px;
    font-size: 16px;
    line-height: 1.15;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-guest-card p {
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
    overflow-wrap: anywhere;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-check-button {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.4);
    background: rgba(0,0,0,.18);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    box-shadow: none;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-check-button.is-undo {
    background: var(--tcl-staff-success);
    border-color: var(--tcl-staff-success);
    color: #fff;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-check-button__card {
    display: none;
}
.tcl-staff-guest-list.is-list-view .tcl-staff-check-button__list {
    display: inline;
}
@media (min-width: 760px) {
    .tcl-staff-tools {
        grid-template-columns: 1fr minmax(310px, auto) minmax(170px, auto);
    }
    .tcl-staff-view-toggle {
        min-width: 170px;
    }
}
@media (max-width: 520px) {
    .tcl-staff-view-toggle {
        grid-template-columns: 1fr 1fr;
    }
}

/* TCL Events v1.6.2: keep staff portal check-in actions in place on mobile */
.tcl-staff-guest-card.is-updating {
    opacity: .78;
}
.tcl-staff-guest-card.is-just-updated {
    box-shadow: 0 0 0 2px rgba(54, 179, 107, .55), 0 18px 50px rgba(0,0,0,.28);
}
.tcl-staff-check-button:disabled {
    opacity: .65;
    cursor: wait;
}

/* TCL Events v1.6.5 - RSVP guest names */
.tcl-rsvp-guest-names {
  margin-top: 10px;
}

.tcl-rsvp-guest-names__intro {
  margin: 0 0 10px 0;
  font-size: 0.95em;
  opacity: 0.85;
}

.tcl-rsvp-guest-names__field {
  margin-bottom: 10px;
}
