/**
 * Events page styles
 * Prefix: evt_
 * Reuses tokens from base.css and shared classes (rnd_l, ctnr, sde_wid, prf_*).
 */

/* ============================================
   INDEX (LIST) PAGE
   ============================================ */
.evt_index {
    width: 100%;
}
.evt_idx_header {
    padding: 4px 0 12px;
}
.evt_idx_title_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.evt_idx_title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.evt_idx_sub {
    font-size: 14px;
    margin: 4px 0 14px;
    line-height: 1.5;
}
.evt_create_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--button-blue);
    color: var(--button-on-blue);
    border: none;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.evt_create_btn:hover { opacity: 0.88; }

/* Tabs (same pattern as profile tabs) */
.evt_idx_tabs {
    display: flex;
    border-bottom: 1.5px solid var(--border-color);
    padding: 0 4px;
    margin-top: 8px;
}
.evt_idx_tab {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}
.evt_idx_tab:hover { color: var(--text-primary); }
.evt_idx_tab.active {
    color: var(--text-primary);
    font-weight: 700;
}
.evt_idx_tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0; right: 0;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background: var(--button-blue);
}
.evt_idx_tab_content { display: none; }
.evt_idx_tab_content.active { display: block; }

/* List wrapper */
.evt_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}

/* ============================================
   EVENT CARD
   ============================================ */
.evt_card {
    display: block;
    background: var(--container);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}
.evt_card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.evt_card_banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    background: var(--elevated);
    overflow: hidden;
}
.evt_card_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.evt_card_banner_placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--elevated) 0%, var(--elevated-surface) 100%);
}

/* Date block overlay (top-left) */
.evt_date_block {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bg-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    line-height: 1;
    min-width: 50px;
}
.evt_date_month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--red);
    margin-bottom: 4px;
}
.evt_date_day {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

/* Pills on banner */
.evt_pill {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.evt_pill_platform {
    background: var(--button-blue);
}
.evt_pill_platform + .evt_pill_online {
    right: auto;
    left: 12px;
    top: auto;
    bottom: 12px;
}
.evt_pill i { font-size: 13px; }

/* Card body */
.evt_card_body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evt_card_org {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.evt_card_org_avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--elevated);
}
.evt_card_org_avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.evt_card_org_avatar .prof_img_fallback {
    font-size: 11px;
}
.evt_card_org_name {
    color: var(--text-secondary);
    font-weight: 600;
}
.evt_verified {
    color: var(--blue);
    font-size: 14px;
}

.evt_card_title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.evt_card_meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.evt_meta_row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.evt_meta_row i {
    font-size: 14px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.evt_card_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}
.evt_card_attendees {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}
.evt_card_attendees i {
    font-size: 14px;
    color: var(--text-tertiary);
}
.evt_card_price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.evt_price_from {
    font-size: 12px;
    color: var(--text-tertiary);
}
.evt_price_value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_price_free {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   EVENT DETAIL PAGE
   ============================================ */
.evt_main_cntr {
    min-width: 200px;
    max-width: 720px;
    width: 100%;
}
.evt_detail {
    background: var(--container);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.evt_hero {
    width: 100%;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    position: relative;
}
.evt_hero_overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.evt_hero_inner {
    width: 100%;
    max-width: 520px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.evt_hero_thumb {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.evt_detail_body {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.evt_detail_top_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.evt_detail_date {
    color: var(--red);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.evt_detail_actions {
    display: flex;
    gap: 8px;
}
.evt_round_btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--elevated-highlight);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}
.evt_round_btn:hover {
    background: var(--elevated);
    color: var(--text-primary);
}
.evt_round_btn_heart.active {
    color: var(--red);
}

.evt_detail_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
}

.evt_detail_org_row {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.evt_detail_org_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--elevated);
    flex-shrink: 0;
}
.evt_detail_org_avatar img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.evt_detail_org_meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.evt_detail_org_name_row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.evt_detail_org_name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_detail_org_sub {
    font-size: 13px;
}
.evt_follow_btn {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 18px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
}
.evt_follow_btn:hover {
    background: var(--elevated-highlight);
}

.evt_interest_strip {
    display: flex;
    align-items: center;
    gap: 12px;
}
.evt_interest_faces {
    display: flex;
}
.evt_interest_face {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--container);
    margin-left: -8px;
}
.evt_interest_face:first-child { margin-left: 0; }
.evt_interest_count {
    font-size: 13px;
    color: var(--text-secondary);
}

.evt_facts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--elevated-surface);
    padding: 14px 16px;
    border-radius: 12px;
}
.evt_fact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.evt_fact_icon {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 2px;
    flex-shrink: 0;
}
.evt_fact_meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.evt_fact_label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
}
.evt_fact_value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}
.evt_fact_sub {
    font-size: 13px;
}

.evt_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.evt_section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.evt_section_title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.evt_section_body {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    white-space: pre-wrap;
}

/* Inline CTA card (mobile fallback for the side pane card) */
.evt_cta_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--elevated-highlight);
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 4px;
}
.evt_cta_meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.evt_cta_title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_cta_sub {
    font-size: 13px;
}
.evt_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--button-blue);
    color: var(--button-on-blue);
    border: none;
    border-radius: 22px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.evt_cta_btn:hover { opacity: 0.88; }
.evt_cta_btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.evt_cta_btn_block {
    display: block;
    width: 100%;
}

/* ============================================
   SIDE PANE WIDGETS (events page)
   ============================================ */
.evt_ticket_summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.evt_ticket_summary_head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.evt_ticket_summary_title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_ticket_summary_from {
    font-size: 13px;
}
.evt_ticket_summary_sub {
    font-size: 13px;
    line-height: 1.5;
}
.evt_ticket_summary_perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.evt_perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.evt_perk i {
    color: var(--green);
    font-size: 14px;
}

