.cx-events{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cx-events__item {
    width: 100%;
    display: flex;
    background: #fff;
    align-items: flex-start;
}

.cx-events__image {
    max-width: 300px !important;
    width: 100%;
    object-fit: cover;
}

.cx-events__content{
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
 }
.cx-events__title{
    margin-bottom: 15px;
}

.cx-events__meta{
    font-weight: 700;
    margin-bottom: 10px;
}

.cx-events__link{
    background-color: transparent !important;
    border-radius: 3px;
    color: #004371 !important;
    fill: #fff;
    font-size: 15px;
    line-height: 1;
    transition: all .3s;
    margin-top: 20px;
    width: auto;
    text-align: left;
    font-weight: 700;
    padding: 0;
}


@media screen and (max-width: 768px){
    .cx-events{flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }
    .cx-events__item{
        flex-direction: column;
        width: calc(50% - 10px);
    }
    .cx-events__image {
        max-width: 400px !important;
        margin: 0 auto;
    }
    .cx-events__content{
        padding: 20px;
    }
}

@media screen and (max-width: 500px){
    .cx-events__item{
        width: 100%;
    }
}