.u-news:not(:first-child) {
    margin-top: 36px;
}

.u-news__text_border {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-black);
    height: 148px;
    overflow: hidden;
}

.u-news__text_border:hover {
    color: var(--color-primary);
}

.u-news__text_border:active {
    color: var(--color-primary-dark);
}

.u-news__button {
    font-size: var(--font-size-base);
    align-items: center;
    display: flex;
    font-weight: 500;
}

.u-news__img {
    border-radius: 8px;
}

.u-news__iframe {
    width: 100%;
    height: 364px;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .u-news__text {
        font-size: var(--font-size-base-large);
    }

    .u-news__text_border {
        height: auto;
    }

    .u-news__iframe {
        height: 302px;
    }

    .u-news:not(:first-child) {
        margin-top: 8px;
    }

}

@media (max-width: 767.98px) {
    .u-news__arrow {
        padding: 8px;
        width: 34px;
    }
}

@media (max-width: 575.98px) {
    .u-news__text {
        font-size: var(--font-size-base-small);
    }

    .u-news__text_border {
        height: auto;
    }

    .u-news__iframe {
        height: 214px;
    }
}

