.upcoming_events-section {
    margin-top: 46px;
}

.upcoming_events-section .container {
    padding-left: 0;
}

.upcoming_events-section .section-title {
    color: #b5207a;
    font-size: 5.3125vw;
}

.upcoming_events-section .slick-list {
    padding-right: 0 !important;
}

.upcoming_events-section .section-row {
    margin-right: -3.90625vw;
}

.upcoming_events-section .section-col {
    padding: 20px 3.90625vw 15px 0;
}

.upcoming_event-wrap {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.upcoming_event-wrap .img {
    position: relative;
    padding-top: 80%;
}

.upcoming_event-wrap .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.upcoming_event-wrap .content {
    text-align: center;
    padding: 3.5vw;
    font-size: 3.75vw;
    color: #000;
}

.upcoming_event-wrap .title {
    font-size: 4.0625vw;
    font-weight: 700;
    color: #b5207a;
    margin-bottom: 2.5vw;
}

.upcoming_event-wrap .date {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;
    margin-bottom: 2.5vw;
}

.upcoming_event-wrap .date i {
    font-size: 3vw;
    line-height: 0;
}

.upcoming_event-wrap .link {
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.upcoming_event-wrap .link i {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}

@media (min-width: 768px) {
    .upcoming_events-section .container {
        padding-left: 15px;
    }

    .upcoming_events-section .section-title {
        font-size: 30px;
    }

    .upcoming_events-section .section-row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .upcoming_events-section .section-col {
        padding: 22px 15px 15px;
        width: 50%;
    }

    .upcoming_event-wrap .img {
        overflow: hidden;
    }

    .upcoming_event-wrap .img img {
        transition: transform 0.3s ease;
    }

    .upcoming_event-wrap:hover img {
        transform: scale(1.08);
    }

    .upcoming_event-wrap .content {
        font-size: 16px;
        padding: 15px;
    }

    .upcoming_event-wrap .title {
        font-size: 20px;
        margin-bottom: 11px;
    }

    .upcoming_event-wrap .date {
        gap: 10px;
        margin-bottom: 15px;
    }

    .upcoming_event-wrap .date i {
        font-size: 13px;
    }

    .upcoming_event-wrap .link:hover {
        color: #b5207a;
    }
}

@media (min-width: 992px) {
    .upcoming_events-section .section-col {
        width: 25%;
    }
}