.news {
    padding-top: 48px;
    padding-bottom: 40px;
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    max-width: 100%;
    flex-wrap: wrap;
}

    .news-tabs .news-tabs-btn {
        text-wrap: nowrap;
        white-space: nowrap;
        text-transform: uppercase;
        height: 36px;
    }

.news-block {
    width: 100%;
    gap: 28px;
    display: none;
}

    .news-block.active {
        display: flex !important;
    }

.news-block-left {
    flex: 6;
    display: block;
}

    .news-block-left img {
        width: 100%;
        border-radius: 2px;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        display: block;
    }

.news-block-left-info h6 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-primary);
    margin: 20px 0 8px;
    line-height: 28px;
}

.news-block-left-info-description,
.news-block-left-info p {
    font-size: 16px !important;
    font-weight: 400;
    color: #757F95;
    line-height: 24px;
    font-family: 'Roboto', sans-serif !important;
}


.news-block-right {
    flex: 4;
}

    .news-block-right hr {
        border: 1px dashed #D3D8E4;
        opacity: 1;
    }

.news-block-right-item {
    display: flex;
    gap: 12px;
}

    .news-block-right-item img {
        width: 160px;
        border-radius: 2px;
        aspect-ratio: 14 / 9;
        object-fit: cover;
    }

    .news-block-right-item p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: var(--color-primary);
        max-height: 72px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-block-left:hover h6,
    .news-block-right-item:hover p {
        color: var(--color-secondary)
    }

@media (max-width: 992px) {
    .news-tabs {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: auto;
        flex-wrap: nowrap;
        justify-content: start;
    }

        .news-tabs::-webkit-scrollbar {
            display: none;
        }

    .news-block {
        flex-direction: column;
    }
}
