.m-card-event {
    position: relative;
    padding: 25px;
    background: #eff2f4;
}
.m-card-event::after{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: #eff2f4;
    top:0;
    right: -100%;
}
.m-card-event__category {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #002a3f;
}
.m-card-event h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: #002a3f;
    margin-bottom: 5px;
}
.m-card-event p {
    margin-bottom: 5px;
}
.m-card-event__local {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
}
.m-card-event__date {
    display: flex;
    height: 24px;
    background: var(--dark-blue);
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    padding: 4px;
    margin-bottom: 20px;
    max-width: 280px;
    margin-bottom: 15px;
}
.m-card-event__date::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/ico-calendar-white.svg") no-repeat;
    margin-right: 4px;
}
.m-card-event__price {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #002a3f;
}
@media (max-width: 576px) {
    .m-card-event::after{
        display: none;
    }
}