.news {
    margin-top: 72px;
    margin-bottom: 66px;
}

.news__wrapper {
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.news__wrapper h2 {
    font-family: Ermilov;
    font-weight: 700;
    font-style: Bold;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 80px;
    letter-spacing: -3%;
    color: #2E2E2E;
}

.news-items {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.news-item {
    width: 33%;
    border: 1px solid #E2E2E2;
    padding: 4px 4px 16px 4px;
    border-radius: 32px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.news-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.news-item:nth-child(2) {
    padding: 28px;
    position: relative;
    width: calc(33% - 44px);

}

.news-svg {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    transform: translateX(-50%);
    margin: 0 !important;
}

.news-item .img-wrapper {
    width: 100%;
    height: 327px;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.news-item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item .date {
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: -3%;
    opacity: 0.4;
    color: black;
    margin-top: 12px;
}

.news-item .news-title {
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 26px;
    letter-spacing: -2%;
    color: black;
    margin-top: 8px;
}

.news-item svg {
    margin-left: 10px;
    margin-top: 20px;
}


@media screen and (max-width:1024px) {
    .news {
        margin-top: 56px;
        margin-bottom: 72px;
    }

    .news__wrapper {
        gap: 16px;
    }

    .news__wrapper h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .news-items {

        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .news-item {
        padding: 4px 4px 16px 4px;
        border-radius: 28px;
        width: calc(100% - 8px);
    }

    .news-item:nth-child(2) {
        padding: 16px;
        width: calc(100% - 32px);
        position: relative;
        height: calc(340px - 32px);
    }



    .news-item .img-wrapper {
        width: 100%;
        height: 220px;
        border-radius: 28px;
        overflow: hidden;
    }

    .news-item .img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-item .date {
        margin: 12px 12px 0 12px;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -3%;
    }

    .news-item .news-title {
        margin: 7px 12px 0 12px;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -2%;
    }

    .news-item svg {
        margin-left: 20px;
        margin-top: 20px;
    }
}