.angie-event-carousel-d2c27105 {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.angie-event-carousel-d2c27105 .carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}
.angie-event-carousel-d2c27105 .carousel-track::-webkit-scrollbar {
    display: none;
}
.angie-event-carousel-d2c27105 .carousel-slide {
    /* Responsive columns set via inline CSS from widget controls */
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.angie-event-carousel-d2c27105 .event-image-container {
    width: 100%;
    cursor: pointer;
}
.angie-event-carousel-d2c27105 .event-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}
.angie-event-carousel-d2c27105 .event-title {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
.angie-event-carousel-d2c27105 .event-button-wrapper {
    margin-top: auto; /* Push button to bottom */
    padding-top: 10px;
}
.angie-event-carousel-d2c27105 .event-button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}
.angie-event-carousel-d2c27105 .event-button svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.angie-event-carousel-d2c27105 .event-button i {
    font-size: 1em;
}

/* Nav Controls */
.angie-event-carousel-d2c27105 .carousel-nav-controls {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}
.angie-event-carousel-d2c27105 .nav-top-left { justify-content: flex-start; }
.angie-event-carousel-d2c27105 .nav-top-center { justify-content: center; }
.angie-event-carousel-d2c27105 .nav-top-right { justify-content: flex-end; }
.angie-event-carousel-d2c27105 .nav-bottom-left { justify-content: flex-start; }
.angie-event-carousel-d2c27105 .nav-bottom-center { justify-content: center; }
.angie-event-carousel-d2c27105 .nav-bottom-right { justify-content: flex-end; }

.angie-event-carousel-d2c27105 .carousel-btn {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.angie-event-carousel-d2c27105 .carousel-btn.nav-inside {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.angie-event-carousel-d2c27105 .carousel-btn.nav-inside.prev { left: 10px; }
.angie-event-carousel-d2c27105 .carousel-btn.nav-inside.next { right: 10px; }


/* Lightbox Styles */
.event-lightbox-overlay-d2c27105 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-lightbox-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.event-lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}
.event-lightbox-body {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    overflow-y: auto; /* Scroll whole body on mobile */
    max-height: 100%;
}
.event-lightbox-image {
    flex: 1;
    max-width: 50%;
    position: sticky;
    top: 0;
}
.event-lightbox-image img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Keep full aspect ratio */
    border-radius: 8px;
    max-height: 70vh; /* Prevent it from being taller than viewport */
}
.event-lightbox-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.event-lightbox-text {
    margin: 15px 0;
}
.event-lightbox-text p {
    margin-bottom: 15px;
}
.event-lightbox-text ul, .event-lightbox-text ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .event-lightbox-body {
        flex-direction: column;
        position: static;
    }
    .event-lightbox-image {
        max-width: 100%;
        position: static;
    }
}
