.news-list {
    margin-bottom: 7.4em;
}

.news-item {
    color: #fff;
    position: relative;

    --news-bg: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.25%, rgba(0, 0, 0, 0.6) 100%);
}

a.news-item::after {
    content: "";
    position: absolute;
    background: var(--news-bg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.news-item {
    height: 100%;
}

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

.news-item--inner {
    gap: 16px;
    line-height: 1;
    position: absolute;
    padding: 30px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.news-item--inner * {
    letter-spacing: -0.02em;
}

.news-item--props {
    gap: 36px;
}

.news-item--props > * {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-item--props > * span {
    font-size: 14px;
    font-weight: 300;
}

.news-item--props .vb {
    font-size: 18px;
}

.news-item--title {
    font-family: 'Source Serif 4 48pt';
    font-size: 24px;
    font-weight: 400;
}

.news-item--description {
    font-size: 14px;
    font-weight: 300;
}

@media screen and (max-width: 1199px) {
    .breadcrumbs {
        margin-top: 0;
        font-size: 14px;
    }

    .row:has(.breadcrumbs) {
        margin-bottom: 23px;
    }

    .news-item--inner {
        padding: 20px 20px 24px;
    }

    .news-item--title {
        font-size: 22px;
    }
}