.shl-events-wrap {
    position: relative;
}

.shl-events-swiper {
    overflow: hidden;
    border-radius: 24px;
}

.shl-event-slide {
    display: flex;
    align-items: center;
    background: #79d2df;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    min-height: 150px;
}

.shl-event-thumb {
    width: 25%;
    flex-shrink: 0;
}

.shl-event-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.shl-event-content {
    flex: 1;
    padding: 0 40px;
}

.shl-event-title {
    color: white;
    font-size: 28px;
    line-height: 1.3;
    margin: 0;
    font-weight: 500;
}

.shl-event-date {
    width: 25%;
    padding: 0 30px;
    color: #026666;
    font-size: 23px;
    line-height: 1.3;
    border-left: 2px solid #026666;
    font-weight: 400;
    min-height: 95px;
    display: flex;
    align-items: center;
}

.shl-events-prev,
.shl-events-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #252834;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
}

.shl-events-prev {
    left: -24px;
    transform: translateY(-50%) rotate(180deg);
}

.shl-events-next {
    right: -24px;
}