/* Events section */
.events-block {
    position: relative;
}

.events-row {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
}
.events-row.slick-slider {
    display: block;
    overflow: auto;
    margin: 0 -15px;
}

.events-row .slick-track {
    display: flex;
    justify-content: flex-start;
}

.events-row .slick-slide {
    flex: 0 0 auto;
    float: none;
    height: auto;
}

.events-row .item {
    flex: 0 0 auto;
    padding: 0 15px;
    display: inline-block;
    width: 33.33%;
}

.events-row .event-card {
    height: 100%;
}

.event-card {
    background-color: #ffe2d9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 9px rgba(255, 255, 255, 0.22);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-details {
    flex: 1 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-date {
    display: flex;
    align-items: center;
}

.event-image {
    width: 100%;
    height: 272px;
    object-fit: cover;
}

.events-block .location-text {
    font-weight: 500;
    color: #ff6969;
    font-size: 16px;
}

.events-block .date-text {
    font-weight: 500;
    color: #232323;
    font-size: 14px;
}

.event-location {
    display: flex;
    align-items: center;
    margin: 0 0 8px 0;
}

.event-title {
    font-weight: 700;
    color: #ff3b00;
    font-size: 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.events-section .section-footer{
    margin-top: 32px;
}

@media (max-width: 991px) {
    .events-row .item {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .event-card {
        margin-bottom: 30px;
    }

    .events-slider-controls {
        bottom: -50px;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .events-section .main-slider-controls {
        bottom: -66px;
    }

    .events-row .item {
        width: 100%;
    }
}