.news-section {
    padding: 20px 5% 70px;
    background-color: #faf8f5;
    position: relative;
}

/* ===== шапка секции: заголовок слева, ссылка "Архив" справа ===== */
.news-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}
.news-head-left { min-width: 280px; }
.news-eyebrow {
    color: #FF9F4A;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.news-title {
    font-size: 2.5rem;
    color: #2E5E7E;
    margin: 0;
    line-height: 1.15;
}
.news-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF9F4A;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
}
/* ===== сетка 2 крупных карточек ===== */
.vc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ===== карточка ===== */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.news-card:hover .nc-media-img { transform: scale(1.06); }
.news-card:hover .nc-title-h { color: #4A6FA5; }
.news-card:hover .nc-more .nc-arrow { transform: translateX(5px); }

.vc-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
    height: 440px;
}

.nc-media {
    position: relative;
    overflow: hidden;
    background: #e6dfd3;
    min-height: 200px;
}
.nc-media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nc-body {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #8a8472;
    margin-bottom: 12px;
}
.nc-meta .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #c4bca9;
}

.nc-title-h {
    font-size: 1.4rem;
    color: #343A40;
    margin: 0 0 12px;
    line-height: 1.3;
    transition: color 0.25s ease;
    text-wrap: balance;
}

.nc-excerpt {
    font-size: 1rem;
    color: #6C757D;
    line-height: 1.6;
    margin: 0 0 18px;
    text-wrap: pretty;
}

.nc-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4A6FA5;
    font-size: 1rem;
    margin-top: auto;
}
.nc-more .nc-arrow { transition: transform 0.25s ease; }

/* ===== адаптив ===== */
@media (max-width: 1100px) {
    .vc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .vc-card {
        grid-template-columns: 1fr;
        /* фикс. 440px при вертикальной раскладке сминал текст */
        height: auto;
    }
    .nc-media { min-height: 200px; aspect-ratio: 16/9; }
    .nc-body { padding: 22px 20px; }
    .news-title { font-size: 2rem; }
    .news-head { flex-direction: column; align-items: center; }
    .news-head-left { min-width: 0; }
}

@media (max-width: 560px) {
    .news-section { padding: 12px 5% 50px; }
    .news-head { margin-bottom: 32px; }
    .news-title { font-size: 1.6rem; }
    .news-title::after { width: 60px; margin-top: 12px; }
    .news-eyebrow { font-size: 0.85rem; letter-spacing: 0.14em; }
    .news-card { border-radius: 14px; }
    .nc-media { min-height: 0; }
    .nc-body { padding: 18px; }
    .nc-title-h { font-size: 1.2rem; }
    .nc-meta { font-size: 0.9rem; margin-bottom: 8px; }
    .vc-grid { gap: 22px; }
}

/* ============================================================
   Мини-блок новостей в hero — Вариант 1
   Палитра и шрифт (Oswald) наследуются со страницы.
   ============================================================ */

/* ---- Левая колонка (hero-content + новости) ---- */
.hero-content {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.hero-content > .hero-title,
.hero-content > .hero-subtitle,
.hero-content > .hero-description,
.hero-content > .hero-buttons { flex: 0 0 auto; }
.hero-subtitle { align-self: flex-start; }

/* компактнее верхний текст hero — освобождаем место под новости */
.hero-title    { margin-bottom: 0.4rem; }
.hero-subtitle { font-size: 1.05rem; padding: 4px 10px; margin-bottom: 0.65rem; }
.hero-section .hero-buttons { gap: 10px; }
.hero-section .cta-button   { margin-right: 0; }

/* ---- Контейнер блока новостей ---- */
.hero-news {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 21px;
    padding-top: 21px;
    border-top: 1px solid rgba(74, 111, 165, 0.14);
}
.hn-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---- Карточка: фото слева, текст справа ---- */
.hn-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.019);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hn-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.035);
}

/* ---- Фото ---- */
.hn-thumb {
    width: 140px;
    height: 104px;
    border-radius: 10px;
    overflow: hidden;
    background: #e6dfd3;
    flex-shrink: 0;
}
.hn-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hn-item:hover .hn-thumb img { transform: scale(1.07); }

/* ---- Текст ---- */
.hn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.hn-date {
    color: #FF9F4A;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.hn-title {
    font-size: 1.12rem;
    line-height: 1.25;
    color: #343A40;
    margin: 0 0 6px;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hn-item:hover .hn-title { color: #4A6FA5; }
.hn-exc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6C757D;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Адаптив ---- */
@media (max-width: 900px) {
    /* hero-новости больше не тянутся по высоте колонки — она стала полной шириной */
    .hero-news { flex: 0 0 auto; }
}

@media (max-width: 560px) {
    .hero-news {
        margin-top: 16px;
        padding-top: 16px;
    }
    .hn-list { gap: 8px; }
    .hn-item { gap: 12px; padding: 10px; border-radius: 12px; }
}

@media (max-width: 540px) {
    .hn-thumb { width: 104px; height: 80px; }
    .hn-title { font-size: 1rem; }
}

/* ---- Небольшие телефоны (≤400px) ---- */
@media (max-width: 400px) {
    .news-section { padding: 10px 4% 40px; }
    .news-title { font-size: 1.4rem; }
    .news-head { margin-bottom: 26px; gap: 14px; }

    .nc-body { padding: 15px 14px; }
    .nc-title-h { font-size: 1.12rem; }
    .nc-excerpt { margin-bottom: 14px; }
    .vc-grid { gap: 18px; }

    .hn-item { gap: 10px; padding: 9px; }
    .hn-thumb { width: 84px; height: 70px; }
    .hn-exc { -webkit-line-clamp: 1; }
}

/* Тач: hover «залипает» после тапа */
@media (hover: none) {
    .news-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    .news-card:hover .nc-media-img { transform: none; }
    .hn-item:hover {
        transform: none;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.019);
    }
    .hn-item:hover .hn-thumb img { transform: none; }
}