.evt_side_more {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.evt_side_more_item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.evt_side_more_item:hover { opacity: 0.78; }
.evt_side_more_thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--elevated);
    flex-shrink: 0;
}
.evt_side_more_meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.evt_side_more_title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.evt_side_more_sub {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.evt_side_polls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.evt_side_poll_item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.evt_side_poll_item:hover { opacity: 0.78; }
.evt_side_poll_ico {
    font-size: 18px;
    color: var(--blue);
    margin-top: 2px;
    flex-shrink: 0;
}
.evt_side_poll_meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.evt_side_poll_q {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
}
.evt_side_poll_sub {
    font-size: 12px;
}

/* ============================================
   TICKET FLOW OVERLAY
   ============================================ */
.evt_ticket_overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
}
.evt_ticket_overlay.open { display: flex; }

.evt_ticket_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.evt_ticket_panel {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.32);
    height: 100vh;
    overflow: hidden;
}

.evt_ticket_head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}
.evt_ticket_back,
.evt_ticket_close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--elevated-highlight);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.evt_ticket_back:hover,
.evt_ticket_close:hover {
    background: var(--elevated);
    color: var(--text-primary);
}
.evt_ticket_step_title {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.evt_ticket_strip {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    background: var(--elevated-surface);
    border-bottom: 1px solid var(--border-color);
}
.evt_ticket_strip_meta {
    flex: 1;
    min-width: 0;
}
.evt_ticket_strip_title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.evt_ticket_strip_sub {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    margin-top: 2px;
}
.evt_ticket_strip_date {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.evt_ticket_strip_month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 4px;
}
.evt_ticket_strip_day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Steps */
.evt_ticket_step {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px 24px;
}
.evt_ticket_step.active { display: block; }
.evt_ticket_step_label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.evt_ticket_step_sub {
    font-size: 13px;
    margin: -4px 0 14px;
    line-height: 1.5;
}

/* Step 1: ticket choices */
.evt_ticket_choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.evt_ticket_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 10px;
}
.evt_ticket_empty_icon {
    font-size: 56px;
    color: var(--text-tertiary);
    opacity: 0.5;
    margin-bottom: 6px;
}
.evt_ticket_empty_title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_ticket_empty_body {
    font-size: 13px;
    line-height: 1.5;
    max-width: 320px;
    margin: 0;
}
.evt_ticket_choice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 14px;
    transition: border-color 0.15s;
}
.evt_ticket_choice:has(.evt_qty_value:not([data-qty-display="0"])) {
    border-color: var(--blue);
}
.evt_ticket_choice_meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.evt_ticket_choice_name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_ticket_choice_desc {
    font-size: 13px;
    line-height: 1.4;
}
.evt_ticket_choice_price {
    margin-top: 4px;
    display: inline-block;
    background: var(--elevated-highlight);
    color: var(--text-primary);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 13px;
    width: fit-content;
}

.evt_ticket_qty {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.evt_qty_btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--elevated-highlight);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.evt_qty_btn_active {
    background: var(--button-blue);
    color: var(--button-on-blue);
}
.evt_qty_btn:hover { opacity: 0.85; }
/* Greyed-out ticket choice: locked by mode exclusivity or already owned */
.evt_ticket_choice--greyed {
    opacity: 0.45;
    pointer-events: none;
}
/* Qty increment button visually disabled when at max */
.evt_qty_btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
/* Minus icon for decrement button when qty > 1.
   The icon font has no minus glyph, so we synthesise one. */
.icon-qty-minus::before {
    content: "−";
    font-style: normal;
    font-family: inherit;
}
.evt_qty_value {
    width: 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Step 2: form */
.evt_ticket_form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.evt_ticket_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.evt_ticket_form_phone {
    grid-template-columns: 110px 1fr;
}
.evt_ticket_form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.evt_ticket_form_label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.evt_ticket_input {
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    padding: 11px 14px;
    border: 1.5px solid var(--border-color);
    background: var(--field-fill);
    color: var(--text-primary);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s;
}
.evt_ticket_input::placeholder { color: var(--placeholder-color); }
.evt_ticket_input:focus { border-color: var(--blue); }
.evt_ticket_select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 32px;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-tertiary) 50%),
                      linear-gradient(135deg, var(--text-tertiary) 50%, transparent 50%);
    background-position: calc(100% - 18px) center, calc(100% - 13px) center;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}
.evt_ticket_signin_hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}
.evt_ticket_signin_hint input {
    margin-top: 3px;
    accent-color: var(--blue);
}

/* Step 3: review */
.evt_ticket_summary_lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.evt_ticket_summary_line {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    align-items: baseline;
    font-size: 14px;
    color: var(--text-primary);
}
.evt_ticket_summary_line_qty {
    color: var(--text-tertiary);
    font-weight: 600;
}
.evt_ticket_summary_line_amt {
    font-weight: 600;
}
.evt_ticket_summary_total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}
.evt_ticket_total_value {
    font-size: 18px;
}

/* Footer */
.evt_ticket_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-color);
}
.evt_ticket_foot_total {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.evt_ticket_foot_total span {
    font-size: 12px;
}
.evt_ticket_foot_total strong {
    font-size: 17px;
    color: var(--text-primary);
}
.evt_ticket_primary {
    flex: 1;
    max-width: 220px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 700px) {
    .evt_ticket_panel { max-width: 100%; }
    .evt_detail_title { font-size: 22px; }
    .evt_hero { aspect-ratio: 16 / 9; }
    .evt_detail_body { padding: 14px 16px 20px; }
    .evt_card_banner { aspect-ratio: 16 / 9; }
}
