.main {
    min-height: 70vh;
}

.text-justify {
    text-align: justify;
}

/* Slider base */
.event-slider {
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.event-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.event-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Controls */
.carousel-control {
    position: absolute;
    bottom: 3rem;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 4px 10px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* Dots */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.cursor-pointer {
    cursor: pointer;
}
