
/* ── Thema-fonts erven ───────────────────────────────────────────────────────
 * Alle font-family, font-size en font-weight worden bepaald door het actieve
 * thema (bijv. Neve). De plugin stelt alleen layout, kleuren en spacing in.
 * ─────────────────────────────────────────────────────────────────────────── */
.ko-eve-wrapper h1,
.ko-eve-wrapper h2,
.ko-eve-wrapper h3,
.ko-eve-wrapper h4,
.ko-eve-wrapper h5,
.ko-eve-wrapper p,
.ko-eve-wrapper span,
.ko-eve-single h1,
.ko-eve-single h2,
.ko-eve-single h3,
.ko-eve-single h4,
.ko-eve-single h5,
.ko-eve-single p {
    font-family: inherit;
}

/* ──────────────────────────────────────────────────────────────────
   KO Evenementen – Frontend v1.0.0
   ────────────────────────────────────────────────────────────────── */

/* ── Overzicht grid ─────────────────────────────────────────────── */
.ko-eve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Card ────────────────────────────────────────────────────────── */
.ko-eve-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
}
.ko-eve-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
    transform: translateY(-2px);
}
.ko-eve-card__image-link { display: block; overflow: hidden; }
.ko-eve-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.ko-eve-card__image-link:hover img { transform: scale(1.03); }

.ko-eve-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ko-eve-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: #666;
    margin-bottom: 10px;
}
.ko-eve-card__title {
    
    margin: 0 0 8px;
}
.ko-eve-card__title a {
    text-decoration: none;
    color: inherit;
}
.ko-eve-card__title a:hover { text-decoration: underline; }
.ko-eve-card__excerpt {
    color: #555;
    margin: 0 0 12px;
    flex: 1;
}
.ko-eve-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #555;
    margin-bottom: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}
.ko-eve-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ko-eve-empty {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 40px 0;
}

