/* ═══════════════════════════════════════════════════════════════════════════
   AktivBalaton Events – Frontend CSS (v2.0 – Prioritás 4)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Wrapper – Elementor kit button override elleni védelem */
.abe-wrap button,
.abe-wrap a[role="button"] {
    box-sizing: border-box;
}

/* ── NÉZET VÁLTÓ GOMBOK ─────────────────────────────────────────────────── */
/* Segmented control – egybefüggő sáv (illeszkedik a szűrő panelhez) */
.abe-nezet-toggle {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 18px;
    padding: 4px;
    background: #eef2f7;
    border: 1px solid #dce5f0;
    border-radius: 10px;
}

a.abe-nezet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 18px;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    text-decoration: none;
    transition: background 0.16s, color 0.16s, box-shadow 0.16s;
    cursor: pointer;
    user-select: none;
}
a.abe-nezet-btn:hover { background: #e2e8f0; color: #334155; }
a.abe-nezet-btn.active { background: #1B2D3F; color: #fff; }   /* header sötét navy */
a.abe-nezet-btn.active:hover { background: #243a4f; color: #fff; }

/* ── SZŰRŐ PANEL ────────────────────────────────────────────────────────── */
.abe-filters {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px 16px;
    margin-bottom: 28px;
}

.abe-filter-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.abe-filter-title > i { color: #E8943A; }   /* csak a panel-cím ikon kap narancs akcentet (a chevron szürke marad) */

.abe-filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 18px;
    align-items: end;
    margin-bottom: 16px;
}
@media (max-width: 860px) { .abe-filter-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .abe-filter-row { grid-template-columns: 1fr; } }

.abe-filter-group { display: flex; flex-direction: column; min-width: 0; }
.abe-filter-group--wide { grid-column: 1 / -1; }   /* keresőmező – teljes szélesség, felül */
.abe-filter-group label {
    font-size: 12px; font-weight: 600; color: #4a5568;
    margin-bottom: 4px; display: flex; align-items: center;
    gap: 5px; white-space: nowrap;
}
.abe-filter-group label i { color: #94a3b8; font-size: 11px; }   /* label-ikonok tompítva (vizuális zaj csökkentése) */

.abe-filter-select,
.abe-filter-input {
    width: 100%; padding: 7px 10px;
    border: 1px solid #cbd5e0; border-radius: 6px;
    font-size: 13px; color: #2d3748; background: #fff;
    transition: border-color 0.15s;
}
.abe-filter-select:focus,
.abe-filter-input:focus {
    outline: none; border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.12);
}

.abe-filter-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

a.abe-filter-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 22px; background: #E8943A; color: #fff;   /* elsődleges gomb – header márka-narancs */
    border-radius: 6px; font-size: 14px; font-weight: 600;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0,0,0,0.18);
    box-shadow: 0 2px 8px rgba(232,148,58,0.32);
    transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
}
a.abe-filter-btn:hover {
    background: #d67f24; color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232,148,58,0.40);
}

a.abe-filter-reset-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 9px 16px; background: transparent; color: #718096;
    border: 1px solid #cbd5e0; border-radius: 6px;
    font-size: 13px; font-weight: 500; text-decoration: none;
    transition: all 0.15s;
}
a.abe-filter-reset-btn:hover { background: #edf2f7; color: #4a5568; border-color: #a0aec0; }

/* Loading overlay */
.abe-loading-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,0.7); z-index: 9999;
    align-items: center; justify-content: center;
}
.abe-loading-overlay.active { display: flex; }
.abe-loading-spinner {
    width: 44px; height: 44px;
    border: 4px solid #e2e8f0; border-top-color: #0073aa;
    border-radius: 50%; animation: abeSpin 0.8s linear infinite;
}
@keyframes abeSpin { to { transform: rotate(360deg); } }

/* ── NÉZET PANEL-EK ─────────────────────────────────────────────────────── */
.abe-nezet-panel { display: block; }
.abe-nezet-panel--hidden { display: none; }

/* Inline loading (naptár betöltéskor) */
.abe-cal-loading {
    display: flex; align-items: center; gap: 12px;
    padding: 40px 20px; font-size: 15px; color: #718096;
    justify-content: center;
}
.abe-loading-spinner--inline {
    width: 24px; height: 24px;
    border: 3px solid #e2e8f0; border-top-color: #0073aa;
    border-radius: 50%; animation: abeSpin 0.8s linear infinite;
    flex-shrink: 0;
}

/* ── ESEMÉNY KÁRTYA GRID ────────────────────────────────────────────────── */
.abe-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 32px;
}
@media (max-width: 1100px) { .abe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .abe-grid { grid-template-columns: 1fr; } }

/* ── ESEMÉNY KÁRTYA ─────────────────────────────────────────────────────── */
.abe-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
    overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
    display: flex; flex-direction: column; position: relative;
}
.abe-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }

.abe-card-color-bar {
    width: 5px; position: absolute; top: 0; left: 0; bottom: 0;
    border-radius: 10px 0 0 10px; z-index: 2;
}

.abe-card--kiemelt {
    border-color: #f6c90e;
    box-shadow: 0 0 0 1px rgba(246,201,14,0.5), 0 4px 16px rgba(246,201,14,0.15);
}
.abe-card--kiemelt:hover {
    box-shadow: 0 0 0 1px rgba(246,201,14,0.6), 0 8px 28px rgba(246,201,14,0.2);
    transform: translateY(-3px);
}

.abe-card--cancelled { opacity: 0.72; filter: grayscale(30%); }
.abe-card--cancelled:hover { opacity: 0.85; filter: grayscale(15%); }

.abe-card-img-link { display: block; }
.abe-card-img {
    height: 180px; overflow: hidden; background: #f0f4f8; position: relative;
}
.abe-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center; display: block; transition: transform 0.3s;
}
.abe-card:hover .abe-card-img img { transform: scale(1.03); }

.abe-statusz-badge {
    position: absolute; top: 10px; left: 10px;
    padding: 3px 9px; border-radius: 4px; font-size: 11px;
    font-weight: 700; color: #fff; letter-spacing: 0.3px;
    text-transform: uppercase; line-height: 1.5; z-index: 3;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.abe-kiemelt-badge {
    position: absolute; top: 8px; right: 10px; font-size: 20px;
    line-height: 1; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); z-index: 3;
}

.abe-card-top-badges { padding: 8px 12px 0; display: flex; gap: 6px; flex-wrap: wrap; }
.abe-card-top-badges--right { justify-content: flex-end; }
.abe-card-top-badges .abe-statusz-badge,
.abe-card-top-badges .abe-kiemelt-badge { position: static; box-shadow: none; }

.abe-card-body { padding: 14px 16px 16px 20px; display: flex; flex-direction: column; flex: 1; }

