.news-archive-first {
    padding-bottom: 0 !important;
}

.news-top-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-top-card {
    gap: 24px;
    width: 100%;
}

.news-top-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.news-top-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(136.63deg, rgba(255, 255, 255, 0.2) -8.8%, rgba(255, 255, 255, 0) 91.26%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.news-top-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.news-top-content {
    gap: 12px;
}

@media(max-width: 768px) {
    .news-archive-first {
        padding-bottom: 20px !important;
    }

    .news-top-image {
        border-radius: 18px;
        height: 176px;
    }

    .news-top-block {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .news-top-card {
        gap: 16px;
    }

    .news-top-content {
        flex-direction: column-reverse;
        gap: 16px;
    }


}