.news-wrapper {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 64px;
    width: calc(100% - 64px);
    margin-top: 59px;
    margin-bottom: 84px;
}

.news-wrapper__category {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 28px;
}

.news-wrapper__category a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: -2%;
    color: #1D1D1D;
    text-decoration: none;
    padding: 10px 24px;
    border: 1px solid #1D1D1D;
    border-radius: 32px;
}

.news-wrapper__category a:hover svg {
    animation: arrow-slide 0.7s ease-in-out infinite alternate;
}

.news-category-tag {
    margin-left: 4px;
    padding: 10px 24px;
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: -2%;
    color: #1D1D1D;
    background: #F0F3F8;
    border-radius: 32px;
}

.news-wrapper__title {
    font-family: Ermilov;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 64px;
    letter-spacing: -3%;
    color: #2E2E2E;
    margin-bottom: 20px;
}

.news-content__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width:1024px) {
    .news__wrapper{
        width: calc(100% - 32px);
        padding: 0 16px;
    }
    .news-container {
        padding: 0;
        max-width: 100%;
    }

    .news-wrapper {
        border-radius: 32px;
        margin-top: 20px;
        padding: 12px;
        width: calc(100% - 24px);
    }

    .news-content__wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .news-wrapper__category a {
        gap: 8px;
        font-size: 14px;
        padding: 8px 16px;
    }

    .news-category-tag {
        margin-left: 4px;
        padding: 6px 16px;
        font-size: 14px;
    }

    .news-wrapper__title {
        font-family: Ermilov;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 32px;
        letter-spacing: -3%;
        margin-bottom: 16px;

    }
}