.site-content-wrap {
    padding-top: 0;
}

.home-news__fallback {
    margin: 0;
}

.home-news__hero {
    width: 100%;
}

.home-news__hero-link {
    display: block;
}

.home-news__hero-media {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: #1a1a1a;
}

.home-news__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news__hero-media--no-image {
    background: linear-gradient(130deg, #7e0f0e 0%, #b81210 45%, #dea800 100%);
}

.home-news__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.home-news__hero-content {
    position: absolute;
    left: 10vw;
    bottom: 15vh;
    max-width: min(46vw, 700px);
    text-align: left;
    color: #fff;
    z-index: 2;
}

.home-news__hero-category {
    margin: 0;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.home-news__hero-title {
    margin: 8px 0 10px;
    font-size: clamp(1.8rem, 3.6vw, 3.9rem);
    line-height: 1.06;
    color: #fff;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.home-news__hero-date {
    margin: 0;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.home-news__list-wrap {
    z-index: 3;
    padding: 100px 0;
}

.home-news__list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-news__item {
    background: #fff;
}

.home-news__item-link {
    display: block;
}

.home-news__item-thumb {
    aspect-ratio: 2.5 / 3;
    overflow: hidden;
    background: #f2f2f2;
}

.home-news__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news__item-thumb--no-image {
    background: linear-gradient(130deg, #830f0d 0%, #b81210 45%, #dea800 100%);
}

.home-news__item:hover .home-news__item-thumb img {
    transform: scale(1.04);
}

.home-news__item-content {
    padding: 14px 0 2px;
}

.home-news__item-category {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

.home-news__item-title {
    margin: 8px 0;
    font-size: 1.03rem;
    line-height: 1.35;
    color: #1d1d1d;
}

.home-news__item-date {
    margin: 0;
    color: #444;
    font-size: 0.85rem;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-news__cta-wrap {
    margin-top: 28px;
    text-align: center;
}

.home-news__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .home-news {
        margin-top: -102px;
    }

    .home-news__hero-media {
        min-height: 500px;
        height: 88vh;
    }

    .home-news__hero-content {
        right: 14px;
        left: 14px;
        max-width: none;
        bottom: 28px;
        text-align: left;
    }

    .home-news__hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        line-height: 1.12;
    }

    .home-news__list-wrap {
        margin-top: -30px;
        padding-bottom: 42px;
    }

    .home-news__list-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-news__item-title {
        font-size: 1rem;
    }
}
