/* ============================================================
   ticket.kiev.ua — uniform event card + event detail page
   Plakat aspect 2:3 portrait. object-fit: contain — НЕ режемо плакат!
   ============================================================ */

:root {
    --card-bg: #ffffff;
    --card-border: rgba(15, 23, 42, 0.06);
    --card-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    --card-shadow-hover: 0 16px 40px rgba(15, 23, 42, 0.14);
    --card-radius: 16px;

    --ink-900: #0f172a;
    --ink-700: #334155;
    --ink-500: #64748b;
    --ink-300: #cbd5e1;

    --brand-purple: #6f42c1;
    --brand-purple-dark: #5a34a3;
    --brand-yellow: #ffc107;
    --brand-blue: #1F579A;

    --price: #0f766e;        /* зелено-бірюзовий — нейтральний акцент ціни */
    --price-bg: #ecfeff;

    --pill-bg: rgba(255, 255, 255, 0.96);
    --pill-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

/* === Сітка карток === */
.events-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
}
@media (max-width: 1200px) { .events-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (max-width: 992px)  { .events-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 768px)  { .events-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; } }
@media (max-width: 380px)  { .events-grid { gap: 8px; } }

/* === Картка === */
.event-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .25s cubic-bezier(.25,.8,.25,1),
                box-shadow .25s cubic-bezier(.25,.8,.25,1);
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.event-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.event-card__link:hover { text-decoration: none; color: inherit; }

/* === Постер: 2:3 portrait, contain — зберігаємо пропорції === */
.event-card__poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}
.event-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    display: block;
    transition: transform .4s ease;
}
.event-card:hover .event-card__img { transform: scale(1.03); }