.abe-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.abe-kat-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 20px; border: 1px solid transparent;
    text-transform: uppercase; letter-spacing: 0.4px;
    background: color-mix(in srgb, var(--badge-szin, #0073aa) 65%, #fff) !important;
    color: #fff !important;
    border-color: color-mix(in srgb, var(--badge-szin, #0073aa) 80%, transparent) !important;
}
.abe-tipus-tag {
    display: inline-block; background: #edf2f7; color: #4a5568;
    font-size: 11px; font-weight: 500; padding: 2px 8px;
    border-radius: 20px; border: 1px solid #e2e8f0;
}

.abe-card-datum {
    font-size: 13px; font-weight: 600; color: #0073aa;
    margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
}
.abe-card-datum i { font-size: 12px; }

.abe-card-title { font-size: 16px; font-weight: 700; margin: 0 0 10px; line-height: 1.35; }
.abe-card-title a { color: #1a202c; text-decoration: none; }
.abe-card-title a:hover { color: #0073aa; }

.abe-card-helyszin {
    font-size: 13px; color: #4a5568; margin-bottom: 6px;
    display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap;
}
.abe-card-helyszin i { color: #e53e3e; flex-shrink: 0; margin-top: 2px; }
a.abe-card-helyszin-link { color: #4a5568; text-decoration: none; }
a.abe-card-helyszin-link:hover { color: #0073aa; text-decoration: underline; }
.abe-card-helyszin-varos { color: #718096; font-size: 12px; }

.abe-card-meta {
    font-size: 13px; color: #4a5568; margin-bottom: 6px;
    display: flex; align-items: flex-start; gap: 6px;
}
.abe-card-meta i { color: #0073aa; width: 14px; flex-shrink: 0; margin-top: 2px; }

.abe-card-actions { margin-top: auto; padding-top: 14px; display: flex; gap: 10px; align-items: center; }

.abe-btn-reszlet {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #0073aa; color: #fff;
    border-radius: 6px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: background 0.18s;
}
.abe-btn-reszlet:hover { background: #005a87; color: #fff; }

a.abe-btn-jegy {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 14px; background: #38a169; color: #fff;
    border-radius: 6px; font-size: 13px; font-weight: 600;
    text-decoration: none; transition: background 0.18s;
}
a.abe-btn-jegy:hover { background: #2f855a; color: #fff; }

.abe-no-results { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: #718096; }
.abe-no-results i { font-size: 48px; margin-bottom: 16px; color: #cbd5e0; display: block; }
.abe-no-results h3 { font-size: 20px; margin-bottom: 8px; }

/* ── LOAD MORE ──────────────────────────────────────────────────────────── */
.abe-load-more-container { text-align: center; margin: 8px 0 32px; }
a.abe-load-more-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; background: #0073aa; color: #fff;
    border: 2px solid #0073aa; border-radius: 10px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    transition: all 0.2s; cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,115,170,0.25);
}
a.abe-load-more-btn:hover { background: #005a87; border-color: #005a87; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,115,170,0.35); }
a.abe-load-more-btn.loading { opacity: 0.6; pointer-events: none; }
.abe-load-more-info { font-size: 12px; opacity: 0.7; }
.abe-all-loaded { color: #38a169; font-weight: 600; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAPTÁR – KÖZÖS ELEMEK
   ═══════════════════════════════════════════════════════════════════════════ */

.abe-cal-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px;
}
.abe-cal-nav-title {
    font-size: 20px; font-weight: 700; color: #1a202c;
    text-align: center; flex: 1; text-transform: capitalize;
}
a.abe-cal-nav-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border: 2px solid #0073aa; border-radius: 50%;
    color: #0073aa; background: #fff; text-decoration: none; transition: all 0.18s; flex-shrink: 0;
}
a.abe-cal-nav-btn:hover { background: #0073aa; color: #fff; }

.abe-cal-no-events {
    text-align: center; padding: 24px; color: #a0aec0; font-size: 14px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.abe-cal-no-events i { font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════════════════
   HAVI NAPTÁR
   ═══════════════════════════════════════════════════════════════════════════ */
.abe-calendar-honap {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 20px; margin-bottom: 32px; overflow: hidden;
}
.abe-cal-grid--honap { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.abe-cal-header-cell {
    text-align: center; font-size: 12px; font-weight: 700; color: #718096;
    padding: 6px 2px; text-transform: uppercase; letter-spacing: 0.5px;
}
.abe-cal-cell {
    min-height: 96px; padding: 4px; border-radius: 6px;
    vertical-align: top; position: relative; transition: background 0.12s;
}
.abe-cal-cell:hover { background: #f7fafc; }
.abe-cal-cell--ures { background: transparent; min-height: 96px; }
.abe-cal-cell--ma { background: #ebf8ff; outline: 2px solid #0073aa; outline-offset: -2px; border-radius: 6px; }
.abe-cal-cell--hevege { background: #fafafa; }
.abe-cal-cell--hevege:hover { background: #f0f4f8; }
.abe-cal-day-num {
    font-size: 13px; font-weight: 600; color: #4a5568;
    text-align: right; padding: 2px 4px 4px 0; line-height: 1;
}
.abe-cal-cell--ma .abe-cal-day-num { color: #0073aa; font-weight: 800; }
.abe-cal-esemeny-pill {
    display: flex; align-items: center; gap: 3px; padding: 2px 6px;
    border-radius: 3px; font-size: 11px; font-weight: 500; color: #fff;
    text-decoration: none; margin-bottom: 2px; overflow: hidden;
    white-space: nowrap; text-overflow: ellipsis; line-height: 1.4; transition: opacity 0.15s, filter 0.15s;
}
.abe-cal-esemeny-pill:hover { opacity: 0.88; filter: brightness(1.08); color: #fff; }
.abe-cal-pill-ido { font-weight: 700; font-size: 10px; opacity: 0.9; flex-shrink: 0; }
.abe-cal-pill-nev { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.abe-cal-tobb { font-size: 11px; color: #0073aa; font-weight: 600; padding: 1px 4px; cursor: default; }
/* KÍSÉRLETI (v2.16.3): a naptár-MODALBAN nagyobb, olvashatóbb esemény-pillek.
   Kizárólag a .abe-naptar-modal-overlay scope-ban → a mobil/beágyazott havi
   nézet pill-mérete VÁLTOZATLAN. Mellékhatás: a nagyobb pillek mellett több
   "+N további" felirat jelenhet meg sűrűn teli napoknál (max_megjeleno=3). */
.abe-naptar-modal-overlay .abe-cal-esemeny-pill { font-size: 12px; padding: 3px 7px; }
@media (min-width: 1024px) {
    .abe-naptar-modal-overlay .abe-cal-esemeny-pill { font-size: 12.5px; padding: 3px 8px; }
}
@media (min-width: 1400px) {
    .abe-naptar-modal-overlay .abe-cal-esemeny-pill { font-size: 13px; padding: 4px 9px; }
}
/* Köztes asztali tartomány (kb. 641–1300px): ha a naptár a szűrőpanel mellett szűk
   helyet kap, a 7 oszlop NE vágódjon le (a szülő overflow:hidden miatt), hanem
   maradjon olvasható minimum-szélességen és váljon vízszintesen görgethetővé.
   A safety-net csak akkor aktiválódik, ha a konténer ténylegesen 700px alá szorul –
   tág asztali nézetben nincs hatása. Mobil (≤640px) érintetlen: ott a cellák zsugorodnak. */
@media (min-width: 641px) and (max-width: 1300px) {
    .abe-calendar-honap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .abe-cal-grid--honap { min-width: 700px; }
}
@media (max-width: 640px) {
    .abe-cal-cell { min-height: 60px; }
    .abe-cal-esemeny-pill { font-size: 10px; padding: 1px 4px; }
    .abe-cal-pill-ido { display: none; }
    .abe-cal-day-num { font-size: 11px; }
    .abe-calendar-honap { padding: 12px 8px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HETI NÉZET
   ═══════════════════════════════════════════════════════════════════════════ */
.abe-calendar-het {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
    padding: 20px; margin-bottom: 32px;
}
.abe-cal-grid--het { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.abe-het-nap {
    border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden;
    min-height: 140px; display: flex; flex-direction: column;
}
.abe-het-nap--ma { border-color: #0073aa; box-shadow: 0 0 0 1px #0073aa; }
.abe-het-nap--hevege { background: #fafafa; }
.abe-het-nap--ures { opacity: 0.65; }
.abe-het-nap-fejlec {
    background: #f8f9fa; padding: 6px 8px; text-align: center;
    border-bottom: 1px solid #e2e8f0; display: flex; flex-direction: column; gap: 1px;
}
.abe-het-nap--ma .abe-het-nap-fejlec { background: #0073aa; border-bottom-color: #005a87; }
.abe-het-nap-rovid { font-size: 11px; font-weight: 700; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; }
.abe-het-nap--ma .abe-het-nap-rovid { color: rgba(255,255,255,0.8); }
.abe-het-nap-szam { font-size: 18px; font-weight: 800; color: #1a202c; line-height: 1; }
.abe-het-nap--ma .abe-het-nap-szam { color: #fff; }
.abe-het-nap-body { padding: 6px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
a.abe-het-esemeny {
    display: block; padding: 5px 7px; border-left: 3px solid #0073aa;
    background: #f0f6fc; border-radius: 0 4px 4px 0; text-decoration: none; transition: background 0.15s;
}
a.abe-het-esemeny:hover { background: #e1effe; }
a.abe-het-esemeny--cancelled { opacity: 0.6; filter: grayscale(50%); text-decoration: line-through; }
.abe-het-esemeny-ido { display: block; font-size: 10px; font-weight: 700; color: #4a5568; margin-bottom: 1px; letter-spacing: 0.3px; }
.abe-het-esemeny-nev { display: block; font-size: 11px; font-weight: 600; color: #1a202c; line-height: 1.3; word-break: break-word; }
.abe-het-esemeny-helyszin { display: block; font-size: 10px; color: #718096; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.abe-het-ures-nap { text-align: center; color: #cbd5e0; font-size: 18px; padding: 16px 0; }
@media (max-width: 900px) { .abe-cal-grid--het { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .abe-cal-grid--het { grid-template-columns: repeat(2, 1fr); } .abe-calendar-het { padding: 12px 8px; } }

/* ── SINGLE ESEMÉNY / HELYSZÍN – KÖZÖS ALAP ─────────────────────────────── */
.abe-single-wrap { max-width: 1100px; margin: 0 auto; padding: 20px 20px 60px; }
.abe-single-breadcrumb { margin-bottom: 20px; }
a.abe-single-back {
    color: #4a5568; text-decoration: none; font-size: 14px;
    display: inline-flex; align-items: center; gap: 5px;
}
a.abe-single-back:hover { color: #0073aa; }

/* Kétoszlopos layout (esemény + helyszín single közös) */
.abe-single-inner,
.abe-helyszin-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .abe-single-inner,
    .abe-helyszin-inner { grid-template-columns: 1fr; }
}

/* Galéria blokk */
.abe-single-main-img-wrap { position: relative; border-radius: 10px; overflow: hidden; }
.abe-single-main-img { width: 100%; display: block; }
.abe-lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); color: #fff; border: none;
    width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
    font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.abe-lb-prev { left: 10px; }
.abe-lb-next { right: 10px; }
.abe-single-img-counter {
    position: absolute; bottom: 10px; right: 12px;
    background: rgba(0,0,0,0.5); color: #fff; font-size: 12px;
    padding: 2px 8px; border-radius: 20px;
}
.abe-single-thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.abe-single-thumb {
    width: 60px; height: 60px; object-fit: cover; border-radius: 5px;
    cursor: pointer; border: 2px solid transparent; opacity: 0.7; transition: all 0.15s;
}
.abe-single-thumb.active, .abe-single-thumb:hover { border-color: #0073aa; opacity: 1; }

/* Nincs kép – helyszín oldali placeholder */
.abe-helyszin-no-img {
    width: 100%; min-height: 240px; background: #f0f4f8;
    border-radius: 10px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    color: #a0aec0;
}
.abe-helyszin-no-img i { font-size: 56px; }
.abe-helyszin-no-img span { font-size: 14px; }

/* Adatok oldal */
.abe-single-title { font-size: 26px; font-weight: 800; margin: 0 0 16px; color: #1a202c; }
.abe-single-kategoria { margin-bottom: 12px; }
.abe-single-meta { margin-bottom: 20px; }
.abe-meta-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px; color: #2d3748; padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}
.abe-meta-item i { color: #0073aa; width: 18px; flex-shrink: 0; margin-top: 3px; }
.abe-meta-item small { display: block; font-size: 12px; color: #718096; margin-top: 2px; }
a.abe-contact-link { color: #0073aa; text-decoration: none; }
a.abe-contact-link:hover { text-decoration: underline; }

a.abe-btn-jegy-nagy {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; background: #38a169; color: #fff;
    border-radius: 8px; font-size: 16px; font-weight: 700;
    text-decoration: none; margin-bottom: 20px; transition: background 0.2s;
}
a.abe-btn-jegy-nagy:hover { background: #2f855a; color: #fff; }

.abe-single-leiras { font-size: 15px; line-height: 1.7; color: #2d3748; margin-bottom: 24px; }
.abe-single-map { margin-top: 20px; border-radius: 10px; overflow: hidden; }
.abe-single-map iframe { display: block; }
a.abe-utvonal-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px; color: #0073aa; font-size: 13px; text-decoration: none;
}
a.abe-utvonal-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════════════
   P4 – SINGLE ESEMÉNY BŐVÍTÉSEK
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Státusz badge az oldalon (nem kártya overlay) ─────────────────────── */
.abe-single-statusz-sor {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap;
}

.abe-statusz-badge--nagy {
    position: static !important;
    font-size: 13px !important;
    padding: 5px 14px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
}

.abe-kiemelt-badge--single {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 700; color: #975a16;
    background: #fefcbf; border: 1px solid #f6e05e;
    padding: 4px 12px; border-radius: 6px;
}

/* ── Naptárhoz adás blokk ──────────────────────────────────────────────── */
.abe-cal-blokk {
    background: #f0f6fc;
    border: 1px solid #bee3f8;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.abe-cal-blokk-title {
    font-size: 13px; font-weight: 700; color: #2b6cb0;
    margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.abe-cal-blokk-title i { font-size: 14px; }

.abe-cal-blokk-gombok {
    display: flex; gap: 10px; flex-wrap: wrap;
}

a.abe-cal-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 6px;
    font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.18s;
}

a.abe-cal-btn--google {
    background: #fff; color: #2b6cb0;
    border: 1.5px solid #90cdf4;
}
a.abe-cal-btn--google:hover { background: #ebf8ff; color: #2c5282; border-color: #63b3ed; }

a.abe-cal-btn--ics {
    background: #fff; color: #553c9a;
    border: 1.5px solid #d6bcfa;
}
a.abe-cal-btn--ics:hover { background: #faf5ff; color: #44337a; border-color: #b794f4; }

/* ── Helyszín blokk az esemény oldalán ────────────────────────────────── */
.abe-single-helyszin-blokk {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0073aa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.abe-single-helyszin-header {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; color: #0073aa;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.abe-single-helyszin-header i { font-size: 12px; }

.abe-single-helyszin-nev {
    font-size: 16px; font-weight: 700; margin-bottom: 4px;
}
a.abe-helyszin-blokk-link {
    color: #1a202c; text-decoration: none; transition: color 0.15s;
}
a.abe-helyszin-blokk-link:hover { color: #0073aa; }

.abe-single-helyszin-cim {
    font-size: 13px; color: #718096; margin-bottom: 10px;
}

.abe-single-helyszin-kontakt {
    display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px;
}

a.abe-helyszin-kontakt-item {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; color: #4a5568; text-decoration: none; transition: color 0.15s;
}
a.abe-helyszin-kontakt-item i { color: #0073aa; width: 14px; font-size: 12px; flex-shrink: 0; }
a.abe-helyszin-kontakt-item:hover { color: #0073aa; }

a.abe-helyszin-blokk-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; background: #0073aa; color: #fff;
    border-radius: 5px; font-size: 12px; font-weight: 600;
    text-decoration: none; transition: background 0.18s;
}
a.abe-helyszin-blokk-btn:hover { background: #005a87; color: #fff; }

/* ── Megosztás blokk ───────────────────────────────────────────────────── */
.abe-megosztás-blokk {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
}

.abe-megosztás-title {
    font-size: 13px; font-weight: 700; color: #4a5568;
    margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
    text-transform: uppercase; letter-spacing: 0.4px;
}

.abe-megosztás-gombok {
    display: flex; gap: 8px; flex-wrap: wrap;
}

a.abe-share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 6px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transition: all 0.18s; cursor: pointer; border: 1.5px solid transparent;
}

a.abe-share-btn--fb {
    background: #1877f2; color: #fff; border-color: #1877f2;
}
a.abe-share-btn--fb:hover { background: #1565d8; border-color: #1565d8; color: #fff; }

a.abe-share-btn--twitter {
    background: #000; color: #fff; border-color: #000;
}
a.abe-share-btn--twitter:hover { background: #333; border-color: #333; color: #fff; }

a.abe-share-btn--email {
    background: #fff; color: #4a5568; border-color: #cbd5e0;
}
a.abe-share-btn--email:hover { background: #edf2f7; color: #2d3748; border-color: #a0aec0; }

a.abe-share-btn--copy {
    background: #fff; color: #4a5568; border-color: #cbd5e0;
}
a.abe-share-btn--copy:hover { background: #edf2f7; color: #2d3748; border-color: #a0aec0; }
a.abe-share-btn--copy.abe-copy-sikeres {
    background: #f0fff4; color: #276749; border-color: #9ae6b4;
}

/* Forrás link */
.abe-forras { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════════════════════════
   P4 – HELYSZÍN SINGLE OLDAL
   ═══════════════════════════════════════════════════════════════════════════ */

/* Social ikonok */
.abe-helyszin-social {
    display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 20px;
}

a.abe-social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    font-size: 16px; text-decoration: none; transition: all 0.2s;
    color: #fff; flex-shrink: 0;
}
a.abe-social-fb      { background: #1877f2; }
a.abe-social-fb:hover { background: #1565d8; transform: translateY(-2px); }

a.abe-social-insta    {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
a.abe-social-insta:hover { opacity: 0.88; transform: translateY(-2px); }

a.abe-social-twitter  { background: #000; }
a.abe-social-twitter:hover { background: #333; transform: translateY(-2px); }

a.abe-social-youtube  { background: #ff0000; }
a.abe-social-youtube:hover { background: #cc0000; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   P4 – KAPCSOLÓDÓ + KÖZELGŐ ESEMÉNYEK SZEKCIÓK
   ═══════════════════════════════════════════════════════════════════════════ */

.abe-kapcsolodo-esemenyek,
.abe-helyszin-esemenyek {
    border-top: 2px solid #e2e8f0;
    padding-top: 36px;
    margin-top: 8px;
}

.abe-kapcsolodo-title,
.abe-helyszin-esemenyek-title {
    font-size: 22px; font-weight: 800; color: #1a202c;
    margin: 0 0 24px; display: flex; align-items: center;
    gap: 10px; flex-wrap: wrap;
}
.abe-kapcsolodo-title i,
.abe-helyszin-esemenyek-title i { color: #0073aa; font-size: 20px; }

a.abe-kapcsolodo-helyszin-link {
    color: #0073aa; text-decoration: none;
}
a.abe-kapcsolodo-helyszin-link:hover { text-decoration: underline; }

/* ── Reszponzív ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .abe-nezet-toggle { display: flex; width: 100%; }
    a.abe-nezet-btn { flex: 1; justify-content: center; }
    .abe-cal-blokk-gombok { flex-direction: column; }
    .abe-megosztás-gombok { gap: 6px; }
    a.abe-share-btn { font-size: 12px; padding: 6px 10px; }
    .abe-kapcsolodo-title,
    .abe-helyszin-esemenyek-title { font-size: 18px; }
    .abe-list-date-box { min-width: 62px; max-width: 62px; }
    .abe-list-date-day { font-size: 20px; }
    .abe-list-thumb { width: 80px; min-height: 88px; }
    .abe-list-title { font-size: 14px; }
    .abe-list-actions { border-left: none; border-top: 1px solid #f0f4f8; flex-direction: row; width: 100%; padding: 8px 12px; justify-content: flex-start; }
    .abe-list-row { flex-wrap: wrap; }
    .abe-list-body { padding: 10px 12px 8px; }
}

@media (max-width: 480px) {
    .abe-list-thumb { display: none; }
    .abe-list-date-box { min-width: 58px; max-width: 58px; }
    .abe-list-date-ido { display: none; }
}

/* =======================================================================
   LISTA NEZÉT – EventON-ihlette vízszintes sorok (v2.3.3)
   ======================================================================= */

.abe-list-view {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.abe-no-results--lista {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    color: #718096;
}
.abe-no-results--lista i { font-size: 48px; margin-bottom: 16px; color: #cbd5e0; display: block; }
.abe-no-results--lista h3 { font-size: 20px; margin-bottom: 8px; }

/* -- Lista sor --------------------------------------------------------------- */
.abe-list-row {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    position: relative;
    min-height: 88px;
}
.abe-list-row:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.abe-list-row--kiemelt {
    border-color: #f6c90e;
    box-shadow: 0 0 0 1.5px rgba(246,201,14,0.45), 0 2px 8px rgba(246,201,14,0.12);
}
.abe-list-row--kiemelt:hover {
    box-shadow: 0 0 0 1.5px rgba(246,201,14,0.5), 0 8px 24px rgba(246,201,14,0.2);
}

.abe-list-row--cancelled {
    opacity: 0.68;
    filter: grayscale(40%);
}
.abe-list-row--cancelled:hover { opacity: 0.8; }

/* -- Bal oldali szin csik – elrejtve (v2.7.1): a 2px-es keret viszi a szint */
.abe-list-color-bar {
    display: none;
}

/* -- Datum doboz (kategoria szin hatter) ------------------------------------ */
.abe-list-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    max-width: 74px;
    padding: 10px 6px;
    background: #0073aa;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
    gap: 1px;
}

.abe-list-date-day {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    display: block;
    letter-spacing: -0.5px;
}

.abe-list-date-month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.92;
    display: block;
}

.abe-list-date-ido {
    font-size: 10px;
    opacity: 0.82;
    display: block;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

/* -- Thumbnail kep ---------------------------------------------------------- */
a.abe-list-thumb-link {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}
.abe-list-thumb {
    width: 110px;
    height: 100%;
    min-height: 88px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.abe-list-row:hover .abe-list-thumb { transform: scale(1.04); }

/* -- Tartalom -------------------------------------------------------------- */
.abe-list-body {
    flex: 1;
    padding: 11px 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    gap: 4px;
}

.abe-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.abe-list-kiemelt-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    background: #fefcbf;
    color: #975a16;
    border: 1px solid #f6e05e;
}

.abe-list-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.32;
}
.abe-list-title a { color: #1a202c; text-decoration: none; }
.abe-list-title a:hover { color: #0073aa; }

.abe-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 14px;
    font-size: 12px;
    color: #4a5568;
    align-items: center;
}

.abe-list-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.abe-list-meta-item i { color: #0073aa; font-size: 11px; flex-shrink: 0; }

a.abe-list-helyszin-link { color: #4a5568; text-decoration: none; }
a.abe-list-helyszin-link:hover { color: #0073aa; text-decoration: underline; }
.abe-list-helyszin-varos { color: #718096; }

/* -- Jobb oldali akciok ---------------------------------------------------- */
.abe-list-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    flex-shrink: 0;
    border-left: 1px solid #f0f4f8;
}

/* =======================================================================
   OVERRIDE + FINOMÍTÁSOK (v2.3.4)
   ======================================================================= */

/* -- Szűrő panel modernizálása ------------------------------------------- */
.abe-filters {
    background: linear-gradient(135deg, #f8fafd 0%, #f0f4f9 100%);
    border: 1px solid #dce5f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,115,170,0.06);
}

.abe-filter-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dce5f0;
    margin-bottom: 14px;
}

a.abe-filter-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dce5f0;
    color: #718096;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
a.abe-filter-toggle:hover { background: #ebf8ff; color: #0073aa; border-color: #90cdf4; }
a.abe-filter-toggle i { font-size: 10px; }

.abe-filter-select,
.abe-filter-input {
    box-sizing: border-box;
    height: 40px;                 /* egységes mezőmagasság – igazított rács */
    border-radius: 8px;
    border-color: #d0d9e8;
    background: #fff;
    font-size: 13px;
    padding: 8px 12px;
}
/* Saját, diszkrét legördülő-nyíl (egységes minden böngészőben) */
.abe-filter-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 34px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.abe-filter-select:focus,
.abe-filter-input:focus {
    border-color: #E8943A;
    box-shadow: 0 0 0 3px rgba(232,148,58,0.22);
}

a.abe-filter-btn {
    padding: 9px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
a.abe-filter-reset-btn {
    padding: 9px 16px;
    border-radius: 8px;
}

/* -- Nézet váltó (segmented control finomítás) --------------------------- */
.abe-nezet-toggle { margin-bottom: 18px; }
a.abe-nezet-btn {
    padding: 7px 18px;
    font-size: 13px;
}

/* -- Single esemény + helyszín – layout jó arány ---------------------- */
.abe-single-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
}
.abe-helyszin-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
}

/* -- Single oldal cim nagyobb, erősebb -------------------------------------- */
.abe-single-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #1a202c;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}

/* -- Meta sorok finomabb stílus ---------------------------------------------- */
.abe-meta-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f4f8;
    gap: 12px;
}
.abe-meta-item i { color: #0073aa; }
.abe-meta-item:last-child { border-bottom: none; }

/* -- Jégvásárlás gomb finomabb -------------------------------------------- */
a.abe-btn-jegy-nagy {
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(56,161,105,0.25);
    transition: all 0.2s;
}
a.abe-btn-jegy-nagy:hover {
    background: #276749;
    box-shadow: 0 6px 16px rgba(56,161,105,0.35);
    transform: translateY(-1px);
    color: #fff;
}

/* -- Naptárhoz adás blokk finomabb ----------------------------------------- */
.abe-cal-blokk {
    background: linear-gradient(135deg, #ebf8ff 0%, #e3f2fd 100%);
    border: 1px solid #90cdf4;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}
.abe-cal-blokk-title {
    font-size: 12px;
    font-weight: 700;
    color: #2b6cb0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

a.abe-cal-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* -- Helyszín blokk (esemény oldalán) finomabb ------------------------------ */
.abe-single-helyszin-blokk {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0073aa;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.abe-single-helyszin-header {
    font-size: 10px;
    font-weight: 800;
    color: #0073aa;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 8px;
    gap: 5px;
}

.abe-single-helyszin-nev {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

/* -- Megosztás blokk finomabb ---------------------------------------------- */
.abe-megosztás-blokk { margin-top: 4px; }

a.abe-share-btn {
    border-radius: 8px;
    font-size: 12px;
    padding: 7px 14px;
    font-weight: 700;
}

/* -- Social ikonok finomabb ------------------------------------------------- */
a.abe-social-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.2s;
}
a.abe-social-icon:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* -- Térkép border-radius --------------------------------------------------- */
.abe-single-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 20px;
}
.abe-single-map iframe { display: block; border-radius: 12px; }

/* -- Kapcsolódó / közelgő események szekció --------------------------------- */
.abe-kapcsolodo-esemenyek,
.abe-helyszin-esemenyek {
    border-top: 2px solid #e2e8f0;
    padding-top: 32px;
    margin-top: 16px;
}

.abe-kapcsolodo-title,
.abe-helyszin-esemenyek-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.abe-kapcsolodo-title i,
.abe-helyszin-esemenyek-title i { color: #0073aa; font-size: 18px; }

/* -- Vissza gomb finomabb --------------------------------------------------- */
a.abe-single-back {
    color: #718096;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.15s;
    margin-bottom: 24px;
}
a.abe-single-back:hover { background: #ebf8ff; color: #0073aa; border-color: #90cdf4; }

/* -- Galéria finomítás ------------------------------------------------------- */
.abe-single-main-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.abe-single-main-img { display: block; }

.abe-single-thumbs { gap: 8px; margin-top: 10px; }
.abe-single-thumb {
    width: 64px;
    height: 64px;
    border-radius: 7px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.15s;
}
.abe-single-thumb.active,
.abe-single-thumb:hover { border-color: #0073aa; opacity: 1; }

.abe-lb-arrow {
    background: rgba(0,0,0,0.55);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background 0.15s;
}
.abe-lb-arrow:hover { background: rgba(0,115,170,0.8); }

/* -- Helyszín "nincs kép" placeholder szebb --------------------------------- */
.abe-helyszin-no-img {
    min-height: 280px;
    border-radius: 12px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.06);
}
.abe-helyszin-no-img i { font-size: 64px; opacity: 0.4; }
.abe-helyszin-no-img span { font-size: 13px; opacity: 0.6; }

/* -- Reszponzív mobilon szűrő panel ---------------------------------------- */
@media (max-width: 768px) {
    .abe-filter-title { padding-bottom: 10px; margin-bottom: 0; border-bottom: none; }
    .abe-filter-body.abe-filter-closed { display: none; }
    .abe-single-inner, .abe-helyszin-inner { grid-template-columns: 1fr; gap: 24px; }
    .abe-single-title { font-size: 22px; }
    a.abe-single-back { margin-bottom: 16px; }
}

/* =======================================================================
   DIZÁJN FINOMÍTÁSOK (v2.3.5)
   ======================================================================= */

/* -- Lista sor: jobb alapállapot és hover ----------------------------------- */
.abe-list-row {
    will-change: transform, box-shadow;
    transition: box-shadow 0.22s ease, transform 0.18s ease, border-color 0.18s ease;
}
.abe-list-row:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    transform: translateY(-2px);
}

/* -- Kiemelt sor: arany bal sáv + sárga glow -------------------------------- */
.abe-list-row--kiemelt {
    border-left: 3px solid #f6c90e;
    box-shadow: 0 0 0 1.5px rgba(246,201,14,0.35), 0 3px 12px rgba(246,201,14,0.13);
}
.abe-list-row--kiemelt .abe-list-color-bar {
    background: linear-gradient(180deg, #f6c90e 0%, #e8b800 100%) !important;
    width: 5px;
}
.abe-list-row--kiemelt:hover {
    box-shadow: 0 0 0 1.5px rgba(246,201,14,0.5), 0 10px 28px rgba(246,201,14,0.2);
}

/* -- Dátum doboz: belső finomság -------------------------------------------- */
.abe-list-date-box {
    position: relative;
    overflow: hidden;
}
.abe-list-date-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: rgba(255,255,255,0.12);
    pointer-events: none;
}
.abe-list-date-day {
    letter-spacing: -1px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* -- Cím hover szín egyezik a kategória színnel ha van ---------------------- */
.abe-list-title a:hover {
    color: var(--kat-szin, #0073aa);
}
.abe-card-title a:hover {
    color: var(--kat-szin, #0073aa);
}

/* -- Részletek gomb: kategória szín hover ----------------------------------- */
.abe-btn-reszlet {
    position: relative;
    overflow: hidden;
}
.abe-btn-reszlet::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.15s;
}
.abe-btn-reszlet:hover::after { opacity: 1; }
.abe-btn-reszlet i {
    transition: transform 0.2s ease;
}
.abe-btn-reszlet:hover i {
    transform: translateX(3px);
}

/* -- Szűrő panel: chevron animáció ----------------------------------------- */
a.abe-filter-toggle i {
    transition: transform 0.25s ease;
    display: inline-block;
}
a.abe-filter-toggle[aria-expanded="false"] i {
    transform: rotate(180deg);
}

/* -- Szűrő body: smooth collapse ------------------------------------------- */
.abe-filter-body {
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.22s ease;
    max-height: 600px;
    opacity: 1;
}
.abe-filter-body.abe-filter-closed {
    max-height: 0 !important;
    opacity: 0;
    display: block !important;
    pointer-events: none;
}

/* -- Input mezők: focus ring (márka-narancs akcent) ------------------------ */
.abe-filter-select:focus,
.abe-filter-input:focus {
    border-color: #E8943A;
    box-shadow: 0 0 0 3px rgba(232,148,58,0.22);
    outline: none;
}

/* -- Szűrő gombok mobilon: teljes szélesség -------------------------------- */
@media (max-width: 520px) {
    .abe-filter-actions { justify-content: stretch; }
    .abe-filter-actions a.abe-filter-btn,
    .abe-filter-actions a.abe-filter-reset-btn { flex: 1; justify-content: center; }
}

/* -- Nézet váltó: aktív szegmens finom árnyék ------------------------------ */
a.abe-nezet-btn.active {
    box-shadow: 0 1px 3px rgba(27,45,63,0.35);
}

/* -- Helyszín link: helyszín ikon piros -------------------------------------- */
.abe-list-meta-item .fa-map-marker-alt {
    color: #e53e3e;
}

/* -- Lista: staggered fade-in animáció ------------------------------------- */
@keyframes abeRowIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.abe-list-view .abe-list-row {
    animation: abeRowIn 0.2s ease both;
}
.abe-list-view .abe-list-row:nth-child(1) { animation-delay: 0.02s; }
.abe-list-view .abe-list-row:nth-child(2) { animation-delay: 0.06s; }
.abe-list-view .abe-list-row:nth-child(3) { animation-delay: 0.10s; }
.abe-list-view .abe-list-row:nth-child(4) { animation-delay: 0.13s; }
.abe-list-view .abe-list-row:nth-child(5) { animation-delay: 0.16s; }

/* -- Kártya grid: finomabb shadow és hover ---------------------------------- */
.abe-card {
    will-change: transform, box-shadow;
    transition: box-shadow 0.22s ease, transform 0.18s ease;
}
.abe-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.abe-card--kiemelt:hover {
    box-shadow: 0 0 0 1.5px rgba(246,201,14,0.6), 0 12px 32px rgba(246,201,14,0.22);
    transform: translateY(-4px);
}

/* -- Single oldal: leiras formázása → lásd a „LEIRAS-TARTALOM v1" közös
      blokkot lentebb (single + modal egységesen) ---------------------------- */

/* -- Mobilon: gomb-sor vízszintes ------------------------------------------ */
@media (max-width: 480px) {
    .abe-list-actions {
        padding: 10px 12px;
        border-left: none;
        border-top: 1px solid #f0f4f8;
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
    }
    .abe-list-row { flex-wrap: wrap; }
    a.abe-nezet-btn { font-size: 12px; padding: 6px 12px; }
}

/* =======================================================================
   SINGLE OLDAL FEJLESZTÉSEK (v2.3.5)
   ======================================================================= */

/* -- Ha nincs galéria kép: egyoszlopos layout ----------------------------- */
.abe-single-inner:has(.abe-single-gallery:empty),
.abe-single-inner:has(.abe-single-gallery > :empty),
.abe-single-gallery:empty ~ .abe-single-info {
    grid-column: 1 / -1;
}
.abe-single-gallery:empty { display: none; }
.abe-single-inner:has(.abe-single-gallery:empty) { grid-template-columns: 1fr; }

/* -- Főkép hiperlink focus ------------------------------------------------ */
a.abe-card-img-link:focus { outline: 2px solid #0073aa; outline-offset: 2px; }

/* -- Single meta: helyszín ikon piros -------------------------------------- */
.abe-single-meta .fa-map-marker-alt { color: #e53e3e; }
.abe-meta-item:first-child { padding-top: 0; }

/* -- Naptárhoz adás blokk hover ------------------------------------------ */
a.abe-cal-btn--google:hover { background: #dbeafe; border-color: #93c5fd; color: #1e40af; }
a.abe-cal-btn--ics:hover { background: #ede9fe; border-color: #c4b5fd; color: #5b21b6; }

/* -- Megosztás gombok hover ---------------------------------------------- */
a.abe-share-btn--fb:hover   { background: #1565d8; transform: translateY(-1px); }
a.abe-share-btn--twitter:hover { background: #222; transform: translateY(-1px); }
a.abe-share-btn--email:hover  { background: #edf2f7; transform: translateY(-1px); }
a.abe-share-btn--copy:hover   { background: #edf2f7; transform: translateY(-1px); }

.abe-megosztás-title { letter-spacing: 0.5px; font-size: 11px; }

/* -- Helyszín blokk hover ------------------------------------------------- */
.abe-single-helyszin-blokk { transition: box-shadow 0.2s ease, border-left-color 0.2s ease; }
.abe-single-helyszin-blokk:hover { box-shadow: 0 4px 16px rgba(0,115,170,0.12); border-left-color: #005a87; }

/* -- Kapcsolódó szekció cím díszítés -------------------------------------- */
.abe-kapcsolodo-title::before,
.abe-helyszin-esemenyek-title::before {
    content: '';
    display: inline-block;
    width: 4px; height: 1em;
    background: #0073aa; border-radius: 2px;
    margin-right: 4px; flex-shrink: 0; align-self: center;
}

/* -- Maps iframe árnyék --------------------------------------------------- */
.abe-single-map iframe { box-shadow: 0 2px 12px rgba(0,0,0,0.10); }

/* -- Single cím ----------------------------------------------------------- */
.abe-single-title { font-family: inherit; word-break: break-word; hyphens: auto; }

/* -- Vissza gomb aktív ---------------------------------------------------- */
a.abe-single-back:active { transform: translateX(-2px); }

/* -- Kiemelt lista sor gradient ------------------------------------------- */
.abe-list-row--kiemelt { background: linear-gradient(to right, #fffde7 0px, #fff 120px); }

/* -- Load more hover ------------------------------------------------------ */
a.abe-load-more-btn { transition: all 0.2s ease; }
a.abe-load-more-btn:hover { box-shadow: 0 4px 16px rgba(0,115,170,0.2); transform: translateY(-1px); }

/* -- Helyszín social sor -------------------------------------------------- */
.abe-helyszin-social { margin: 12px 0 18px; padding: 14px 0; border-top: 1px solid #f0f4f8; border-bottom: 1px solid #f0f4f8; }

/* -- Cal no events -------------------------------------------------------- */
.abe-cal-no-events { border-radius: 8px; background: #f8f9fa; margin: 8px 0; }

/* =======================================================================
   SINGLE OLDAL v3.0 – HERO LAYOUT
   ======================================================================= */

/* ── Egyoszlopos content wrapper ─────────────────────────────────────────── */
.abe-single-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

/* ── Hero kép konténer ───────────────────────────────────────────────────── */
.abe-single-hero {
    position: relative;
    width: 100%;
    height: 420px;          /* fix magasság – mindkét arány belefér */
    overflow: hidden;
    background: #0f172a;    /* sötét fallback ha lassú a betöltés */
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .abe-single-hero { height: 300px; }
}
@media (max-width: 480px) {
    .abe-single-hero { height: 240px; }
}

/* Elmosott háttér réteg (cover – kitölti az üres sávokat) */
.abe-single-hero-bg {
    position: absolute;
    inset: -20px;           /* túlnyúlás, hogy az elmosás ne hagyjon fehér sávot a széleken */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px) brightness(0.35) saturate(1.2);
    transform: scale(1.06);
    transition: background-image 0.3s ease;
}

/* Éles előtér kép (contain – nem vágódik le semmi) */
.abe-single-hero-fg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
    /* Enyhe árnyék, hogy a kép levegősen „lebegjen" a háttéren */
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}

/* Overlays – badge-ek a kép sarkában */
.abe-single-hero-overlays {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.abe-statusz-badge--hero {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
}

.abe-single-hero-star {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    line-height: 1;
}

/* Nyilak több képnél (örökölt, de pozíció finomítva) */
.abe-single-hero .abe-lb-arrow {
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.abe-single-hero .abe-lb-arrow:hover { background: rgba(0,115,170,0.75); }
.abe-single-hero .abe-lb-prev { left: 14px; }
.abe-single-hero .abe-lb-next { right: 14px; }

/* Kép számláló */
.abe-single-hero .abe-single-img-counter {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* ── Miniatűrök a hero alatt ─────────────────────────────────────────────── */
.abe-single-thumbs--hero {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 12px auto 0;
    padding: 0 20px;
}

/* ── Content blokk - kategória + cím fölső rész ──────────────────────────── */
.abe-single-content .abe-single-kategoria {
    margin-bottom: 10px;
    margin-top: 4px;
}

.abe-single-content .abe-single-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}
@media (max-width: 640px) {
    .abe-single-content .abe-single-title { font-size: 24px; }
    .abe-single-content { padding: 24px 16px 40px; }
    .abe-single-thumbs--hero { padding: 0 16px; }
}

/* Meta blokk: max-szélesség = 640px, hogy ne szétterüljön */
.abe-single-content .abe-single-meta {
    background: #f8fafd;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 4px 16px;
    margin-bottom: 24px;
}

.abe-single-content .abe-meta-item {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 15px;
    gap: 12px;
}
.abe-single-content .abe-meta-item:last-child { border-bottom: none; }
.abe-single-content .abe-meta-item:first-child { padding-top: 12px; }

/* ── Régi kétoszlopos single CSS felülírása ───────────────────────────────── */
/* A v3.0 hero layout nem használja az .abe-single-inner grid-et.           */
/* Ha más oldaltípus (helyszín) még használja, az érintetlen marad.          */
.abe-single-wrap .abe-single-inner {
    display: none !important;  /* elrejtjük, ha véletlenül maradna */
}

/* =======================================================================
   SINGLE OLDAL v3.0 – HERO LAYOUT
   ======================================================================= */

/* ── Egyoszlopos content wrapper ──────────────────────────────────────────────── */
.abe-single-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

/* ── Hero kép konténer ───────────────────────────────────────────────────────────── */
.abe-single-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #0f172a;
}
@media (max-width: 768px) { .abe-single-hero { height: 300px; } }
@media (max-width: 480px) { .abe-single-hero { height: 240px; } }

/* Elmosott háttér réteg (cover – kitölti az üres sávokat) */
.abe-single-hero-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(20px) brightness(0.35) saturate(1.2);
    transform: scale(1.06);
    transition: background-image 0.3s ease;
}

/* Éles előtér kép (contain – nem vágódik le semmi) */
.abe-single-hero-fg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45));
}

/* Overlays – badge-ek a kép sarkában */
.abe-single-hero-overlays {
    position: absolute;
    top: 14px; left: 14px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 10;
}

.abe-statusz-badge--hero {
    display: inline-block;
    padding: 5px 14px; border-radius: 6px;
    font-size: 12px; font-weight: 800;
    color: #fff; text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
}

.abe-single-hero-star {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    line-height: 1;
}

/* Nyílak több képnél */
.abe-single-hero .abe-lb-arrow {
    position: absolute;
    z-index: 20;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    width: 44px; height: 44px; border-radius: 50%;
    border: none; color: #fff; cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.abe-single-hero .abe-lb-arrow:hover { background: rgba(0,115,170,0.75); }
.abe-single-hero .abe-lb-prev { left: 14px; }
.abe-single-hero .abe-lb-next { right: 14px; }

.abe-single-hero .abe-single-img-counter {
    position: absolute; bottom: 12px; right: 14px;
    background: rgba(0,0,0,0.5); color: #fff;
    font-size: 12px; padding: 3px 10px; border-radius: 20px;
    z-index: 10; backdrop-filter: blur(4px);
}

/* ── Miniatűrök a hero alatt ──────────────────────────────────────────────────── */
.abe-single-thumbs--hero {
    display: flex; gap: 8px; flex-wrap: wrap;
    max-width: 860px; margin: 12px auto 0; padding: 0 20px;
}
@media (max-width: 640px) { .abe-single-thumbs--hero { padding: 0 16px; } }

/* ── Content: cím méret ─────────────────────────────────────────────────────────────────────── */
.abe-single-content .abe-single-title {
    font-size: 32px; font-weight: 800;
    line-height: 1.2; color: #1a202c;
    margin: 0 0 20px; letter-spacing: -0.5px;
}
@media (max-width: 640px) {
    .abe-single-content .abe-single-title { font-size: 24px; }
    .abe-single-content { padding: 24px 16px 40px; }
}

/* Meta blokk: szürkehatterű kértya */
.abe-single-content .abe-single-meta {
    background: #f8fafd;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 4px 16px;
    margin-bottom: 24px;
}
.abe-single-content .abe-meta-item {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 15px; gap: 12px;
}
.abe-single-content .abe-meta-item:last-child { border-bottom: none; }

/* -- Kat tag hover -------------------------------------------------------- */
.abe-kat-tag { transition: filter 0.15s ease, transform 0.12s ease; cursor: default; }
.abe-kat-tag:hover { filter: brightness(0.95); transform: translateY(-1px); }

/* -- Típus tag finomítás --------------------------------------------------- */
.abe-tipus-tag { font-size: 10.5px; letter-spacing: 0.2px; }

/* =======================================================================
   RÁCSOS KÁRTYA NÉZET – .abe-grid-card (v2.5.2)
   A card-grid-template.php által használt CSS osztályok
   ======================================================================= */

/* -- Grid wrapper ---------------------------------------------------------- */
.abe-grid-view {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}
.abe-grid-col-2 { grid-template-columns: repeat(2, 1fr); }
.abe-grid-col-3 { grid-template-columns: repeat(3, 1fr); }
.abe-grid-col-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) {
    .abe-grid-col-3 { grid-template-columns: repeat(2, 1fr); }
    .abe-grid-col-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .abe-grid-col-2,
    .abe-grid-col-3,
    .abe-grid-col-4 { grid-template-columns: 1fr; }
}

/* -- Kártya alap ----------------------------------------------------------- */
.abe-grid-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.22s ease, transform 0.20s ease, border-color 0.18s ease;
    will-change: transform, box-shadow;
}
.abe-grid-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px);
    border-color: #d0dcea;
}

/* -- Kiemelt kártya -------------------------------------------------------- */
.abe-grid-card--kiemelt {
    border-color: #f6c90e;
    box-shadow: 0 0 0 1.5px rgba(246, 201, 14, 0.4),
                0 4px 16px rgba(246, 201, 14, 0.15);
    background: linear-gradient(180deg, #fffde7 0%, #fff 64px);
}
.abe-grid-card--kiemelt:hover {
    box-shadow: 0 0 0 2px rgba(246, 201, 14, 0.55),
                0 14px 36px rgba(246, 201, 14, 0.22);
    transform: translateY(-5px);
}

/* -- Lemondott kártya ------------------------------------------------------ */
.abe-grid-card--cancelled {
    opacity: 0.70;
    filter: grayscale(35%);
}
.abe-grid-card--cancelled:hover {
    opacity: 0.84;
    filter: grayscale(18%);
}

/* -- Bal oldali szín sáv – elrejtve (v2.7.1): a 2px-es keret viszi a szint */
.abe-grid-color-bar {
    display: none;
}

/* -- Képterület ------------------------------------------------------------ */
.abe-grid-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    background: #111827;
    flex-shrink: 0;
    text-decoration: none;
}
.abe-grid-img-wrap:focus-visible {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Elmosott háttér réteg */
.abe-grid-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(16px) brightness(0.38) saturate(1.2);
    transform: scale(1.08);
    transition: filter 0.3s ease;
}
.abe-grid-card:hover .abe-grid-img-bg {
    filter: blur(14px) brightness(0.45) saturate(1.3);
}

/* Előtér kép (contain – nem levágott) */
.abe-grid-img-fg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.35s ease;
}
.abe-grid-card:hover .abe-grid-img-fg {
    transform: scale(1.04);
}

/* Kép nélküli placeholder */
.abe-grid-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 40px;
    opacity: 0.4;
}

/* Képen: csillag + státusz badge */
.abe-grid-star {
    position: absolute;
    top: 9px; right: 11px;
    font-size: 22px;
    line-height: 1;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
    z-index: 4;
    pointer-events: none;
}

.abe-grid-img-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 10.5px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    z-index: 4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* -- Kártya törzs ---------------------------------------------------------- */
.abe-grid-body {
    padding: 14px 18px 16px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 7px;
}

/* -- Badge-ek / tag-ek ----------------------------------------------------- */
.abe-grid-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 22px;
}

/* -- Dátum sor ------------------------------------------------------------- */
.abe-grid-datum {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--kat-szin, #0073aa);
    letter-spacing: 0.1px;
}
.abe-grid-datum i {
    font-size: 11px;
    opacity: 0.85;
    flex-shrink: 0;
}

/* -- Cím ------------------------------------------------------------------- */
.abe-grid-title {
    font-size: 15.5px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.1px;
}
.abe-grid-title a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.18s ease;
}
.abe-grid-title a:hover {
    color: var(--kat-szin, #0073aa);
}

/* -- Meta sor (helyszín, ár) ----------------------------------------------- */
.abe-grid-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
}
.abe-grid-meta-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12.5px;
    color: #4a5568;
    line-height: 1.4;
}
.abe-grid-meta-item i {
    width: 13px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #0073aa;
    font-size: 11px;
}
.abe-grid-meta-item .fa-map-marker-alt { color: #e53e3e; }

a.abe-grid-helyszin-link {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.15s;
}
a.abe-grid-helyszin-link:hover { color: #0073aa; text-decoration: underline; }

/* -- Akció gombok ---------------------------------------------------------- */
.abe-grid-actions {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Részletek gomb grid kártyán */
.abe-grid-actions .abe-btn-reszlet {
    background: color-mix(in srgb, var(--kat-szin, #0073aa) 10%, #fff);
    color: #334155 !important;
    border: 1.5px solid #334155;
    flex: 1;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    border-radius: 8px;
    padding: 9px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: filter 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
}
.abe-grid-actions .abe-btn-reszlet:hover {
    background: #334155;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transform: translateY(-1px);
    filter: none;
}
.abe-grid-actions .abe-btn-reszlet i {
    transition: transform 0.2s ease;
}
.abe-grid-actions .abe-btn-reszlet:hover i {
    transform: translateX(3px);
}
.abe-grid-actions .abe-btn-reszlet::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.10);
    opacity: 0;
    transition: opacity 0.15s;
}
.abe-grid-actions .abe-btn-reszlet:hover::after { opacity: 1; }

/* Modal: térkép blokk --------------------------------------------------------- */
.abe-modal-map {
    margin: 16px 0;
}

/* ═══ LEIRAS-TARTALOM v1 ═══ TÜKÖR-BLOKK!
   Párja: aktivbalaton-portal/public/esemenyek.html → .leiras-tartalom
   (a szerkesztő "Előnézet" nézete). Ha itt változtatsz, OTT IS vezesd át,
   és lépesd a v-számot MINDKÉT helyen!
   Single oldal + modal egységes leírás-formázása (Quill-ből érkező HTML). */
.abe-single-leiras, .abe-modal-leiras {
    font-size: 15px;
    line-height: 1.75;
    color: #2d3748;
}
.abe-single-leiras h2, .abe-modal-leiras h2 {
    font-size: 21px;
    font-weight: 700;
    color: #1B2D3F !important;   /* téma/Elementor heading-szín felülírása */
    margin: 26px 0 10px;
    line-height: 1.3;
}
.abe-single-leiras h3, .abe-modal-leiras h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1B2D3F !important;
    margin: 22px 0 8px;
    padding-left: 10px;
    border-left: 3px solid #E8943A;
    line-height: 1.35;
}
.abe-single-leiras h2:first-child, .abe-modal-leiras h2:first-child,
.abe-single-leiras h3:first-child, .abe-modal-leiras h3:first-child { margin-top: 0; }
.abe-single-leiras p,  .abe-modal-leiras p  { margin: 0 0 12px; }
.abe-single-leiras p:last-child, .abe-modal-leiras p:last-child { margin-bottom: 0; }
.abe-single-leiras ul, .abe-modal-leiras ul,
.abe-single-leiras ol, .abe-modal-leiras ol { margin: 0 0 14px; padding-left: 22px; }
.abe-single-leiras li, .abe-modal-leiras li { margin-bottom: 5px; line-height: 1.6; }
.abe-single-leiras ul li::marker, .abe-modal-leiras ul li::marker { color: #E8943A; }
.abe-single-leiras strong, .abe-modal-leiras strong { font-weight: 700; color: #1B2D3F; }
.abe-single-leiras em, .abe-modal-leiras em { font-style: italic; }
.abe-single-leiras a,  .abe-modal-leiras a  { color: #0073aa; text-decoration: underline; }
.abe-single-leiras a:hover, .abe-modal-leiras a:hover { color: #E8943A; }
.abe-single-leiras blockquote, .abe-modal-leiras blockquote {
    margin: 14px 0;
    padding: 10px 16px;
    border-left: 3px solid #1B2D3F;
    background: #f7f9fb;
    border-radius: 0 8px 8px 0;
    color: #4a5568;
}
.abe-single-leiras hr, .abe-modal-leiras hr {
    border: none;
    border-top: 1px solid #e8edf2;
    margin: 18px 0;
}
.abe-single-leiras img, .abe-modal-leiras img {
    max-width: 100%; height: auto; border-radius: 8px; margin: 8px 0;
}
/* Quill igazítás-osztályok (a portal szerkesztőből class-ként érkeznek) */
.abe-single-leiras .ql-align-center,  .abe-modal-leiras .ql-align-center  { text-align: center; }
.abe-single-leiras .ql-align-right,   .abe-modal-leiras .ql-align-right   { text-align: right; }
.abe-single-leiras .ql-align-justify, .abe-modal-leiras .ql-align-justify { text-align: justify; }
/* Modal: kompaktabb címsorok */
.abe-modal-leiras h2 { font-size: 19px; margin-top: 20px; }
.abe-modal-leiras h3 { font-size: 16px; margin-top: 18px; }
/* ═══ /LEIRAS-TARTALOM v1 ═══ */

/* Részletek gomb lista sorban – kategória szín (azonos logika mint grid-nél) */
.abe-list-actions .abe-btn-reszlet {
    background: color-mix(in srgb, var(--kat-szin, #0073aa) 10%, #fff);
    color: #334155 !important;
    border: 1.5px solid #334155;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
    box-shadow: none;
}
.abe-list-actions .abe-btn-reszlet:hover {
    background: #334155;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
    filter: none;
}

/* Jegy gomb grid kártyán */
.abe-grid-actions .abe-btn-jegy {
    padding: 9px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* -- Belépő-animáció a kártyákra ------------------------------------------ */
@keyframes abeGridCardIn {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.abe-grid-view .abe-grid-card {
    animation: abeGridCardIn 0.28s ease both;
}
.abe-grid-view .abe-grid-card:nth-child(1) { animation-delay: 0.03s; }
.abe-grid-view .abe-grid-card:nth-child(2) { animation-delay: 0.08s; }
.abe-grid-view .abe-grid-card:nth-child(3) { animation-delay: 0.13s; }
.abe-grid-view .abe-grid-card:nth-child(4) { animation-delay: 0.17s; }
.abe-grid-view .abe-grid-card:nth-child(5) { animation-delay: 0.20s; }
.abe-grid-view .abe-grid-card:nth-child(n+6) { animation-delay: 0.23s; }

/* -- Reszponzív mobilon ---------------------------------------------------- */
@media (max-width: 480px) {
    .abe-grid-body { padding: 12px 14px 14px 18px; }
    .abe-grid-title { font-size: 14.5px; }
    .abe-grid-datum { font-size: 12px; }
}

/* =======================================================================
   KÁRTYA SZEGÉLY KATEGÓRIA SZÍN (v2.6.6)
   color-mix() segítségével a border 30%-ban veszi fel a kat. színt,
   így szolid, de észrevehető. Hover-en 55% az arány.
   Kiemelt kártyáknál az arany szegély marad prioritásban.
   ======================================================================= */

.abe-list-row:not(.abe-list-row--kiemelt) {
    border: 2px solid color-mix(in srgb, var(--kat-szin, #0073aa) 53%, #e2e8f0);
    background: color-mix(in srgb, var(--kat-szin, #0073aa) 10%, #fff);
}
.abe-list-row:not(.abe-list-row--kiemelt):hover {
    border-color: color-mix(in srgb, var(--kat-szin, #0073aa) 77%, #e2e8f0);
}

.abe-grid-card:not(.abe-grid-card--kiemelt) {
    border: 2px solid color-mix(in srgb, var(--kat-szin, #0073aa) 53%, #e2e8f0);
    background: color-mix(in srgb, var(--kat-szin, #0073aa) 10%, #fff);
}
.abe-grid-card:not(.abe-grid-card--kiemelt):hover {
    border-color: color-mix(in srgb, var(--kat-szin, #0073aa) 77%, #d0dcea);
}

/* -- Mobilos optimalizáció (v2.6.8) ---------------------------------------- */
@media (max-width: 480px) {
    /* Lista sor: gombsor alul – teljes szélesség, szép elválasztóval */
    .abe-list-actions {
        padding: 10px 14px;
        border-left: none;
        border-top: 2px solid color-mix(in srgb, var(--kat-szin, #0073aa) 30%, #f0f4f8);
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    /* Gomb: mobilon kicsit nagyobb tapintási terület */
    .abe-list-actions .abe-btn-reszlet {
        padding: 9px 20px;
        font-size: 13px;
        flex: 1;
        justify-content: center;
    }
    /* Színes keret: mobilon is 2px marad */
    .abe-list-row:not(.abe-list-row--kiemelt) {
        border-width: 2px;
    }
    /* Dátumdoboz: kicsit kompaktabb mobilon */
    .abe-list-date-box {
        min-width: 60px;
        max-width: 60px;
        padding: 8px 4px;
    }
    .abe-list-date-day { font-size: 22px; }
    .abe-list-date-month { font-size: 10px; }
    /* Kép: mobilon rejődik, de ha még megjelenne */
    .abe-list-thumb { display: none; }
    /* List body: kompaktabb padding */
    .abe-list-body { padding: 10px 12px 6px; }
    .abe-list-title { font-size: 15px; }
    /* Rácsos kártya kép: kicsit alacsonyabb mobilon */
    .abe-grid-img-wrap { height: 150px !important; }
}

/* =======================================================================
   SINGLE OLDAL v3.0 HERO MÉRET OVERRIDE
   ======================================================================= */
.abe-single-hero { height: 340px; }
@media (max-width: 768px) { .abe-single-hero { height: 260px; } }
@media (max-width: 480px) { .abe-single-hero { height: 210px; } }

/* =======================================================================
   v2.13.0 – HÓNAPLÉPTETŐ FEJLÉC + MÁRKA-SZÍNEK + LEVEGŐSEBB LISTA
   Márka: navy #1B2D3F, narancs #E8943A
   ======================================================================= */

:root {
    --abe-navy:    #1B2D3F;
    --abe-narancs: #E8943A;
}

/* ── Hónapléptető fejléc (EventON-stílus) ─────────────────────────────────── */
.abe-honap-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 0 20px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #1B2D3F 0%, #25394d 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(27,45,63,0.18);
}
.abe-honap-cimke {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    min-width: 200px;
    text-align: center;
    line-height: 1.2;
}
a.abe-honap-nyil {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    flex-shrink: 0;
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
a.abe-honap-nyil:hover {
    background: var(--abe-narancs);
    color: #fff;
    transform: scale(1.08);
}
a.abe-honap-nyil:active { transform: scale(0.95); }

/* Sticky opció: add a .abe-honap-nav--sticky osztályt ha kell (asztali nézet) */
@media (min-width: 769px) {
    .abe-honap-nav--sticky { position: sticky; top: 12px; z-index: 30; }
}
@media (max-width: 520px) {
    .abe-honap-nav { gap: 8px; padding: 10px 12px; }
    .abe-honap-cimke { font-size: 16px; min-width: 0; flex: 1; }
    a.abe-honap-nyil { width: 36px; height: 36px; font-size: 14px; }
}

/* ── Lista: márka-színek (régi #0073aa kék lecserélése) ───────────────────── */
.abe-list-meta-item i { color: var(--abe-narancs); }
.abe-list-meta-item .fa-map-marker-alt { color: #e53e3e; }   /* helyszín marad piros */
a.abe-list-helyszin-link:hover { color: var(--abe-narancs); }
.abe-list-title a { color: var(--abe-navy); }
.abe-list-title a:hover { color: var(--kat-szin, var(--abe-narancs)); }

/* Dátumdoboz fallback (ha az eseménynek nincs kategória-színe → navy) */
.abe-list-date-box { background: var(--abe-navy); }

/* Load More + "minden betöltve" márkára */
a.abe-load-more-btn {
    background: var(--abe-navy);
    border-color: var(--abe-navy);
    box-shadow: 0 4px 14px rgba(27,45,63,0.25);
}
a.abe-load-more-btn:hover {
    background: var(--abe-narancs);
    border-color: var(--abe-narancs);
    box-shadow: 0 6px 20px rgba(232,148,58,0.35);
}

/* ── Levegősebb lista + lágyabb árnyék ───────────────────────────────────── */
.abe-list-view { gap: 12px; }
.abe-list-row { border-radius: 12px; min-height: 96px; }
.abe-list-row:hover { box-shadow: 0 10px 30px rgba(27,45,63,0.12); }
.abe-list-body { padding: 14px 18px; gap: 6px; }
.abe-list-title { font-size: 16.5px; line-height: 1.3; }
.abe-list-meta { gap: 5px 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   GLOBÁLIS KERESÉSI MÓD (AB – Kereső widget / oldali keresőmező)
   Hónaptól független találati lista, hónap-csoport fejlécekkel.
   ══════════════════════════════════════════════════════════════════════════ */

/* Keresési banner: találatok címe + "Keresés törlése" gomb */
.abe-kereses-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 20px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #1B2D3F 0%, #25394d 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(27,45,63,0.18);
    color: #fff;
}
.abe-kereses-banner-szoveg {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}
.abe-kereses-banner-szoveg i { color: var(--abe-narancs); margin-right: 4px; }
.abe-kereses-banner-szo { font-weight: 800; }
.abe-kereses-banner-db { opacity: 0.8; font-weight: 600; margin-left: 4px; }
a.abe-kereses-torles {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}
a.abe-kereses-torles:hover { background: var(--abe-narancs); transform: translateY(-1px); }
a.abe-kereses-torles:active { transform: translateY(0); }

/* Hónap-csoport fejléc a találati listában. Rács nézetben a teljes
   sorszélességet kifeszíti (grid-column), lista nézetben sima block. */
.abe-kereses-honap-fejlec {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 2px;
    padding: 6px 2px 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--abe-navy);
    text-transform: capitalize;
    border-bottom: 2px solid rgba(27,45,63,0.10);
}
.abe-kereses-honap-fejlec i { color: var(--abe-narancs); font-size: 16px; }
.abe-kereses-honap-fejlec:first-child { margin-top: 0; }
.abe-grid-view .abe-kereses-honap-fejlec { grid-column: 1 / -1; }

@media (max-width: 520px) {
    .abe-kereses-banner { padding: 12px 14px; }
    .abe-kereses-banner-szoveg { font-size: 15px; }
    .abe-kereses-honap-fejlec { font-size: 16px; }
}

/* ============================================================
   KEDVELÉS (szív) – önálló stílus, az ab-widgets.css-től függetlenül
   A markup: .ab-card-save[data-event-id]; a logikát az univerzális
   ab-favorites.js adja (localStorage, .ab-saved / .ab-pop osztályok).
   Itt azért duplikáljuk a stílust, hogy tiszta shortcode-oldalon is
   (ahol az Elementor ab-widgets.css nem feltétlen tölt) helyes legyen.
   ============================================================ */
.ab-card-save {
    font-size: 20px;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #CBD5E0;
    color: #94a3b8;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.ab-card-save:hover { background: #FFF1E2; color: #E8943A; border-color: #E8943A; }
.ab-card-save.ab-saved { background: #FFF1E2; color: #E8943A; border-color: #E8943A; }

/* Mentés szív – pop a kattintáskor (a JS adja az .ab-pop osztályt) */
@keyframes abPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.32); }
    70%  { transform: scale(0.92); }
    100% { transform: scale(1); }
}
.ab-card-save.ab-pop { animation: abPop 0.4s ease; }

@media (prefers-reduced-motion: reduce) {
    .ab-card-save.ab-pop { animation: none; }
}

/* ============================================================
   AB-RÁCS – SÖTÉT "filmplakát" téma (stilus="sotet")
   A főoldali widget sötét kártya-kinézetét reprodukálja a shortcode-on.
   (A .ab-event-card alapstílus az ab-widgets.css-ből jön; itt csak a
   sötét törzs + világos szövegszínek felülírása történik, magasabb
   specificitással, hogy az alapot biztosan felülírja.)
   ============================================================ */
.ab-racs-sotet .ab-event-card {
    background: #1B2D3F; /* márka-navy */
}
.ab-racs-sotet .ab-card-title a {
    color: #ffffff;
}
.ab-racs-sotet .ab-card-title a:hover {
    color: #E8943A; /* narancs akcentus */
}
.ab-racs-sotet .ab-card-time,
.ab-racs-sotet .ab-card-loc {
    color: #9DB1C6; /* halvány kék-szürke */
}
.ab-racs-sotet .ab-card-excerpt {
    color: #C5D2E0;
}
.ab-racs-sotet .ab-card-footer {
    border-top-color: rgba(255, 255, 255, 0.10);
}
/* A szív halvány világos kerete sötét háttéren is látszódjon */
.ab-racs-sotet .ab-card-save {
    border-color: rgba(255, 255, 255, 0.30);
    color: #C5D2E0;
}
.ab-racs-sotet .ab-card-save:hover,
.ab-racs-sotet .ab-card-save.ab-saved {
    background: #FFF1E2;
    color: #E8943A;
    border-color: #E8943A;
}


/* ── Film "+N időpont · M mozi" jelzés a kártyán (moziműsor) ─────────────── */
.abe-card-film-tobb,
.ab-card-film-tobb {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #E8943A;
}
.abe-card-film-tobb span { color: inherit; }

/* ══════════════════════════════════════════════════════════════════════
   FILM VETÍTÉSEK BLOKK – nap-szűrő sáv + összecsukható mozi-szekciók
   Megosztott: teljes esemény-oldal (single) ÉS esemény-modal.
   Markup: templates/film-vetitesek.php · JS (delegált): frontend.js
   ══════════════════════════════════════════════════════════════════════ */
.abe-vetitesek-blokk { margin: 22px 0; border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; }
.abe-vetitesek-title { display: flex; align-items: center; gap: 8px; padding: 14px 18px; font-weight: 700; font-size: 16px; background: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.abe-vetitesek-title i { color: #f97316; }

/* A nap-chip stílus közös a program-napi blokk .abe-pn-nap gombjaival
   (külön osztály, mert a JS-handlerük különbözik – ld. frontend.js) */
.abe-vt-napsav { display: flex; gap: 6px; padding: 12px 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; border-bottom: 1px solid #f1f5f9; }
.abe-vt-nap, .abe-pn-nap { flex: 0 0 auto; background: #f1f5f9; border: 1px solid #e5e7eb; border-radius: 999px; padding: 6px 12px; font-size: 13px; line-height: 1; cursor: pointer; white-space: nowrap; color: #0f172a; }
.abe-vt-nap:hover, .abe-pn-nap:hover { background: #e2e8f0; }
.abe-vt-nap.is-active, .abe-pn-nap.is-active { background: #f97316; border-color: #f97316; color: #fff; }

.abe-mozi-csoport { border-bottom: 1px solid #f1f5f9; }
.abe-mozi-csoport:last-child { border-bottom: none; }
.abe-mozi-fej { display: flex; align-items: center; gap: 8px; padding: 12px 18px; cursor: pointer; user-select: none; }
.abe-mozi-fej:hover { background: #f8fafc; }
.abe-mozi-fejnev { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; min-width: 0; }
.abe-mozi-nev { font-weight: 700; font-size: 15px; color: #0f172a; text-decoration: none; }
.abe-mozi-nev:hover { color: #f97316; text-decoration: underline; }
.abe-mozi-varos { font-size: 13px; color: #64748b; }
.abe-mozi-osszeg { margin-left: auto; font-size: 13px; color: #64748b; white-space: nowrap; }
.abe-mozi-chevron { flex: 0 0 auto; color: #94a3b8; font-size: 13px; transition: transform .15s ease; }
.abe-mozi-csoport.is-open .abe-mozi-chevron { transform: rotate(180deg); }

.abe-vetites-sorok { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 14px; }
.abe-vetites-sorok[hidden] { display: none; }   /* a display:flex felülírná a [hidden]-t – ez a fix */
.abe-vetites-chip { display: inline-flex; align-items: center; gap: 8px; background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 10px; padding: 8px 12px; font-size: 13px; }
.abe-vetites-ido { font-weight: 700; color: #0f172a; white-space: nowrap; }
.abe-vetites-ar { color: #64748b; white-space: nowrap; }
.abe-vetites-jegy { display: inline-flex; align-items: center; gap: 5px; background: #f97316; color: #fff !important; padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.abe-vetites-jegy:hover { background: #ea580c; }
/* „Mozi adatlapja" link a kinyitott panelben (külön sor) – nem a fejlécben, hogy
   a fejlécre koppintás csak nyisson/csukjon, ne navigáljon el. */
.abe-mozi-oldal-link { flex: 1 1 100%; display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 12.5px; color: #64748b; text-decoration: none; }
.abe-mozi-oldal-link:hover { color: #f97316; text-decoration: underline; }

/* ── Moziműsor gyűjtőoldal ([abe_mozimusor]) ── */
.abe-mozimusor { margin: 0 auto; }
.abe-mozimusor-cim { font-size: 26px; font-weight: 800; margin: 0 0 6px; line-height: 1.2; }
.abe-mozimusor-bev { color: #475569; margin: 0 0 18px; font-size: 15px; max-width: 70ch; line-height: 1.55; }
.abe-mozimusor-ures { color: #64748b; padding: 28px 0; font-size: 15px; }
.abe-mozimusor-mozik { margin-top: 28px; }
.abe-mozimusor-mozik h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.abe-mozimusor-mozik ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.abe-mozimusor-mozik li a { display: inline-flex; align-items: center; gap: 7px; background: #f1f5f9; border: 1px solid #e5e7eb; border-radius: 999px; padding: 7px 14px; font-size: 13px; color: #0f172a; text-decoration: none; }
.abe-mozimusor-mozik li a:hover { background: #e2e8f0; color: #f97316; }
.abe-mozimusor-mozik li a i { color: #f97316; font-size: 12px; }
.abe-mozimusor-mozik .varos { color: #64748b; font-size: 12px; }

/* JS-vezérelt rejtés (nap-szűrő) – !important, hogy a display:inline-flex/blokk fölé írjon */
.abe-fv-hide { display: none !important; }

/* ── Mobil (≤600px) ── a fejléc tördelhető, a chipek teljes szélű sorok ── */
@media (max-width: 600px) {
    .abe-vetitesek-title { padding: 12px 14px; font-size: 15px; }
    .abe-vt-napsav { padding: 10px 14px; }
    .abe-mozi-fej { flex-wrap: wrap; padding: 12px 14px; gap: 4px 8px; }
    .abe-mozi-fejnev { flex: 1 1 100%; }
    .abe-mozi-osszeg { margin-left: 0; flex: 1 1 auto; white-space: normal; }
    .abe-mozi-chevron { margin-left: auto; }
    .abe-vetites-sorok { padding: 0 14px 12px; gap: 6px; }
    .abe-vetites-chip { flex: 1 1 100%; justify-content: space-between; }
}

/* ══════════════════════════════════════════════════════════════════════
   PROGRAM – NAPI BONTÁS BLOKK (nem-film sorozatok, pl. fesztiválok)
   Napokra csoportosított programlista + nap-szűrő chip-sor (.abe-pn-nap,
   stílusa fent a .abe-vt-nap-pal közös). Megosztott: single ÉS modal.
   Markup: templates/program-napi.php · JS (delegált): frontend.js
   ══════════════════════════════════════════════════════════════════════ */
.abe-prognapi-blokk { margin: 22px 0; border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; }
.abe-prognapi-title { display: flex; align-items: center; gap: 8px; padding: 14px 18px; font-weight: 700; font-size: 16px; background: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.abe-prognapi-title i { color: #f97316; }

.abe-prognapi-csoport { border-bottom: 1px solid #f1f5f9; }
.abe-prognapi-csoport:last-child { border-bottom: none; }
.abe-prognapi-csoport.is-past { opacity: .55; }
.abe-prognapi-fej { display: flex; align-items: baseline; gap: 10px; padding: 12px 18px 4px; }
.abe-prognapi-datum { font-weight: 700; font-size: 15px; color: #0f172a; }
.abe-prognapi-lezajlott { flex: 0 0 auto; font-size: 11.5px; color: #94a3b8; background: #f1f5f9; border-radius: 999px; padding: 2px 8px; }
.abe-prognapi-db { margin-left: auto; font-size: 13px; color: #64748b; white-space: nowrap; }

.abe-prognapi-sorok { padding: 2px 18px 12px; }
.abe-prognapi-sor { display: grid; grid-template-columns: 96px 1fr auto; gap: 2px 12px; align-items: baseline; padding: 7px 0; border-bottom: 1px dashed #f1f5f9; }
.abe-prognapi-sor:last-child { border-bottom: none; }
.abe-prognapi-ido { font-weight: 700; font-size: 14px; color: #0f172a; white-space: nowrap; }
.abe-prognapi-fo { min-width: 0; }
.abe-prognapi-eloado { font-size: 15px; color: #1e293b; }
a.abe-prognapi-eloado { text-decoration: none; }
a.abe-prognapi-eloado:hover { color: #f97316; text-decoration: underline; }
.abe-prognapi-megj { display: block; font-size: 13px; color: #64748b; margin-top: 1px; }
.abe-prognapi-jobb { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.abe-prognapi-ar { font-weight: 600; font-size: 13px; color: #0f172a; white-space: nowrap; }
.abe-prognapi-jegy { display: inline-flex; align-items: center; gap: 5px; background: #f97316; color: #fff !important; padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.abe-prognapi-jegy:hover { background: #ea580c; }

@media (max-width: 600px) {
    .abe-prognapi-title { padding: 12px 14px; font-size: 15px; }
    .abe-prognapi-fej { padding: 12px 14px 2px; flex-wrap: wrap; gap: 6px 8px; }
    .abe-prognapi-sorok { padding: 2px 14px 10px; }
    .abe-prognapi-sor { grid-template-columns: 96px 1fr; }
    .abe-prognapi-jobb { grid-column: 1 / -1; justify-content: flex-start; padding-left: 0; }
}
