/* ================== БЛОК 2 / НОВОСТИ ================== */
.news {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 100px 24px 120px;
    background: transparent;
    border-top: none;
    box-shadow: none;
    clip-path: none;
    isolation: isolate;
    overflow: hidden;
}

/* Тонкая верхняя разделительная полоска */
.news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
    display: block;
}

.news::after {
    display: none;
}

/* Eyebrow-метка над заголовком секции */
.section-head {
    max-width: 1100px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.news .section-head .news-title,
.gallery .section-head .gallery-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #fff;
    text-shadow: none;
    text-align: left;
    position: relative;
    padding-top: 0;
}

/* Eyebrow: маленькая mono-метка над заголовком */
.news .news-title::before {
    content: none;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

/* ================== СЛАЙДЕР ================== */
.news-slider {
    position: relative;
    margin: 0 auto;
    max-width: 1180px;
    overflow: hidden;
    border-radius: var(--r-xl);
}

.news-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: default;
    gap: 0 !important;
    padding: 0 !important;
    scrollbar-width: none;
}

.news-track::-webkit-scrollbar {
    display: none !important;
}

.news-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    scroll-snap-align: center;
    display: block;
    padding: 6px 4px;
}

.news-card-inner {
    position: relative;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
    gap: 40px;
    min-height: 420px;
    padding: 36px;
    border-radius: var(--r-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--line);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    isolation: isolate;
}

/* Лёгкая внутренняя радиальная подсветка сверху-слева */
.news-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 0% 0%, rgba(212, 175, 55, 0.16), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.news-card-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 100% 100%, rgba(180, 130, 70, 0.16), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.news-card:hover .news-card-inner {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.news-copy {
    position: relative;
    z-index: 1;
    padding-right: 12px;
}

.news-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-3);
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.30);
    border-radius: var(--r-pill);
    transition: all 0.25s ease;
}

.news-card:hover .news-kicker {
    background: rgba(212, 175, 55, 0.16);
    border-color: rgba(212, 175, 55, 0.50);
}

.news-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    max-width: 520px;
    text-shadow: none;
}

.news-copy p {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 28px;
    font-style: normal;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    height: auto;
    padding: 11px 22px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    background: linear-gradient(180deg, #f5e8d4, #d4c4a8);
    border: 1px solid rgba(120, 90, 50, 0.45);
    border-radius: var(--r-pill);
    clip-path: none;
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 248, 230, 0.55);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    text-transform: none;
}

.news-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.news-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #fff8e6, #e8d5a8);
    border-color: rgba(120, 90, 50, 0.65);
    color: #1a120c;
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 248, 230, 0.7),
        0 0 0 4px rgba(212, 175, 55, 0.20);
}

.news-link:hover::after {
    transform: translateX(3px);
}

.news-media {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.news-media::before {
    content: "";
    position: absolute;
    inset: 8% 8% 8% 8%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22), rgba(180, 130, 70, 0.12), transparent 70%);
    filter: blur(36px);
    pointer-events: none;
    z-index: 0;
}

.news-media img {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 340px;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    clip-path: none;
    filter: brightness(0.95) contrast(1.05) saturate(1);
    transition: transform 0.45s ease, filter 0.45s ease;
    z-index: 1;
}

.news-card:hover .news-media img {
    transform: translateY(-2px);
    filter: brightness(1.02) contrast(1.06) saturate(1.05);
}

/* ================== ТОЧКИ-НАВИГАЦИЯ ================== */
.news-btn,
.gallery-btn {
    display: none !important;
}

.news-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 28px 0 0;
    min-height: 16px;
}

.news-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--line-2);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, width 0.25s ease;
}

.news-dot:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--line-strong);
    transform: scale(1.15);
}

.news-dot.active {
    width: 28px;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--accent), var(--accent-3));
    border-color: transparent;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.6);
}

@media (max-width: 900px) {
    .news {
        padding: 70px 16px 80px;
    }

    .news-card-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px;
        min-height: auto;
    }

    .news-copy {
        padding-right: 0;
    }

    .news-media img {
        height: 240px;
    }
}

/* Hero subtitle fixed serif font */
.hero .subtitle {
  font-family: Georgia, "Times New Roman", serif !important;
}