/* === Бейдж жанру (зліва-зверху) === */
.event-card__genre {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: var(--pill-shadow);
    z-index: 2;
}
.genre-cinema   { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.genre-theater  { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.genre-concert  { background: linear-gradient(135deg,#ef4444,#b91c1c); }
.genre-circus   { background: linear-gradient(135deg,#f97316,#c2410c); }
.genre-children { background: linear-gradient(135deg,#ec4899,#be185d); }
.genre-sport    { background: linear-gradient(135deg,#16a34a,#15803d); }
.genre-show     { background: linear-gradient(135deg,#a855f7,#7c3aed); }
.genre-tour     { background: linear-gradient(135deg,#0ea5e9,#0369a1); }
.genre-expo     { background: linear-gradient(135deg,#14b8a6,#0f766e); }
.genre-standup  { background: linear-gradient(135deg,#10b981,#047857); }
.genre-workshop { background: linear-gradient(135deg,#6366f1,#4338ca); }
.genre-ballet   { background: linear-gradient(135deg,#d946ef,#a21caf); }
.genre-other    { background: linear-gradient(135deg,#475569,#1e293b); }

/* === Бейдж знижки === */
.event-card__sale {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(239,68,68,.4);
    z-index: 2;
    cursor: help;
}

/* === Стрічка статусу (по діагоналі) === */
.event-card__status-overlay {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%) rotate(-8deg);
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    backdrop-filter: blur(2px);
}
.event-card__status-overlay--soldout    { background: rgba(15, 23, 42, 0.82); }
.event-card__status-overlay--cancelled  { background: rgba(220, 38, 38, 0.85); }
.event-card__status-overlay--rescheduled{ background: rgba(245, 158, 11, 0.88); color: #1f2937; }

/* === Тіло картки === */
.event-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.event-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.32;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.64em; /* фіксована висота під 2 рядки — рівні картки */
}

/* мета (дата + місце) */
.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--ink-700);
    flex: 1;
}
.event-card__meta i {
    color: var(--brand-blue);
    margin-right: 6px;
    flex-shrink: 0;
    font-size: 13px;
}
.event-card__date,
.event-card__venue {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    gap: 0;
}
.event-card__time {
    color: var(--ink-500);
    margin-left: 6px;
    font-weight: 600;
}
.event-card__venue {
    color: var(--ink-500);
    flex-wrap: wrap;
    align-items: baseline;
}
.event-card__city {
    color: var(--ink-900);
    font-weight: 600;
    margin-right: 4px;
}
.event-card__place {
    color: var(--ink-500);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* === Футер картки === */
.event-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed var(--ink-300);
    gap: 8px;
}
.event-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--price);
    font-weight: 800;
    background: var(--price-bg);
    padding: 4px 8px;
    border-radius: 8px;
}
.event-card__price-from {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--ink-500);
}
.event-card__price-value {
    font-size: 14px;
    font-weight: 800;
}

/* === Кнопка "Квитки" === */
.tickets-btn {
    background: var(--gradient-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.event-card:hover .tickets-btn {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}
.tickets-btn--soldout    { background: #cbd5e1; color: #64748b; box-shadow: none; }
.tickets-btn--soon       { background: #fef3c7; color: #b45309; box-shadow: none; }
.tickets-btn--cancelled  { background: #fee2e2; color: #b91c1c; box-shadow: none; }
.tickets-btn--rescheduled{ /* ще активна, але візуально "уважно" */ }

/* === Адаптив картки === */
@media (max-width: 768px) {
    .event-card { border-radius: 12px; }
    .event-card__body { padding: 10px 10px 12px; gap: 6px; }
    .event-card__title { font-size: 13px; line-height: 1.28; }
    .event-card__meta { font-size: 11px; gap: 3px; }
    .event-card__meta i { font-size: 11px; margin-right: 4px; }
    .event-card__genre { font-size: 9px; padding: 3px 7px; top: 6px; left: 6px; }
    .event-card__sale { width: 26px; height: 26px; font-size: 12px; bottom: 6px; left: 6px; }

    /* На вузькому екрані ціна+кнопка не вміщуються в 2-картковій сітці —
       складаємо в колонку, ціна без фону, кнопка на всю ширину. */
    .event-card__footer {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
        padding-top: 8px;
    }
    .event-card__price {
        background: transparent;
        padding: 0;
        justify-content: center;
        gap: 4px;
    }
    .event-card__price-value { font-size: 14px; }
    .tickets-btn {
        text-align: center;
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.3px;
        border-radius: 8px;
    }
}

/* ============================================================
   Page: Event detail — компактний, без "розриву"
   ============================================================ */

.event-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}
@media (max-width: 768px) { .event-detail { padding: 10px; } }

.event-detail__breadcrumbs {
    font-size: 13px;
    color: var(--ink-500);
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.event-detail__breadcrumbs a { color: var(--brand-blue); text-decoration: none; }
.event-detail__breadcrumbs a:hover { text-decoration: underline; }
.event-detail__breadcrumbs .sep { color: var(--ink-300); }

/* Hero — щільна сітка постер + інфо.
   Тонований фон позаду створює "обкладинку альбому", щоб вікно не виглядало порожнім. */
.event-detail__hero {
    position: relative;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    padding: 24px;
}

/* Постер на сторінці події: висота за натуральним розміром картинки —
   без білих полів сверху/знизу. Пропорції оригіналу зберігаємо повністю. */
.event-detail__poster-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    align-self: start;
}
.event-detail__poster-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.event-detail__info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

/* верхній рядок: бейдж жанру + дата компактно */
.event-detail__topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.event-detail__topline .event-card__genre {
    position: static;
    /* трохи більший за картковий */
    padding: 6px 12px;
    font-size: 11px;
}
.event-detail__topline-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-500);
    font-size: 13px;
    font-weight: 600;
}
.event-detail__topline-meta i { color: var(--brand-blue); font-size: 14px; }

.event-detail__title {
    font-size: 26px;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.18;
    margin: 0;
    word-wrap: break-word;
}

/* Основна "марка" — велика дата і час одним рядком, без панелей */
.event-detail__when {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 4px 0 2px;
}
.event-detail__when-date {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
    letter-spacing: -0.3px;
}
.event-detail__when-sep {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--ink-300);
    align-self: center;
}
.event-detail__when-weekday {
    font-size: 13px;
    color: var(--ink-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.event-detail__when-time {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-blue);
    line-height: 1;
    letter-spacing: -0.3px;
}

/* Площадка — рядком, без великої "панелі" */
.event-detail__where {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
}
.event-detail__where-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: var(--brand-blue);
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(31,87,154,0.3);
}
.event-detail__where-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.event-detail__where-place {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.3;
}
.event-detail__where-place a {
    color: var(--ink-900);
    text-decoration: none;
    border-bottom: 1px dashed var(--ink-300);
}
.event-detail__where-place a:hover { color: var(--brand-blue); border-bottom-color: var(--brand-blue); }
.event-detail__where-city {
    font-size: 13px;
    color: var(--ink-500);
    font-weight: 600;
}
.event-detail__where-address {
    font-size: 13px;
    color: var(--ink-500);
    margin-top: 2px;
}

/* CTA — щільний рядок ціна + кнопка */
.event-detail__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 6px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.event-detail__price {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}
.event-detail__price-from {
    font-size: 11px;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}
.event-detail__price-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--price);
    letter-spacing: -0.5px;
}

.event-detail__btn {
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.event-detail__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.45);
    color: #fff;
    text-decoration: none;
}
.event-detail__btn--disabled {
    background: #e2e8f0;
    color: #64748b;
    box-shadow: none;
    pointer-events: none;
}

/* === Опис === */
.event-detail__description {
    margin-top: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--card-shadow);
}
.event-detail__description-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 14px;
}
.event-detail__description-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-700);
}
.event-detail__description-text p { margin-bottom: 12px; }
.event-detail__description-text p:last-child { margin-bottom: 0; }

/* === Блок перелінковки знизу === */
.event-related {
    margin-top: 32px;
}
.event-related__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 16px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.event-related__title-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-blue);
    text-decoration: none;
}
.event-related__title-link:hover { text-decoration: underline; }

/* sticky CTA на мобільних */
@media (max-width: 768px) {
    .event-detail__hero {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
        border-radius: 14px;
    }
    .event-detail__poster-wrap { max-width: 200px; margin: 0 auto; }
    .event-detail__title { font-size: 19px; line-height: 1.2; }
    .event-detail__info { gap: 10px; }
    .event-detail__when {
        gap: 8px;
        margin: 2px 0;
    }
    .event-detail__when-date,
    .event-detail__when-time { font-size: 18px; }
    .event-detail__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
    }
    .event-detail__price { align-items: center; text-align: center; }
    .event-detail__price-value { font-size: 24px; }
    .event-detail__btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 14px; }
    .event-detail__where { gap: 10px; }
    .event-detail__where-icon { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; }
    .event-detail__where-place { font-size: 15px; }
    .event-detail__description { padding: 14px; border-radius: 14px; margin-top: 16px; }
    .event-detail__description-title { font-size: 17px; margin-bottom: 10px; }
    .event-detail__description-text { font-size: 14px; line-height: 1.55; }
    .event-related { margin-top: 20px; }
    .event-related__title { font-size: 18px; margin-bottom: 10px; }

    /* sticky купити */
    .event-detail__sticky-cta {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        background: #fff;
        padding: 10px 14px;
        box-shadow: 0 -8px 24px rgba(15,23,42,0.12);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        z-index: 50;
        border-top: 1px solid var(--card-border);
    }
    .event-detail__sticky-cta .event-detail__price-value { font-size: 18px; }
    .event-detail__sticky-cta .event-detail__btn { padding: 12px 22px; font-size: 14px; }
    body.has-sticky-cta { padding-bottom: 80px; }
}

/* === Хлібні крихти на сторінках розділів === */
.crumbs {
    font-size: 13px;
    color: var(--ink-500);
    margin: 12px 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.crumbs a { color: var(--brand-blue); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { color: var(--ink-300); }

/* === H1/інтро на сторінках розділів === */
.section-head {
    margin: 8px 0 20px;
}
.section-head h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0 0 6px;
}
.section-head .section-head__sub {
    font-size: 14px;
    color: var(--ink-500);
}
.section-head__h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink-900);
    margin: 0;
}
@media (max-width: 768px) {
    .crumbs { margin: 8px 0 10px; font-size: 12px; }
    .section-head { margin: 4px 0 12px; }
    .section-head h1 { font-size: 20px; }
    .section-head__h2 { font-size: 18px; }
    .section-head .section-head__sub { font-size: 13px; }
}

/* === Глобальні мобільні правила контенту === */
@media (max-width: 768px) {
    .container-fluid.content { padding-left: 8px; padding-right: 8px; }
    .container { padding-left: 10px; padding-right: 10px; }
}

/* === Skeleton-loader для нескінченної підгрузки === */
.event-card--skeleton .event-card__poster {
    background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    background-size: 200% 100%;
    animation: skeleton 1.4s infinite;
}
.event-card--skeleton .event-card__title,
.event-card--skeleton .event-card__date,
.event-card--skeleton .event-card__venue {
    background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
    background-size: 200% 100%;
    animation: skeleton 1.4s infinite;
    color: transparent;
    border-radius: 6px;
    min-height: 14px;
}
@keyframes skeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === Sentinel для IntersectionObserver === */
.events-load-more {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 24px 0;
    color: var(--ink-500);
    font-size: 14px;
}
.events-load-more .spinner-border {
    color: var(--brand-purple);
}

/* ============================================================
   Hero сторінки площадки (без фото)
   ============================================================ */
.venue-head {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 24px 28px;
    margin-bottom: 24px;
}
.venue-head__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.2;
    margin: 0 0 14px;
}
.venue-head__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.venue-head__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f5f9;
    color: var(--ink-700);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}
.venue-head__chip i {
    color: var(--brand-blue);
    font-size: 13px;
}
.venue-head__desc {
    color: var(--ink-700);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
}
.venue-head__desc p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .venue-head { padding: 14px 16px; border-radius: 14px; margin-bottom: 16px; }
    .venue-head__title { font-size: 20px; margin-bottom: 10px; }
    .venue-head__chip { font-size: 12px; padding: 5px 10px; }
}

/* ============================================================
   Випадайка пошуку (#suggestions > .search-suggest)
   ============================================================ */
.search-suggest {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-height: min(70vh, 600px);
    overflow-y: auto;
}
.search-suggest__header {
    padding: 10px 16px;
    background: #f8fafc;
    color: var(--ink-500);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1;
}
.search-suggest__item {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 10px 16px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color .15s ease;
}
.search-suggest__item:last-child { border-bottom: none; }
.search-suggest__item:hover {
    background: rgba(31, 87, 154, 0.06);
    text-decoration: none;
    color: inherit;
}
.search-suggest__poster {
    display: block;
    width: 50px;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
}
.search-suggest__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.search-suggest__content {
    min-width: 0;
}
.search-suggest__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-suggest__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--ink-500);
}
.search-suggest__meta i {
    color: var(--brand-blue);
    margin-right: 3px;
}
.search-suggest__date,
.search-suggest__venue {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-suggest__price {
    font-size: 14px;
    font-weight: 800;
    color: var(--price);
    flex-shrink: 0;
    white-space: nowrap;
}
@media (max-width: 540px) {
    .search-suggest__item { grid-template-columns: 44px 1fr; padding: 10px 12px; gap: 10px; }
    .search-suggest__poster { width: 44px; }
    .search-suggest__price {
        grid-column: 1 / -1;
        text-align: right;
        font-size: 13px;
    }
    .search-suggest__title { white-space: normal; }
    .search-suggest__meta { font-size: 11px; gap: 8px; }
}

/* SEO-перелінковка: компактний рядок з посиланнями через кому. */
.seo-links {
    margin: 24px 0;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    color: var(--ink-500);
    font-size: 13px;
    line-height: 1.6;
}
.seo-links strong { color: var(--ink-900); margin-right: 4px; }
.seo-links a {
    color: var(--brand-blue);
    text-decoration: none;
    white-space: nowrap;
}
.seo-links a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    .seo-links { font-size: 12px; padding: 10px 12px; margin: 16px 0; }
}
