.news-wrapper {
    margin-top: 70px;
    margin-bottom: 114px;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
}

.news-page-title {
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-style: Medium;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #353535;
    margin-bottom: 90px;
}
@media screen and (max-width: 1441px) {
    .news-page-title {
        font-size: 48px;
        margin-bottom: 48px;
    }
    .news-page-tabs{
        gap: 28px!important;
    }
    .news-page-tabs__item{
        font-size: 12px!important;
    }
}
.news-page-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.news-page-tabs {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.news-page-tabs__item {
    position: relative;
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--gray-60);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.news-page-tabs__item:after{
    transition: all 0.4s ease-in-out;
    position: absolute;
    width:0;
    left: 0;
    content: '';
    bottom: 0;
    height: 2px;
    background-color: var(--gray-100);
}
.news-page-tabs__item.active{
    color: var(--gray-100);
}
.news-page-tabs__item.active:after{
    width: 100%;
}

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 3.33vw, 64px);
    margin-top: clamp(32px, 3.33vw, 64px);
}

@media (max-width: 1024px) {
    .news-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .news-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.news-page-more {
    display: flex;
    justify-content: flex-start;
    margin-top: clamp(32px, 3.33vw, 64px);
}

.news-page-more__btn {
    transition: opacity 0.3s ease;
}

.news-page-more__btn:hover {
    opacity: 0.85;
}
