/* Bookings list: header with banner, five stat cards, the table as one
   card with pills and buttons in its toolbar, and the page footer. */
.bk { display: block; }

/* ---------- header ---------- */
.bk-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 42%); gap: 1.5rem; align-items: stretch; }
.bk-crumbs { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; color: var(--fs-muted); margin-bottom: .55rem; }
.bk-crumbs a { color: inherit; text-decoration: none; }
.bk-crumbs a:hover { color: var(--fs-ink); }
.bk-crumbs svg { width: 14px; height: 14px; }
.bk-title { font-size: clamp(1.9rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .45rem; color: var(--fs-ink); }
.bk-sub { font-size: 1rem; color: var(--fs-muted); margin: 0; max-width: 60ch; }
.bk-banner { position: relative; min-height: 120px; border-radius: 20px; overflow: hidden; background: #cfe3f7 center / cover no-repeat; isolation: isolate; }
.bk-banner.is-empty { background: linear-gradient(105deg, #e8f1fb 0%, #cfe3f7 45%, #9cc4ec 100%); }
.bk-banner.is-empty::after { content: ""; position: absolute; right: -6%; bottom: -30%; width: 70%; height: 120%; background: linear-gradient(160deg, #fff 0%, #dbe7f3 40%, #f5325b 41%, #f5325b 46%, transparent 47%); clip-path: polygon(100% 0, 100% 100%, 0 100%); opacity: .95; z-index: -1; }
.bk-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgb(255 255 255 / .55) 0%, rgb(255 255 255 / .25) 40%, transparent 70%); }
.bk-banner-copy { position: absolute; left: 9%; top: 50%; transform: translateY(-50%); display: flex; align-items: flex-end; gap: .9rem; }
.bk-banner-script { font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", "Comic Sans MS", cursive; font-size: 1.7rem; line-height: 1.05; color: #101828; transform: rotate(-6deg); white-space: pre-line; position: relative; padding-bottom: .35rem; }
.bk-banner-script::after { content: ""; position: absolute; left: 4px; right: 20%; bottom: 0; height: 2px; background: #f5325b; border-radius: 2px; }
.bk-banner-strap { font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #344054; max-width: 110px; line-height: 1.4; padding-bottom: .3rem; }
.dark .bk-banner::before { background: linear-gradient(90deg, rgb(20 24 33 / .55) 0%, rgb(20 24 33 / .25) 40%, transparent 70%); }
.dark .bk-banner-script, .dark .bk-banner-strap { color: #f2f4f7; }

/* ---------- stats ---------- */
.bk-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.bk-stat { position: relative; display: flex; align-items: flex-start; gap: .85rem; padding: 1.05rem 1.1rem 1rem; background: var(--fs-surface); border: 1px solid var(--fs-line); border-radius: 18px; box-shadow: 0 4px 14px rgb(16 24 40 / .04); min-width: 0; }
.bk-stat-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; flex: none; }
.bk-stat-icon svg { width: 26px; height: 26px; }
.bk-stat-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.bk-stat-value.is-long { font-size: 1.2rem; padding-top: .15rem; }
.bk-stat-value small { font-size: .7rem; font-weight: 700; color: var(--fs-muted); margin-left: .25rem; letter-spacing: .04em; }
.bk-stat-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bk-stat-label { font-size: .88rem; color: var(--fs-muted); margin-top: .1rem; }
.bk-stat-note { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; color: var(--fs-muted); margin-top: .75rem; white-space: nowrap; }
.bk-stat-note svg { width: 14px; height: 14px; }
.bk-stat-delta { font-weight: 700; }
.bk-stat-note.is-up { --bk-delta: #027a48; }
.bk-stat-note.is-down { --bk-delta: #b42318; }
.bk-stat-note.is-flat { --bk-delta: var(--fs-muted); }
.bk-stat-note svg, .bk-stat-note .bk-stat-delta { color: var(--bk-delta); }
.bk-stat-bars { position: absolute; right: 1rem; bottom: 1rem; display: flex; align-items: flex-end; gap: 3px; height: 22px; width: 42px; }
.bk-stat-bars i { flex: 1; border-radius: 2px; background: #e4e7ec; min-height: 3px; }
.bk-stat-bars i:last-child { background: var(--bk-bar, #98a2b3); }
.dark .bk-stat-bars i { background: #333741; }
.is-rose .bk-stat-icon { background: #ffe4ea; color: #f5325b; } .is-rose { --bk-bar: #f5325b; }
.is-green .bk-stat-icon { background: #dcfae6; color: #17b26a; } .is-green { --bk-bar: #17b26a; }
.is-amber .bk-stat-icon { background: #fef0c7; color: #f79009; } .is-amber { --bk-bar: #f79009; }
.is-danger .bk-stat-icon { background: #fee4e2; color: #d92d20; } .is-danger { --bk-bar: #d92d20; }
.is-blue .bk-stat-icon { background: #d1e9ff; color: #2e90fa; } .is-blue { --bk-bar: #2e90fa; }
.dark .bk-stat-icon { filter: saturate(.85); }

/* ---------- table ---------- */
.bk .fi-ta-ctn { margin-top: 1.25rem; }
/* Filament draws a heading row (with the header actions) above the toolbar;
   here they are one row: search, pills, date, then the buttons. */
.bk .fi-ta-header-ctn { display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid var(--fs-line); }
.bk .fi-ta-header { order: 2; flex: none; padding: 1rem 1.25rem 1rem .25rem; margin-left: auto; }
.bk .fi-ta-col-manager-trigger-action-ctn, .bk .fi-ta-col-toggle-trigger-action-ctn { display: none; }
/* Filament pins the active-filter count on the trigger even when it is 0; the indicators row below says what is on. */
.bk .fi-ta-filters-trigger-action-ctn .fi-badge, .bk .fi-ta-filters-dropdown .fi-badge { display: none; }
.bk .fi-ta-header-heading-ctn { display: none; }
.bk .fi-ta-header-toolbar { order: 1; flex: 1 1 0; min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; padding: 1rem 0 1rem 1.25rem; border-bottom: 0; }
.bk .fi-ta-header-toolbar > div { gap: .6rem; }
@media (min-width: 1400px) { .bk .fi-ta-header-ctn, .bk .fi-ta-header-toolbar, .bk .fi-ta-header-toolbar > div { flex-wrap: nowrap !important; } }
.bk .fi-ta-header-actions .fi-btn, .bk .fi-ta-header-toolbar .fi-btn { border-radius: 12px; padding: .55rem .85rem; font-weight: 600; white-space: nowrap; }
.bk .fi-ta-header-actions .fi-btn.fi-color-primary { padding: .6rem 1.05rem; font-weight: 700; box-shadow: 0 8px 20px rgb(245 50 91 / .25); }
.bk .fi-ta-header-actions .fi-btn.fi-color-gray, .bk .fi-ta-header-toolbar .fi-btn.fi-color-gray { background: var(--fs-surface); }
.bk .fi-ta-header-toolbar > div { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.bk .fi-ta-search-field { flex: none; }
.bk .fi-ta-search-field .fi-input-wrp { border-radius: 12px; min-width: 300px; background: var(--fs-surface); }
.bk-pills { display: inline-flex; align-items: center; gap: .15rem; padding: .25rem; border-radius: 999px; background: var(--fs-sunk); }
.bk-pills-label { font-size: .8rem; color: var(--fs-muted); padding: 0 .45rem 0 .65rem; }
.bk-pill { border: 0; background: none; border-radius: 999px; padding: .36rem .55rem; font-size: .78rem; font-weight: 600; color: var(--fs-ink); cursor: pointer; white-space: nowrap; }
.bk-pill:hover { background: rgb(16 24 40 / .05); }
.bk-pill.is-active { background: var(--fs-accent); color: #fff; box-shadow: 0 6px 16px rgb(245 50 91 / .28); }
.dark .bk-pill:hover { background: rgb(255 255 255 / .06); }
.bk-range { display: inline-flex; align-items: center; gap: .4rem; border: 1px solid var(--fs-line); border-radius: 12px; padding: .5rem .5rem .5rem .65rem; background: var(--fs-surface); color: var(--fs-ink); font-size: .88rem; font-weight: 600; cursor: pointer; }
.bk-range svg { width: 18px; height: 18px; color: var(--fs-muted); }
.bk-range .bk-range-chev { width: 15px; height: 15px; }
.bk-range select { appearance: none; -webkit-appearance: none; border: 0; background: none; padding: 0; font: inherit; color: inherit; cursor: pointer; outline: none; width: 3.4rem; }
.bk-range.is-set select { width: 6.2rem; }
.bk .fi-ta-header-toolbar .fi-btn { border-radius: 12px; padding: .6rem 1rem; font-weight: 600; }
.bk .fi-ta-header-toolbar .fi-btn.fi-color-primary { padding: .65rem 1.2rem; font-weight: 700; box-shadow: 0 8px 20px rgb(245 50 91 / .25); }
.bk .fi-ta-header-cell { font-size: .82rem; font-weight: 700; color: var(--fs-ink); white-space: nowrap; }
.bk .fi-ta-header-cell-label { white-space: nowrap; }
.bk .fi-ta-cell { padding: .85rem .45rem; font-size: .86rem; }
.bk .fi-ta-header-cell { padding-left: .45rem; padding-right: .45rem; }
.bk .fi-ta-text-item { font-size: .86rem; }
.bk .fi-ta-text-description { font-size: .74rem; }
.bk .fi-ta-cell:first-child, .bk .fi-ta-header-cell:first-child { padding-left: 1.1rem; }
.bk .fi-ta-cell:last-child, .bk .fi-ta-header-cell:last-child { padding-right: 1.1rem; }
.bk .fi-ta-text-item.fi-font-mono, .bk .fi-ta-text-item .fi-font-mono { font-size: .78rem; letter-spacing: -.01em; }
.bk .fi-ta-header-cell-label { font-size: .8rem; }
.bk .fi-badge { padding: .25rem .6rem; font-size: .74rem; }
.bk .fi-badge.fi-color-hold { background: #fef0c7; color: #b54708; }
.bk .fi-badge.fi-color-info { background: #d1e9ff; color: #175cd3; }
.bk .fi-badge .fi-icon { width: 15px; height: 15px; }
.bk .fi-ta-actions .fi-link { font-weight: 700; }
.bk .fi-ta-pagination { padding: .9rem 1.25rem; }
.bk .fi-pagination { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; }
.bk .fi-pagination > * { margin: 0; }
.bk .fi-pagination .fi-pagination-overview { order: 1; margin-right: auto; }
.bk .fi-pagination .fi-pagination-items { order: 2; }
.bk .fi-pagination .fi-pagination-records-per-page-select-ctn { order: 3; }
.bk .fi-pagination-item-btn, .bk .fi-pagination-previous-btn, .bk .fi-pagination-next-btn { border-radius: 10px; }
.bk .fi-pagination-overview { color: var(--fs-muted); font-size: .88rem; }
.bk .fi-pagination-items .fi-btn, .bk .fi-pagination-item { border-radius: 10px; }
.bk .fi-pagination-item.fi-active, .bk .fi-pagination-item[aria-current] { color: var(--fs-accent); font-weight: 700; }

/* ---------- footer ---------- */
.bk-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--fs-line); font-size: .84rem; color: var(--fs-muted); }
.bk-foot nav { display: flex; gap: .5rem; }
.bk-foot nav a { color: inherit; text-decoration: none; }
.bk-foot nav a + a::before { content: "|"; margin-right: .5rem; color: var(--fs-faint); }
.bk-foot nav a:hover { color: var(--fs-ink); }

@media (max-width: 1280px) { .bk-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); } .bk .fi-ta-search-field .fi-input-wrp { min-width: 260px; } }
@media (max-width: 960px) { .bk-head { grid-template-columns: 1fr; } .bk-banner { min-height: 96px; } .bk-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .bk-stats { grid-template-columns: 1fr; gap: .7rem; } .bk .fi-ta-search-field .fi-input-wrp { min-width: 0; width: 100%; } .bk-pills { flex-wrap: wrap; border-radius: 16px; } }

/* =======================================================================
   Booking view: header with the actions over the banner, then cards.
   ======================================================================= */
.bv-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 50%); gap: 1.5rem; align-items: stretch; }
.bv-title { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin: 0 0 .4rem; }
.bv-ref { font-size: clamp(1.9rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--fs-ink); font-variant-numeric: tabular-nums; }
.bv-state.fi-badge { font-size: .84rem; padding: .35rem .8rem; }
.bv-banner { position: relative; min-height: 186px; border-radius: 20px; overflow: hidden; background: #cfe3f7 center / cover no-repeat; isolation: isolate; }
.bv-banner.is-empty { background: linear-gradient(105deg, #e8f1fb 0%, #cfe3f7 45%, #9cc4ec 100%); }
.bv-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(255 255 255 / .1) 0%, rgb(255 255 255 / .55) 100%); }
.bv-banner .bk-banner-copy { top: 1.4rem; left: 1.6rem; transform: none; }
.bv-actions { position: absolute; left: 0; right: 0; bottom: .8rem; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; padding: 0 .9rem; }
.bv-banner .bk-banner-script { font-size: 1.5rem; }
.bv-actions .fi-btn { border-radius: 11px; padding: .5rem .75rem; font-size: .84rem; font-weight: 600; background: rgb(255 255 255 / .92); color: var(--fs-ink); box-shadow: 0 4px 14px rgb(16 24 40 / .08); backdrop-filter: blur(6px); }
.bv-actions .fi-btn.fi-color-primary, .bv-actions .fi-btn.fi-color-success { color: #fff; background: var(--fs-accent); box-shadow: 0 8px 20px rgb(245 50 91 / .28); }
.bv-actions .fi-btn.fi-color-danger { color: #b42318; }
.dark .bv-actions .fi-btn { background: rgb(31 36 47 / .92); color: #f2f4f7; }

.bv-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 1.25rem; margin-top: 1.25rem; align-items: start; }
.bv-span { grid-column: 1 / -1; }
.bv-card { background: var(--fs-surface); border: 1px solid var(--fs-line); border-radius: 20px; padding: 1.15rem 1.25rem 1.2rem; box-shadow: 0 4px 14px rgb(16 24 40 / .04); min-width: 0; }
.bv-card-head { display: flex; align-items: center; gap: .9rem; padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid var(--fs-line); }
.bv-card-head h2 { margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--fs-ink); }
.bv-card-head p { margin: .1rem 0 0; font-size: .82rem; color: var(--fs-muted); }
.bv-card-head > div { flex: 1; min-width: 0; }
.bv-card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.bv-card-icon svg { width: 24px; height: 24px; }
.bv-card-icon.is-rose { background: #ffe4ea; color: #f5325b; }
.bv-card-icon.is-blue { background: #d1e9ff; color: #2e90fa; }
.bv-card-icon.is-amber { background: #fef0c7; color: #f79009; }
.bv-chip { display: inline-flex; align-items: center; gap: .35rem; border: 1px solid var(--fs-line); border-radius: 999px; padding: .35rem .7rem; font-size: .78rem; font-weight: 600; color: var(--fs-muted); background: var(--fs-sunk); white-space: nowrap; }
.bv-chip svg { width: 15px; height: 15px; }

/* facts grid */
.bv-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem 1rem; margin: 0; }
.bv-facts-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--fs-line); }
.bv-facts-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bv-facts > div { min-width: 0; padding-right: .75rem; border-right: 1px solid var(--fs-line); }
.bv-facts > div:nth-child(4n), .bv-facts-3 > div:nth-child(3n), .bv-facts-2 > div:nth-child(2n), .bv-facts > div:last-child { border-right: 0; }
.bv-facts dt { font-size: .82rem; font-weight: 600; color: var(--fs-ink); margin-bottom: .3rem; }
.bv-facts dd { margin: 0; font-size: .92rem; color: var(--fs-ink); overflow-wrap: anywhere; }
.bv-facts dd.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 700; }
.bv-facts dd.is-urgent { color: #b42318; font-weight: 700; }
.bv-facts small { display: block; margin-top: .3rem; font-size: .76rem; line-height: 1.4; color: var(--fs-muted); }
.bv-facts .bv-wide { grid-column: 1 / -1; border-right: 0; }
.bv-note { white-space: pre-line; font-size: .88rem; }
/* A term the passenger is bound by, not an aside: a group seat that cannot
   be refunded has to be read before it is sold on. */
.bv-note.is-warn { color: #b54708; background: #fffaeb; border: 1px solid #fedf89; border-radius: 8px; padding: .5rem .65rem; }

/* price */
.bv-price { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--fs-line); border-radius: 16px; overflow: hidden; }
.bv-price-cell { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: .5rem; row-gap: .3rem; align-items: center; padding: .85rem .75rem; border-right: 1px solid var(--fs-line); background: var(--fs-surface); min-width: 0; }
.bv-price-cell:last-child { border-right: 0; }
.bv-price-cell > span:not(.bv-price-icon) { font-size: .8rem; color: var(--fs-muted); grid-column: 2; line-height: 1.2; }
.bv-price-cell > b { grid-column: 1 / -1; font-size: 1rem; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; letter-spacing: -.01em; }
.bv-price-cell > small { grid-column: 1 / -1; font-size: .74rem; color: var(--fs-muted); margin-top: .2rem; }
.bv-price-icon { grid-row: 1; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; }
.bv-price-icon svg { width: 17px; height: 17px; }
.bv-price-icon.is-blue { background: #d1e9ff; color: #2e90fa; }
.bv-price-icon.is-rose { background: #ffe4ea; color: #f5325b; }
.bv-price-cell.is-total { background: #fff1f4; }
.bv-price-cell.is-total > b { font-size: 1.18rem; }
.dark .bv-price-cell.is-total { background: rgb(245 50 91 / .14); }
.bv-extras { margin-top: .9rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.bv-tag { font-size: .76rem; border-radius: 999px; padding: .25rem .7rem; background: #d1e9ff; color: #175cd3; font-weight: 600; }

/* itinerary */
.bv-slice + .bv-slice { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--fs-line); }
.bv-slice-label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--fs-muted); margin-bottom: .5rem; }
.bv-leg { display: grid; grid-template-columns: auto auto minmax(80px, 1fr) auto auto; gap: .9rem; align-items: center; padding: .4rem .25rem .9rem; }
.bv-port { display: flex; flex-direction: column; }
.bv-port small { font-size: .62rem; color: var(--fs-faint); line-height: 1; }
.bv-port b { font-size: 1.55rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; color: var(--fs-ink); }
.bv-port span { font-size: .76rem; color: var(--fs-muted); }
.bv-port.is-end { text-align: right; align-items: flex-end; }
.bv-when { display: flex; flex-direction: column; }
.bv-when b { font-size: 1.05rem; font-weight: 800; }
.bv-when span { font-size: .76rem; color: var(--fs-muted); }
.bv-when.is-end { text-align: right; align-items: flex-end; }
.bv-line { position: relative; display: flex; align-items: center; gap: .5rem; color: var(--fs-faint); padding-bottom: 1rem; }
.bv-line i { flex: 1; border-top: 2px dashed var(--fs-line); }
.bv-line svg { width: 22px; height: 22px; color: var(--fs-ink); transform: rotate(90deg); }
.bv-line span { position: absolute; left: 0; right: 0; bottom: -.15rem; text-align: center; font-size: .74rem; color: var(--fs-muted); }
.bv-flight { display: flex; align-items: center; gap: .85rem; padding: .7rem .9rem; border-radius: 14px; background: var(--fs-sunk); }
.bv-flight + .bv-flight { margin-top: .5rem; }
.bv-flight-id { min-width: 160px; }
.bv-flight-id b { display: block; font-size: .92rem; }
.bv-flight-id span { font-size: .76rem; color: var(--fs-muted); }
.bv-flight-route { flex: 1; text-align: right; font-size: .84rem; color: var(--fs-ink); }
.bv-baggage { display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; font-size: .8rem; color: var(--fs-muted); }
.bv-baggage svg { width: 16px; height: 16px; }

/* travellers */
.bv-table-wrap { overflow-x: auto; }
.bv-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.bv-table th { text-align: left; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fs-muted); padding: .3rem .5rem .55rem; border-bottom: 1px solid var(--fs-line); white-space: nowrap; }
.bv-table td { padding: .7rem .5rem; border-bottom: 1px dashed var(--fs-line); vertical-align: top; }
.bv-table td:nth-child(2), .bv-table td:nth-child(6) { white-space: nowrap; }
.bv-table td:first-child { min-width: 110px; }
.bv-table tr:last-child td { border-bottom: 0; }
.bv-table td b { font-weight: 600; }
.bv-table td small { display: block; font-size: .74rem; color: var(--fs-muted); margin-top: .15rem; }
.bv-table .mono, .bv-dialog .mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.bv-muted { color: var(--fs-muted); }
.bv-empty { color: var(--fs-muted); font-size: .88rem; margin: 0; }

/* history */
.bv-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.bv-timeline::before { content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px; background: var(--fs-line); }
.bv-timeline li { position: relative; display: flex; gap: .85rem; padding: 0 0 1.1rem 1.6rem; }
.bv-timeline li:last-child { padding-bottom: 0; }
.bv-dot { position: absolute; left: 1px; top: 8px; width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--tone, #98a2b3); background: var(--fs-surface); }
.bv-ev-icon { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; flex: none; background: color-mix(in srgb, var(--tone, #98a2b3) 16%, transparent); color: var(--tone, #98a2b3); }
.bv-ev-icon svg { width: 17px; height: 17px; }
.bv-ev { flex: 1; min-width: 0; }
.bv-ev-head { display: flex; flex-wrap: wrap; gap: .2rem .7rem; align-items: baseline; }
.bv-ev-head b { font-size: .95rem; }
.bv-ev-head time { font-size: .78rem; color: var(--fs-muted); font-variant-numeric: tabular-nums; }
.bv-ev-detail { font-size: .86rem; color: var(--fs-ink); margin-top: .1rem; line-height: 1.45; }
.bv-ev-actor { font-size: .76rem; color: var(--fs-muted); margin-top: .15rem; }

/* support */
.bv-help { padding: 0; overflow: hidden; }
.bv-help-top { position: relative; display: flex; gap: .9rem; padding: 1.15rem 1.25rem 1.25rem; background: linear-gradient(90deg, #fff 0%, #fff 55%, #fff1f4 100%); }
.dark .bv-help-top { background: linear-gradient(90deg, var(--fs-surface) 0%, var(--fs-surface) 55%, rgb(245 50 91 / .12) 100%); }
.bv-help-top h2 { margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--fs-ink); }
.bv-help-top p { margin: .3rem 0 .9rem; font-size: .84rem; color: var(--fs-muted); max-width: 34ch; }
.bv-help-top > div { position: relative; z-index: 1; }
.bv-cta { display: inline-flex; align-items: center; gap: .4rem; border-radius: 10px; padding: .6rem 1.05rem; font-size: .86rem; font-weight: 700; color: #fff; background: var(--fs-accent); text-decoration: none; box-shadow: 0 8px 20px rgb(245 50 91 / .25); }
.bv-phone { display: inline-block; margin-left: .8rem; font-size: .84rem; font-weight: 600; color: var(--fs-ink); }
.bv-help-art { position: absolute; right: -10px; bottom: -30px; width: 190px; height: 150px; background:
    radial-gradient(circle at 60% 40%, #d1e9ff 0 34px, transparent 35px),
    radial-gradient(circle at 60% 40%, #2e90fa 0 10px, transparent 11px),
    radial-gradient(circle at 20% 85%, #f5325b 0 18px, transparent 19px),
    radial-gradient(circle at 88% 78%, #17b26a 0 14px, transparent 15px);
    opacity: .9; }
.bv-links { padding: .9rem 1.25rem 1.15rem; border-top: 1px solid var(--fs-line); }
.bv-links-label { display: block; font-size: .84rem; font-weight: 700; color: var(--fs-ink); margin-bottom: .6rem; }
.bv-links-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.bv-link { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border: 1px solid var(--fs-line); border-radius: 12px; padding: .65rem .6rem; font-size: .82rem; font-weight: 600; color: var(--fs-ink); background: var(--fs-surface); cursor: pointer; white-space: nowrap; }
.bv-link:hover { border-color: var(--fs-accent); color: var(--fs-accent); }
.bv-link svg { width: 17px; height: 17px; color: var(--fs-muted); }

/* dialogs */
.bv-dialog { font-size: .9rem; color: var(--fs-ink); }
.bv-h3 { font-size: .9rem; font-weight: 800; margin: 1rem 0 .5rem; }
.bv-list { margin: 0; padding-left: 1.1rem; }
.bv-list li + li { margin-top: .3rem; }
.bv-rules { white-space: pre-wrap; font: inherit; font-size: .84rem; line-height: 1.5; margin: 1rem 0 0; padding: .9rem 1rem; border-radius: 12px; background: var(--fs-sunk); max-height: 50vh; overflow: auto; }

@media (max-width: 1280px) { .bv-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } .bv-facts > div:nth-child(2n) { border-right: 0; } .bv-price { grid-template-columns: repeat(2, minmax(0, 1fr)); } .bv-price-cell:nth-child(2n) { border-right: 0; } .bv-price-cell:nth-child(-n+2) { border-bottom: 1px solid var(--fs-line); } }
@media (max-width: 1100px) { .bv-grid { grid-template-columns: 1fr; } .bv-head { grid-template-columns: 1fr; } .bv-banner { min-height: 150px; } }
@media (max-width: 640px) { .bv-leg { grid-template-columns: 1fr auto 1fr; } .bv-when { display: none; } .bv-links-row { grid-template-columns: 1fr; } .bv-flight { flex-wrap: wrap; } .bv-flight-route { text-align: left; } }
