:root { --brand-orange: #f45d22; --brand-violet: #4b1d3f; --brand-red: #ef4444; }
    .title-accent { border-left: 15px solid var(--brand-orange); padding-left: 1.5rem; line-height: 1; display: flex; align-items: center; gap: 1.5rem; }
    
    /* SEO optimizuotas blokas */
    .info-block-styled {
        background: #fff; border: 2px solid var(--brand-orange); border-radius: 1.2rem;
        padding: 1rem 1.5rem; margin-bottom: 0.75rem; 
        display: flex; align-items: center; gap: 1rem;
        box-shadow: 0 4px 12px rgba(244, 93, 34, 0.08);
    }
    .info-block-styled h2, .info-block-styled p { color: var(--brand-violet); font-size: 0.85rem; font-weight: 600; margin: 0; line-height: 1.4; display: inline; }

    /* ŽENKLIUKAS ANT RĖMELIO */
    .time-countdown-badge {
        position: absolute; top: -15px; left: 25px; 
        background: #b83204; color: white; padding: 0.5rem 1.2rem; 
        border-radius: 12px; font-weight: 900; font-style: italic; font-size: 0.75rem; 
        text-transform: uppercase; z-index: 20; box-shadow: 0 8px 15px rgba(184, 50, 4, 0.4);
        border: 2px solid white; display: flex; align-items: center; gap: 0.5rem;
    }
    .badge-live { background: #b91c1c !important; box-shadow: 0 8px 15px rgba(185, 28, 28, 0.4) !important; animation: pulse-red 2s infinite; }
    @keyframes pulse-red { 0% { opacity: 1; } 50% { opacity: 0.8; } 100% { opacity: 1; } }

    /* LIPDUKAI KORTELIŲ METADUOMENIMS */
    .badge-date-style {
        display: inline-flex; align-items: center; gap: 6px; background: var(--brand-violet); color: white;
        padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 950;
        text-transform: uppercase; border: 1.5px solid white; box-shadow: 0 4px 8px rgba(75, 29, 63, 0.15);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .badge-date-style:hover {
        background-color: var(--brand-orange);
    }

    .badge-time-style-no-hover {
        display: inline-flex; align-items: center; gap: 6px; background: var(--brand-violet); color: white;
        padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 950;
        text-transform: uppercase; border: 1.5px solid white; box-shadow: 0 4px 8px rgba(75, 29, 63, 0.15);
        cursor: default;
    }

    .badge-city-style-custom {
        display: inline-flex; align-items: center; gap: 6px; background: #b83204; color: white;
        padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 950;
        text-transform: uppercase; border: 1.5px solid white; box-shadow: 0 4px 8px rgba(184, 50, 4, 0.15);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .badge-city-style-custom:hover {
        background-color: var(--brand-violet);
    }

    .card-vip-pulsing {
        display: inline-flex; align-items: center; gap: 6px; background: var(--brand-violet); color: #ffd700;
        padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 950;
        text-transform: uppercase; border: 1.5px solid #ffd700; box-shadow: 0 4px 12px rgba(75, 29, 63, 0.3);
        animation: card-vip-glow 2s infinite;
    }
    @keyframes card-vip-glow {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* VIP LYBDUKAS ANT DRAUGŲ KORTELĖS VIRŠAUS */
    .vip-top-badge {
        position: absolute; top: -15px; left: 25px; 
        background: var(--brand-violet); color: #ffffff; padding: 0.5rem 1.2rem; 
        border-radius: 12px; font-weight: 900; font-style: italic; font-size: 0.75rem; 
        text-transform: uppercase; z-index: 20; box-shadow: 0 8px 15px rgba(75, 29, 63, 0.4);
        border: 2px solid #ffffff; display: flex; align-items: center; gap: 0.5rem;
        animation: card-vip-glow 2s infinite;
    }

    /* BRAUKIMO KELRODIS LIPDUKAS (ANIMACIJA Į ŠONUS KAIP INDEX.PHP) */
    @keyframes pulse-indicator-slide {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(12px); }
    }

    .swipe-indicator-badge {
        display: none; 
        align-items: center;
        gap: 8px;
        background: var(--brand-violet);
        color: #ffffff;
        padding: 10px 24px !important;
        border-radius: 99px;
        font-size: 13px !important;
        font-weight: 950;
        text-transform: uppercase;
        border: 1.5px solid #ffffff;
        box-shadow: 0 4px 10px rgba(75, 29, 63, 0.2);
        animation: pulse-indicator-slide 2s infinite ease-in-out !important; /* Pakeista animacija */
        z-index: 10 !important;
    }

    /* KORTELĖS HIGHLIGHT EFEKTAS */
    .smart-card:hover, .smart-card:active, .smart-card:focus-within {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px -15px rgba(244, 93, 34, 0.35); /* Šešėlių atstatymas */
        z-index: 40 !important; /* Aktyvuota kortelė visada rodoma aukščiausiame sluoksnyje */
    }

    /* STANDARDINIS IR PRISITAIKANTIS RENGINIŲ TINKLELIS */
    .events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2.5rem; }
    
    /* VIP TINKLELIS */
    .vip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2.5rem; }
    
    /* KORTELĖS IR MAKETŲ PRIBLIARTINIMO EFEKTAS */
    .smart-card { height: 100%; transition: 0.4s; border: 4px solid var(--brand-orange); background: white; border-radius: 2.5rem; overflow: visible; display: flex; flex-direction: column; position: relative; text-decoration: none !important; margin-top: 15px; cursor: pointer; }
    .smart-card .img-wrapper { 
        width: 100%; 
        height: 260px; 
        overflow: hidden; 
        border-radius: 2.1rem 2.1rem 0 0; 
        background-color: #111827; 
        display: flex; 
        align-items: center; 
        justify-content: center;
        position: relative;
    }
    .smart-card img.main-img { 
        width: 100%; 
        height: 100%; 
        object-fit: contain; 
        transition: transform 0.5s ease; 
    }
    .smart-card img.bg-blur { 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        filter: blur(16px);
        opacity: 0.45;
    }
    .smart-card:hover img.main-img {
        transform: scale(1.04);
    }
    
    .corner-icon { position: absolute; bottom: 1.2rem; right: 1.2rem; font-size: 2.2rem; opacity: 0.1; transition: 0.4s; color: var(--brand-violet); }
    .smart-card:hover .corner-icon { opacity: 1; color: var(--brand-orange); transform: rotate(-10deg) scale(1.1); }
    
    .border-violet-custom { border: 2px solid var(--brand-violet) !important; }
    
    /* FILTRŲ ĮVESTIES LAUKŲ STILIUS */
    .input-custom { 
        background: white !important; 
        border-radius: 99px; 
        padding: 0.8rem 3rem 0.8rem 3rem; 
        font-weight: 800; 
        font-style: italic; 
        font-size: 0.95rem; 
        width: 100%; 
        color: var(--brand-violet) !important; 
        border: 2px solid var(--brand-violet) !important; 
        transition: 0.3s;
    }
    .input-custom::placeholder {
        color: #6b7280 !important;
        opacity: 1;
    }
    .input-custom:focus {
        outline: none;
        border-color: var(--brand-orange) !important;
        box-shadow: 0 0 10px rgba(244, 93, 34, 0.15);
    }
    
    /* IŠCENTRUOTAS VALYMO MYGTUKAS */
    .clear-btn { 
        position: absolute; 
        right: 12px; 
        top: 0;
        bottom: 0;
        height: 100%;
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important;
        color: var(--brand-red); 
        cursor: pointer; 
        z-index: 20; 
        font-size: 0.9rem; 
        padding: 0 10px; 
        margin: 0;
    }

    /* PUSLAPIAVIMO ANIMACIJA */
    .pg-btn { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 900; font-style: italic; border: 2px solid #f1f5f9; background: white; color: var(--brand-violet); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .pg-btn:hover { transform: scale(1.15); border-color: var(--brand-orange); color: var(--brand-orange); box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
    .pg-btn.active { background: var(--brand-orange); color: white; border-color: var(--brand-orange); transform: scale(1.1); }

    /* Greitojo redagavimo mygtukas adminui */
    .admin-fast-edit {
        position: absolute; top: 15px; right: 15px; z-index: 30;
        background: #ef4444; color: white !important; border: 2px solid white;
        padding: 0.4rem 0.9rem; border-radius: 99px; font-weight: 900;
        font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px;
        box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4); transition: 0.3s;
    }
    .admin-fast-edit:hover { background: #b91c1c; transform: scale(1.05); }

    /* VIP RENGINIŲ PASLĖPIMAS SLIDERIUI */
    .vip-hidden { display: none !important; }

    /* MANDRUS PRENUMERATOS MYGTUKAS SU KONTRASTO KOREKCIJA IR HOVER ANIMACIJA */
    .btn-subscribe {
        background-color: #c2410c; 
        border: 2.5px solid #f45d22;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .btn-subscribe:hover {
        background-color: #f45d22;
        border-color: #ffd700;
        transform: scale(1.04) translateY(-2px);
        box-shadow: 0 10px 22px rgba(244, 93, 34, 0.45);
    }

    /* 3D COVERFLOW SLIDER STILIAI */
    .vip-carousel-container {
        perspective: 1200px;
        overflow: visible;
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    .vip-grid-3d {
        position: relative;
        width: 100%;
        height: 520px; /* Fiksuotas aukštis apsaugo nuo Cumulative Layout Shift (CLS) */
        transform-style: preserve-3d;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .vip-card-3d {
        position: absolute;
        width: 350px; /* Padidintas plotis iš 320px, kad atitiktų originalią tinklelio kortelę */
        height: 500px; /* Taisyklingas aukštis, kad joks tekstas ar elementas nebūtų apkarpyti */
        margin-top: 0 !important;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s;
        opacity: 0;
        transform: scale(0.5) translateZ(-500px);
        z-index: 1;
        pointer-events: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    .vip-card-3d.active {
        opacity: 1;
        transform: scale(1) translateZ(0);
        z-index: 30;
        pointer-events: auto;
        box-shadow: 0 25px 50px -12px rgba(244, 93, 34, 0.25);
    }
    
    /* 3D coverflow transformacijos perkeltos pilnai į CSS, kad išvengteme Forced Reflow JS kode */
    .vip-card-3d.prev {
        opacity: 0.65;
        z-index: 20;
        pointer-events: auto;
        cursor: pointer;
        transform: translateX(-260px) scale(0.8) rotateY(25deg);
    }
    .vip-card-3d.next {
        opacity: 0.65;
        z-index: 20;
        pointer-events: auto;
        cursor: pointer;
        transform: translateX(260px) scale(0.8) rotateY(-25deg);
    }
    
    /* SVEČIŲ GRID/CAROUSEL RESPONSIVE VALDYMAS (Tik mobiliesiems ir planšetėms) */
    @media (max-width: 1024px) {
        .swipe-indicator-badge {
            display: inline-flex !important; /* Rodomas tik telefonuose ir planšetėse */
            padding: 10px 24px !important; /* Padidintas dydis geresniam įskaitomumui */
            font-size: 13px !important;
        }
        .controls-wrapper {
            margin-bottom: 0.75rem !important; /* Sumažintas tarpas nuo filtrų iki lipduko */
        }
        .events-grid { 
            display: flex !important; 
            flex-wrap: nowrap !important; /* Užtikrina, kad kortelės nešoktų į apačią */
            overflow-x: auto !important; 
            scroll-snap-type: x mandatory !important; 
            gap: 1.25rem !important; 
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            padding-top: 25px !important;
            padding-bottom: 15px !important;
            margin-bottom: 0 !important;
            min-height: auto !important; 
            
            /* BLEED EFEKTAS (KAIP INDEX.PHP) */
            margin-left: -1rem !important; 
            margin-right: -1rem !important;
            padding-left: 1rem !important; 
            padding-right: 3rem !important; /* Šis tarpas leidžia matyti sekančios kortelės kraštą */
        } 
        .events-grid::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        /* PAGRINDINĖS KORTELĖS PLOTIS MOBILIEMS (KAIP INDEX.PHP) */
        .events-grid .smart-card {
            flex: 0 0 88% !important;
            min-width: 88% !important;
            max-width: 88% !important;
            scroll-snap-align: center !important;
            scroll-snap-stop: always !important; 
            margin-top: 0 !important;
        }

        /* PLANŠETĖMS (Didesniems ekranams virš 600px): Rodyti po 2 korteles */
        @media (min-width: 601px) {
            .events-grid .smart-card {
                flex: 0 0 calc(50% - 1.5rem) !important;
                min-width: calc(50% - 1.5rem) !important;
                max-width: calc(50% - 1.5rem) !important;
                scroll-snap-align: start !important;
            }
        }

        /* GRIEŽTAS TEKSTO RIBOJIMAS, KAD APAČIA NEŠOKINĖTŲ */
        .events-grid .smart-card h3 {
            display: -webkit-box !important;
            -webkit-line-clamp: 3 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
            height: 4.2rem !important; 
            line-height: 1.4rem !important;
            margin-bottom: 1rem !important;
        }

        .vip-card-3d.prev {
            transform: translateX(-180px) scale(0.75) rotateY(20deg);
        }
        .vip-card-3d.next {
            transform: translateX(180px) scale(0.75) rotateY(-20deg);
        }
        #paginationBlock {
            display: none !important;
        }
        #paginationBlockBottom {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            margin-top: 0.5rem !important;
            margin-bottom: 1rem !important;
            gap: 0.5rem !important;
        }
        .pg-btn {
            width: 44px !important; 
            height: 44px !important;
            font-size: 13px !important;
            flex-shrink: 0 !important;
        }
        .events-slider-wrapper-block {
            margin-bottom: 0.5rem !important; 
        }
    }

    /* MOBILAUS TELEFONO PRITAIKYMAS (< 600px): */
    @media (max-width: 600px) {
        .events-grid .smart-card {
            flex: 0 0 88% !important; 
            min-width: 88% !important;
        }
        
        .vip-card-3d h3 {
            display: -webkit-box !important;
            -webkit-line-clamp: 3 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
            height: 4.2rem !important; 
            line-height: 1.4rem !important;
            margin-bottom: 0.5rem !important;
        }

        .vip-carousel-container {
            perspective: none;
            overflow: visible !important;
            display: block;
            margin-top: 25px !important;
            margin-bottom: 1rem;
        }
        .vip-grid-3d {
            height: auto !important;
            display: block !important;
            transform-style: flat;
        }
        .vip-card-3d {
            position: relative !important;
            width: 100% !important;
            height: auto !important;
            opacity: 0 !important;
            display: none !important;
            transform: none !important;
            box-shadow: none !important;
            pointer-events: none;
        }
        .vip-card-3d.active {
            opacity: 1 !important;
            display: flex !important;
            pointer-events: auto;
        }
        .vip-card-3d.prev, .vip-card-3d.next {
            opacity: 0 !important;
            pointer-events: none !important;
            visibility: hidden !important;
        }
        .vip-top-badge {
            left: 12px !important;
            top: -10px !important;
            padding: 0.4rem 1rem !important;
            font-size: 0.7rem !important;
        }
        .time-countdown-badge {
            left: 12px !important;
            top: -10px !important;
            padding: 0.4rem 1rem !important;
            font-size: 0.7rem !important;
        }
    }

    /* Nuotraukų aukščio proporcijų išlaikymas planšetėse rodant po 2 korteles */
    @media (min-width: 601px) and (max-width: 1024px) {
        .smart-card .img-wrapper {
            height: 200px !important;
        }
    }

    @media (min-width: 1025px) {
        .events-grid {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 3rem 2.5rem !important;
            overflow: visible !important;
        }
        .events-grid .smart-card {
            flex: none !important;
            scroll-snap-align: none !important;
        }
        #paginationBlockBottom {
            display: flex !important; 
        }
    }

    /* IŠMANIŲJŲ KLASIŲ RESONSIVE VALDYMAS PRENUMERATOS BLOKUI IŠ INDEX.PHP */
    @media (max-width: 1024px) {
        .newsletter-subscribe-container {
            flex-direction: column !important;
            text-align: center !important;
        }
        .newsletter-subscribe-text {
            text-align: center !important;
            max-width: 100% !important;
        }
        .newsletter-subscribe-form {
            max-width: 100% !important;
        }
        #newsletterMessage {
            text-align: center !important;
        }
    }

/* ============================================================
   GALUTINIAI RENGINIŲ FILTRŲ, ADMIN MYGTUKŲ IR KORTELIŲ PAKEITIMAI
   ============================================================ */

.controls-wrapper {
    flex-wrap: wrap;
}

.event-filter-results {
    width: 100%;
    flex: 0 0 100%;
    margin: -0.15rem 0 0;
    padding: 0 0.65rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    color: var(--brand-violet);
    font-size: 0.82rem;
    font-weight: 900;
    font-style: italic;
}

.event-filter-results a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #c93d08;
    font-weight: 950;
    text-decoration: none !important;
}

.event-filter-results a:hover {
    color: var(--brand-violet);
}

/* Administratoriaus veiksmai identiški naujienų kortelių principui */
.admin-event-actions {
    position: absolute;
    top: 18px;
    left: -14px;
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    pointer-events: auto;
}

.admin-event-btn {
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 950;
    font-style: italic;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(75, 29, 63, 0.24);
    transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}

.admin-event-btn:hover {
    transform: translateX(5px) scale(1.03);
    filter: brightness(1.08);
    box-shadow: 0 10px 22px rgba(75, 29, 63, 0.34);
}

.admin-event-btn-vip {
    color: #4b1d3f;
    background: #eab308;
}

.admin-event-btn-edit {
    background: #f45d5d;
}

/*
 * Renginių kortelių dydžiai sulyginti su galutiniu naujienų CSS:
 * telefonuose 96 %, planšetėse 45.5 %, tie patys tarpai ir nuotraukų aukščiai.
 */
@media (max-width: 600px) {
    .events-slider-wrapper {
        overflow: visible !important;
    }

    .events-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;

        gap: 0.9rem !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        padding-left: 1rem !important;
        padding-right: 1.8rem !important;
        padding-top: 25px !important;
        padding-bottom: 15px !important;
        scroll-padding-left: 1rem !important;
        scroll-padding-right: 1rem !important;
    }

    .events-grid::-webkit-scrollbar {
        display: none !important;
    }

    .events-grid .smart-card {
        flex: 0 0 96% !important;
        min-width: 96% !important;
        max-width: 96% !important;
        width: 96% !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
    }

    .events-grid .smart-card:first-child {
        scroll-snap-align: start !important;
    }

    .events-grid .smart-card:last-child {
        scroll-snap-align: end !important;
    }

    .events-grid .smart-card .img-wrapper {
        height: 330px !important;
    }

    #paginationBlockBottom {
        margin-top: 0.35rem !important;
        margin-bottom: 0.75rem !important;
    }

    .events-slider-wrapper-block {
        margin-bottom: 0 !important;
    }

    .admin-event-actions {
        top: 14px;
        left: -8px;
        gap: 6px;
    }

    .admin-event-btn {
        min-height: 34px;
        padding: 0.48rem 0.7rem;
        font-size: 0.64rem;
    }

    .event-filter-results {
        padding: 0 0.35rem;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .events-slider-wrapper {
        overflow: visible !important;
    }

    .events-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;

        gap: 1rem !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        padding-left: 1rem !important;
        padding-right: 3.5rem !important;
        padding-top: 25px !important;
        padding-bottom: 15px !important;
        scroll-padding-left: 1rem !important;
        scroll-padding-right: 1rem !important;
    }

    .events-grid::-webkit-scrollbar {
        display: none !important;
    }

    .events-grid .smart-card {
        flex: 0 0 45.5% !important;
        min-width: 45.5% !important;
        max-width: 45.5% !important;
        width: 45.5% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
    }

    .events-grid .smart-card:last-child {
        scroll-snap-align: end !important;
    }

    .events-grid .smart-card .img-wrapper {
        height: 255px !important;
    }

    #paginationBlockBottom {
        margin-top: 0.55rem !important;
        margin-bottom: 0.9rem !important;
    }

    .events-slider-wrapper-block {
        margin-bottom: 0 !important;
    }
}


/* ============================================================
   RENGINIŲ ANTRAŠTĖS BŪSENOS JUNGIKLIS – TIK DESKTOP
   Telefonų ir planšečių išdėstymas nekeičiamas.
   ============================================================ */

.events-heading-row {
    display: block;
}

.events-status-desktop {
    display: none !important;
}

.events-status-mobile-tablet {
    display: inline-flex;
}

@media (min-width: 1025px) {
    .events-heading-row {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .events-heading-row .title-accent {
        min-width: 0;
        flex: 1 1 auto;
    }

    .events-status-desktop {
        display: inline-flex !important;
        flex: 0 0 auto;
        min-width: 338px;
        justify-content: stretch;
    }

    .events-status-desktop > a {
        flex: 1 1 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        white-space: nowrap;
    }

    /* Filtrų juostoje desktop versijoje jungiklis nebekartojamas. */
    .events-status-mobile-tablet {
        display: none !important;
    }
}