/* ── Knoppen ─────────────────────────────────────────────────────── */
.ko-eve-btn {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.ko-eve-btn:focus-visible {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}
.ko-eve-btn--primary {
    background: #1a73e8;
    color: #fff !important;
    border: 2px solid #1a73e8;
}
.ko-eve-btn--primary:hover { background: #1557b0; border-color: #1557b0; }

.ko-eve-btn--secondary {
    background: transparent;
    color: #1a73e8 !important;
    border: 2px solid #1a73e8;
}
.ko-eve-btn--secondary:hover { background: #e8f0fe; }

.ko-eve-btn--ghost {
    background: transparent;
    color: #555 !important;
    border: 2px solid #ccc;
    /* Reset browser button defaults */
}
.ko-eve-btn--ghost:hover {
    border-color: #999;
    color: #333 !important;
    background: #f5f5f5;
}

.ko-eve-btn--full {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 8px;
}

/* ── Prijs ───────────────────────────────────────────────────────── */
.ko-eve-price { font-weight: 600; }
.ko-eve-price--free { color: #2e7d32; }
.ko-eve-price--original {
    text-decoration: line-through;
    color: #999;
    margin-right: 4px;
}
.ko-eve-price--action { color: #c62828; }
.ko-eve-price-note    { font-size: 12px; color: #888; }

/* ── Categorie badge ─────────────────────────────────────────────── */
.ko-eve-cat-badge {
    display: inline-block;
    background: #e8f0fe;
    color: #1a73e8;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 4px;
    margin-bottom: 8px;
}

/* ── Single: wrapper ─────────────────────────────────────────────── */
.ko-eve-single {
    
    margin: 0 auto;
    
}

/* ── Single: navigatie & meta ────────────────────────────────────── */
.ko-eve-single__back { margin-bottom: 16px; }
.ko-eve-single__back a { color: #1a73e8; text-decoration: none; }
.ko-eve-single__back a:hover { text-decoration: underline; }

.ko-eve-single__title {
    
    margin: 0 0 16px;
}
.ko-eve-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #555;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* ── Single: layout ──────────────────────────────────────────────── */
.ko-eve-single__layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
.ko-eve-single__featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}
.ko-eve-single__featured-img img {
    width: 100%;
    height: auto;
    display: block;
}
.ko-eve-single__excerpt {
    color: #333;
    margin-bottom: 20px;
}
.ko-eve-single__content {
    
    
    color: #444;
}
.ko-eve-single__content h2,
.ko-eve-single__content h3 { margin-top: 28px; }

/* ── Galerij ─────────────────────────────────────────────────────── */
.ko-eve-single__gallery { margin-top: 32px; }
.ko-eve-single__gallery h2 {  margin-bottom: 12px; }
.ko-eve-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.ko-eve-gallery-link { display: block; border-radius: 6px; overflow: hidden; }
.ko-eve-gallery-img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    transition: transform .2s;
}
.ko-eve-gallery-link:hover .ko-eve-gallery-img { transform: scale(1.04); }
.ko-eve-gallery-link:focus-visible {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}

/* ── Sidebar ─────────────────────────────────────────────────────── */
.ko-eve-sidebar-box {
    background: var(--ko-sidebar-bg, #f8f9fa);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.ko-eve-sidebar-box h3 {
    
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
}
.ko-eve-sidebar-box p { margin: 0 0 6px; }
.ko-eve-sidebar-price { font-weight: 700; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ko-eve-single__layout {
        grid-template-columns: 1fr;
    }
    .ko-eve-single__sidebar {
        order: -1; /* Actieknoppen bovenaan op mobiel */
    }
}

@media (max-width: 480px) {
    .ko-eve-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .ko-eve-card,
    .ko-eve-card__image img,
    .ko-eve-gallery-img,
    .ko-eve-btn {
        transition: none;
    }
}

/* ── Organisator-link ────────────────────────────────────────────── */
.ko-eve-org-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: color .15s;
}
.ko-eve-org-link:hover { color: #1a73e8; text-decoration-style: solid; }
.ko-eve-org-link--all  { color: #1a73e8; }

/* ── Meerdaags badge ─────────────────────────────────────────────── */
.ko-eve-multiday-badge {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    padding: 2px 7px;
    border-radius: 10px;
    vertical-align: middle;
    margin-left: 4px;
}

/* ── Dagenschema in sidebar ──────────────────────────────────────── */
.ko-eve-days-list { display: flex; flex-direction: column; gap: 10px; }
.ko-eve-day-item {
    padding: 10px 12px;
    background: var(--paper, #f5f2ed);
    border-radius: 6px;
    border-left: 3px solid #1a73e8;
}
.ko-eve-day-label { font-size: 11px; font-weight: 700; text-transform: uppercase;
                    letter-spacing: .06em; color: #1a73e8; margin-bottom: 3px; }
.ko-eve-day-date  { font-weight: 600; color: #333; }
.ko-eve-day-time  { color: #666; margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════════
   CSS-variabelen (overschreven door inline stijl vanuit instellingen)
   ══════════════════════════════════════════════════════════════════ */
.ko-eve-wrapper {
    --ko-primary:            #1a73e8;
    --ko-secondary:          #ffffff;
    --ko-text:               #0f1923;
    --ko-bg-card:            #ffffff;
    --ko-badge:              #1a73e8;
    --ko-img-height:         220px;
    --ko-img-ratio:          56.25%;
    --ko-card-shadow:        0 2px 12px rgba(0,0,0,.08);
    --ko-card-border:        1px solid #e8e8e8;
    --ko-btn-radius:         6px;
    --ko-btn-primary-bg:     #1a73e8;
    --ko-btn-primary-color:  #ffffff;
    --ko-btn-primary-border: #1a73e8;
}

/* Knoppen: variabelen toepassen */
.ko-eve-wrapper .ko-eve-btn--primary {
    background:    var(--ko-btn-primary-bg);
    color:         var(--ko-btn-primary-color) !important;
    border:        2px solid var(--ko-btn-primary-border);
    border-radius: var(--ko-btn-radius);
}
.ko-eve-wrapper .ko-eve-btn--primary:hover {
    filter: brightness(.88);
}
.ko-eve-wrapper .ko-eve-btn--secondary {
    background:    var(--ko-secondary);
    color:         var(--ko-primary) !important;
    border:        2px solid var(--ko-primary);
    border-radius: var(--ko-btn-radius);
}
.ko-eve-wrapper .ko-eve-btn--secondary:hover {
    background: color-mix(in srgb, var(--ko-primary) 10%, transparent);
}

/* Kaart: variabelen toepassen */
.ko-eve-wrapper .ko-eve-card {
    background:  var(--ko-bg-card);
    color:       var(--ko-text);
    box-shadow:  var(--ko-card-shadow);
    border:      var(--ko-card-border);
}
.ko-eve-wrapper .ko-eve-card__title a { color: var(--ko-text); }
.ko-eve-wrapper .ko-eve-org-link      { color: var(--ko-primary); }
.ko-eve-wrapper .ko-eve-cat-badge,
.ko-eve-wrapper .ko-eve-multiday-badge { background: var(--ko-badge); }

/* ── Kolom-varianten ─────────────────────────────────────────────── */
.ko-eve-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.ko-eve-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.ko-eve-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .ko-eve-grid--cols-3,
    .ko-eve-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .ko-eve-grid--cols-2,
    .ko-eve-grid--cols-3,
    .ko-eve-grid--cols-4 { grid-template-columns: 1fr; }
}

/* ── Afbeelding in kaart — aspect-ratio via CSS ──────────────────── */
.ko-eve-card__image {
    position: relative;
    width: 100%;
    padding-top: var(--ko-img-ratio, 56.25%);
    overflow: hidden;
}
.ko-eve-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.ko-eve-card__image-link:hover .ko-eve-card__image img { transform: scale(1.04); }

/* ── Lijstweergave ───────────────────────────────────────────────── */
.ko-eve-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Basiskaart: thumbnail | datum-kolom | content | prijs+knoppen */
.ko-eve-list-item {
    display: grid;
    grid-template-columns: 180px 160px 1fr auto;
    align-items: stretch;
    background:    var(--ko-bg-card);
    border:        var(--ko-card-border);
    box-shadow:    var(--ko-card-shadow);
    border-radius: 10px;
    overflow:      hidden;
    transition:    box-shadow .2s, transform .2s;
    color:         var(--ko-text);
    min-height:    110px;
}
.ko-eve-list-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.10);
    transform:  translateY(-1px);
}

/* Geen afbeelding: schuif datum in eerste kolom */
.ko-eve-list-item--no-image {
    grid-template-columns: 160px 1fr auto;
}

/* ── Thumbnail ───────────────────────────────────────────────────── */
.ko-eve-list-item__thumb {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}
.ko-eve-list-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.ko-eve-list-item:hover .ko-eve-list-item__thumb img { transform: scale(1.04); }

/* ── Datum-kolom ─────────────────────────────────────────────────── */
.ko-eve-list-item__date-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px 16px;
    border-right: 1px solid var(--ko-card-border, #e8e8e8);
    background: color-mix(in srgb, var(--ko-primary, #1a73e8) 5%, transparent);
    min-width: 0;
    gap: 4px;
    flex-shrink: 0;
}
.ko-eve-list-item__day {
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--ko-primary, #1a73e8);
}
.ko-eve-list-item__date {
    color: var(--ko-text, #0f1923);
}
.ko-eve-list-item__time {
    color: #666;
    margin-top: 2px;
}
.ko-eve-list-item__location {
    color: #888;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Content-kolom ───────────────────────────────────────────────── */
.ko-eve-list-item__body {
    padding: 14px 18px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.ko-eve-list-item__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 2px;
}
.ko-eve-list-item__title {
    margin: 0;
}
.ko-eve-list-item__title a {
    text-decoration: none;
    color: var(--ko-text, #0f1923);
}
.ko-eve-list-item__title a:hover { text-decoration: underline; }
.ko-eve-list-item__organiser {
    color: #777;
}
.ko-eve-list-item__excerpt {
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Prijs + knoppen kolom ───────────────────────────────────────── */
.ko-eve-list-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    flex-shrink: 0;
    border-left: 1px solid var(--ko-card-border, #e8e8e8);
    min-width: 150px;
}
.ko-eve-list-item__price {
    color: var(--ko-text, #0f1923);
    text-align: right;
}
.ko-eve-list-item__price .ko-eve-price--free { color: #2e7d32; }
.ko-eve-list-item__price .ko-eve-price--action { color: #c62828; }
.ko-eve-list-item__price .ko-eve-price--original {
    text-decoration: line-through;
    color: #999;
    display: block;
}
.ko-eve-list-item__btns {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.ko-eve-list-item__btns .ko-eve-btn {
    width: 100%;
    text-align: center;
    padding: 8px 14px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ko-eve-list-item { grid-template-columns: 140px 1fr auto; }
    .ko-eve-list-item--no-image { grid-template-columns: 140px 1fr auto; }
    .ko-eve-list-item__thumb { display: none; }
    .ko-eve-list-item--no-image { grid-template-columns: 130px 1fr auto; }
}
@media (max-width: 640px) {
    .ko-eve-list-item,
    .ko-eve-list-item--no-image {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .ko-eve-list-item__date-col {
        border-right: none;
        border-bottom: 1px solid var(--ko-card-border, #e8e8e8);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 14px;
        background: color-mix(in srgb, var(--ko-primary, #1a73e8) 6%, transparent);
    }
    .ko-eve-list-item__actions {
        border-left: none;
        border-top: 1px solid var(--ko-card-border, #e8e8e8);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 14px;
        min-width: unset;
    }
    .ko-eve-list-item__btns { flex-direction: row; width: auto; }
}

/* ── Alinea-fix: thema's die p-margins strippen ──────────────────── */
.ko-eve-single__content p {
    margin-bottom: 1em;
}
.ko-eve-single__content p:last-child {
    margin-bottom: 0;
}

/* ── Agenda popup ────────────────────────────────────────────────── */
.ko-eve-ical-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.45);
    padding: 20px;
}
.ko-eve-ical-popup[hidden] { display: none; }

.ko-eve-ical-popup__inner {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px 20px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.ko-eve-ical-popup__close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 4px;
}
.ko-eve-ical-popup__close:hover { color: #333; }

.ko-eve-ical-popup__notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: #5d4037;
    margin-bottom: 18px;
    line-height: 1.5;
}
.ko-eve-ical-popup__title {
    color: #222;
    margin-bottom: 12px;
}

.ko-eve-ical-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none !important;
    color: #222 !important;
    margin-bottom: 8px;
    transition: background .15s, border-color .15s;
}
.ko-eve-ical-option:hover { background: #f5f5f5; border-color: #bbb; }
.ko-eve-ical-option__icon { font-size: 24px; flex-shrink: 0; }
.ko-eve-ical-option span:not(.ko-eve-ical-option__icon) {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ko-eve-ical-option strong { font-size: 14px; }
.ko-eve-ical-option small  { font-size: 12px; color: #888; }

/* ── Archiefpagina ───────────────────────────────────────────────── */
.ko-eve-archive {
    
    margin: 0 auto;
    
}
.ko-eve-archive__header {
    margin-bottom: 32px;
}
.ko-eve-archive__title {
    
    margin: 0 0 20px;
}
.ko-eve-archive__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ko-eve-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #444 !important;
    text-decoration: none !important;
    transition: border-color .15s, background .15s, color .15s;
}
.ko-eve-filter-btn:hover {
    border-color: var(--ko-primary, #1a73e8);
    color: var(--ko-primary, #1a73e8) !important;
}
.ko-eve-filter-btn.active {
    background: var(--ko-primary, #1a73e8);
    border-color: var(--ko-primary, #1a73e8);
    color: #fff !important;
}
.ko-eve-filter-count {
    background: rgba(0,0,0,.10);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
}
.ko-eve-filter-btn.active .ko-eve-filter-count {
    background: rgba(255,255,255,.25);
}

/* ── Galerij grid ────────────────────────────────────────────────── */
.ko-eve-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.ko-eve-gallery-link {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.ko-eve-gallery-link:focus-visible {
    outline: 3px solid var(--ko-primary, #1a73e8);
    outline-offset: 2px;
}
.ko-eve-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}
.ko-eve-gallery-link:hover .ko-eve-gallery-img {
    transform: scale(1.04);
}

/* ── Lightbox ────────────────────────────────────────────────────── */
.ko-eve-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ko-eve-lightbox[hidden] { display: none; }

.ko-eve-lb-figure {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0;
}
.ko-eve-lb-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.ko-eve-lb-caption {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    text-align: center;
    max-width: 600px;
}
.ko-eve-lb-counter {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: 13px;
    background: rgba(0,0,0,.4);
    padding: 4px 12px;
    border-radius: 20px;
}
.ko-eve-lb-close,
.ko-eve-lb-prev,
.ko-eve-lb-next {
    position: fixed;
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.ko-eve-lb-close:hover,
.ko-eve-lb-prev:hover,
.ko-eve-lb-next:hover { background: rgba(255,255,255,.25); }

.ko-eve-lb-close {
    top: 16px; right: 16px;
    width: 40px; height: 40px;
}
.ko-eve-lb-prev,
.ko-eve-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
}
.ko-eve-lb-prev { left: 16px; }
.ko-eve-lb-next { right: 16px; }

@media (max-width: 600px) {
    .ko-eve-lb-prev { left: 6px; }
    .ko-eve-lb-next { right: 6px; }
    .ko-eve-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
