.rmUInovost {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUInovost__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUInovost__content-poster__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 34px;
}

.rmUInovost__content-poster {
    width: 100%;
    flex-shrink: 0;
    border-radius: 21px;
}


.rmUInovost__content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 14px;
    margin-bottom: 44px;
    align-items: center;
}

.rmUInovost__content-header--text__block {
    display: flex;
    flex-direction: column;
}

.rmUInovost__content-header--title {
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--red-color);
    font-size: 29px;
}

.rmUInovost__content-header--date {
    font-family: 'Unbounded';
    font-weight: 400;
    color: var(--gray-color);
    font-size: 16px;
}


.rmUInovost__content-header--button__wrapper {
    display: flex;
    flex-direction: column;
}

.rmUInovost__content-header--button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 12px 21px;
    background-image: linear-gradient(90deg, #f07461, #9e2c1d);
    font-family: 'Unbounded';
    font-weight: 500;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    user-select: none;
    border-radius: 14px;
    transition: all 0.4s ease;
}

.rmUInovost__content-header--button svg {
    height: 34px;
    width: 34px;
    fill: var(--white-color);
    flex-shrink: 0;
    transform: rotate(180deg);
}

.rmUInovost__content-header--button:hover {
    opacity: 0.75;
}


.rmUInovost__content-text__block {
    display: flex;
    flex-direction: column;
}

.rmUInovost__content-text {
    font-family: 'Montserrat';
    font-weight: 500;
    color: var(--gray-color);
    font-size: 17px;
    white-space: pre-line;
}