.eventsBlock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.eventCard {
    position: relative;
    display: flex;
    flex-direction: column;
    /* height: calc(100% - 15px); */
    height: auto;
}

.eventCard__inner {
    position: relative;
    top: -15px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    display: flex;
    gap: 40px;
    height: 100%;
    /* height: calc(100% - 257px); */
}

.eventCard__imageWrapper {
    overflow: hidden;
    border-radius: 15px;
    height: 257px;
    min-height: 257px;
    max-height: 257px;
}

.eventCard__image {
    height: 100%;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transform: scale(1);
    transition: all .3s ease;
}

.eventCard__image:hover {
    transform: scale(1.05);
}

@media (max-width:1199px) {
    .eventCard__image:hover {
        transform: scale(1);
    }
}

.eventCard__dateBlock {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eventCard__date {
    font-family: Cera Pro;
    font-size: 22px;
    font-weight: 500;
    line-height: 26.4px;
    color: #FF004F;
    width: 65px;
}

.eventCard__dateYear {
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2B2929;
}

.eventCard__contentBlock {
    display: flex;
    flex-direction: column;
    gap: 52px;
    justify-content: space-between;
}

.eventCard__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eventCard__title {
    font-family: Cera Pro;
    font-size: 26px;
    font-weight: 500;
    line-height: 31.2px;
    color: #2B2929;
}

.eventCard__text {
    font-family: Cera Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2B2929;
}

.eventCard__tags {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 1;
}

.eventCard__tag {
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    letter-spacing: 0.01em;
    padding: 4px 12px;
    border-radius: 12px;
    color: #fff;
    background: rgba(65, 65, 65, 0.29);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 1199px) {
    .eventCard {
        display: flex;
        flex-direction: column;
    }

    .eventCard__image {
        flex-grow: 1;
        max-height: 257px;
        min-height: 220px;
    }

    .eventCard__inner {
        padding: 20px;
        flex-direction: column;
        gap: 5px;
        justify-content: space-between;
        height: 100%;
        /* flex-grow: 2; */
    }

    .eventCard__dateBlock {
        flex-direction: row;
        justify-content: space-between;
    }

    .eventCard__date {
        width: 100%;
    }

    .eventCard__contentBlock {
        gap: 30px;
        height: 100%;
    }

    .eventCard__inner .button {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;

    }
}