.rmUIevents {
    display: flex;
    flex-direction: column;
}

.rmUIevents__content {
    display: flex;
    flex-direction: column;
}

.rmUIevents__content-poster__block {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin-bottom: 32px;
}

.rmUIevents__content-poster {
    border-radius: 25px;
}


.rmUIevents__content-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 30px;
}

.rmUIevents__content-header__text-block {
    display: flex;
    flex-direction: column;
}

.rmUIevents__content-header__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    color: var(--black-color);
    font-size: 32px;
}

.rmUIevents__content-header__date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--second-gray-color);
    font-size: 18px;
}


.rmUIevents__content-header__button {
    display: inline-flex;
    flex-direction: row;
    gap: 11px;
    background-color: var(--orange-color);
    padding: 13px 22px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
    white-space: nowrap;
    font-size: 20px;
    align-items: center;
    transition: all 0.4s;
}

.rmUIevents__content-header__button svg {
    height: 32px;
    width: 32px;
    fill: var(--white-color);
    flex-shrink: 0;
    transform: rotate(180deg);
}

.rmUIevents__content-header__button:hover {
    border-radius: 30px;
    background-color: var(--green-color);
}


.rmUIevents__content-container__text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--second-gray-color);
    font-size: 17px;
    white-space: pre-line;
}