.aptus-news-events {
    padding: 2em;
    clear: both;
    background-color: #fff;
    margin: 0;
    position: relative;
}

.aptus-news-events .news-container .aptus-news-title-wrapper,
.aptus-news-events .news-container .aptus-news-page-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: .5em;
    position: relative;
}

.aptus-news-events .news-container .aptus-news-title-wrapper h2 {
    margin: 0;
    padding: 0 5px;
    background-color: white;
    z-index: 1;
}

.aptus-news-events .news-container .aptus-news-title-wrapper::before {
    position: absolute;
    content: '';
    z-index: 0;
    left: 0;
    right: 0;
    top: calc(50% - 1px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), var(--main-color), transparent)
}

.aptus-news-events .news-container .aptus-news-page-link-wrapper a {
    display: block;
    padding: 5px 25px 5px 15px;
    background-color: white;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.aptus-news-events .news-container .aptus-news-page-link-wrapper a:hover {
    background-color: var(--main-color);
    color: white;
}

.aptus-news-events .news-container .aptus-news-page-link-wrapper a i {
    transition: .2s;
    display: inline-block;
}

.aptus-news-events .news-container .aptus-news-page-link-wrapper a:hover i {
    transform: translatex(10px);
}

.aptus-news-events .aptus-news-title {
    text-align: center;
}

.aptus-news-events .ap_events {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.aptus-news-events .ap_events .ap_event {
    display: flex;
    align-items: stretch;
    width: 30%;
    margin-bottom: 10px;
}

.aptus-news-events .ap_events .ap_event:last-of-type {
    margin-bottom: 0;
}

.aptus-news-events .ap_events .left-section {
    display: flex;
    flex-direction: column;
    flex: 1.4;
}

.aptus-news-events .ap_events .left-section .ap_event {
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    min-height: 180px;
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__image {
    width: 40%;
}

.aptus-news-events .ap_events .left-section .ap_event__image .img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title {
    width: 60%;
    padding: 15px;
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title h3 {
    margin: 0 0 10px 0;
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title h3 a {
    color: black;
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title h3 a:hover {
    text-decoration: underline;
    color: var(--main-color);
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title h4 {
    color: var(--red);
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title .btn-read-more {
    color: black;
    text-decoration: underline;
}

.aptus-news-events .ap_events .left-section .ap_event .ap_event__title .btn-read-more:hover {
    color: var(--main-color);
}

.news-container .aptus-news-title-wrapper a:hover {
    background-color: var(--main-color);
    color: white;
}

.aptus-news-events .ap_events {
    align-items: stretch;
    flex-wrap: wrap;
}

.ap_events .event_section {
    flex: 1;
    margin: 15px;
    min-width: 300px;
}

.ap_events .right-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.ap_events .right-section .ap_event {
    width: 100%;
    position: relative;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    flex: 1;
}

.ap_events .right-section .ap_event .ap_event__date {
    z-index: 0;
    font-size: 3em;
    color: var(--red);
    font-weight: bold;
    margin: 0;
    line-height: .6em;
    padding: .5em .6em .3em;
    text-align: center;
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ap_events .right-section .ap_event .ap_event__date span {
    font-size: .5em;
    ;
    color: var(--red);
}

.ap_events .right-section .ap_event .ap_event__title {
    z-index: 0;
    font-size: 1.2em;
}

.ap_events .right-section .ap_event .ap_event__title a {
    height: 100%;
    display: flex;
    align-items: center;
}

.ap_events .right-section .ap_event .ap_event__title a:hover h4 {
    text-decoration-color: white;
}

.ap_events .right-section .ap_event .ap_event__title h4 {
    font-size: 1.2em;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.ap_events .right-section .ap_event:hover .ap_event__title h4,
.ap_events .right-section .ap_event:hover .ap_event__date,
.ap_events .right-section .ap_event:hover .ap_event__date span {
    color: white;
}

.ap_events .right-section .ap_event .ap_event__overlay {
    z-index: 0;
    transition: .5s ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0%;
    top: 0;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(100px 120% at 0 20%);
    filter: sepia(50%) brightness(1);
}

.ap_events .right-section .ap_event:hover .ap_event__overlay {
    clip-path: ellipse(130% 270% at 0 20%);
    filter: sepia(0%) brightness(.5);
}


/* Mobile adaptation*/

@media (max-width: 570px) {
    .aptus-news-events {
        padding: 1em .5em;
    }
    .aptus-news-events .ap_events {
        margin: 5px;
    }
    .aptus-news .aptus-news-title {
        font-size: 20px;
    }
    .ap_events .left-section .ap_event {
        flex-direction: column;
    }
    .aptus-news-events .ap_events .left-section .ap_event .ap_event__image {
        width: 100%;
        height: 120px;
    }
    .ap_events .event_section {
        min-width: 290px;
        margin: 0 0 5px;
    }
    .aptus-news-events .ap_events .left-section .ap_event .ap_event__title {
        width: 100%;
    }
    .ap_events .right-section .ap_event .ap_event__title h4 {
        font-size: 20px;
    }
    .ap_events .right-section .ap_event .ap_event__date {
        font-size: 32px;
    }
    .ap_events .right-section .ap_event .ap_event__overlay {
        clip-path: ellipse(72px 130% at 0 20%);
    }
    .ap_events .right-section .ap_event:hover .ap_event__overlay {
        clip-path: ellipse(130% 270% at 0 20%);
        filter: sepia(0%) brightness(.5);
    }
}