.event-description {
    background: #f8f9fa;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--heading-color, #0d6efd);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.event-description br + br {
    margin-bottom: 12px;
}

.evt-carousel-inner {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 480px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.evt-feature-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}
.evt-feature-slide.active { opacity: 1; z-index: 2; }

.featured-image { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center center; background: transparent; }

.evt-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.evt-nav-btn:hover { background: rgba(0,0,0,0.7); }
.evt-nav-btn.prev { left: 10px; }
.evt-nav-btn.next { right: 10px; }

.evt-delete-btn { position: absolute; top: 10px; right: 10px; z-index: 20; }

#evtThumbs {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    justify-content: center;
}
.evt-thumb {
    flex: unset;
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.evt-feature-slide { overflow: hidden; }
.featured-image { transition: transform 0.3s ease; }
.evt-feature-slide:hover .featured-image { transform: scale(1.05); }

.evt-lightbox { position:fixed; inset:0; background:rgba(0,0,0,0.85); display:flex; align-items:center; justify-content:center; z-index:1200; padding:20px; }
.evt-lightbox img { max-width:95%; max-height:85%; border-radius:6px; }

@media (max-width:768px){ 
    .evt-carousel-inner { height: 300px; } 
    .evt-thumb { width: 80px; height: 60px; }
}
