  /* ===== RESET & БАЗА ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', 'Montserrat', sans-serif; background: #f5f3f0; color: #1a1a1a; line-height: 1.5; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        img, video { max-width: 100%; height: auto; display: block; }
        /* ===== ЦВЕТА ===== */
        :root { --red: #d4202b; --red-dark: #a3161f; --black: #0b0b0b; --white: #ffffff; --gray-light: #f0eeeb; --gray-mid: #b0a9a3; --shadow: 0 8px 24px rgba(0,0,0,0.06); --radius: 18px; --transition: 0.25s cubic-bezier(0.3, 0, 0, 1); }
        /* ===== ХЕДЕР (фиксированный) ===== */
        .header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid rgba(0,0,0,0.04); padding: 10px 20px; min-height: 60px; }
        .flex { display: flex;}
        .header .flex { align-items: center; justify-content: space-between; flex-wrap: wrap;}
        .header .container {padding: 0;}
        .header-actions {display: none;}
        .logo { font-weight: 700; font-size: 1.7rem; letter-spacing: -0.5px; background: linear-gradient(135deg, var(--red), #b01020); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: flex; align-items: center; gap: 4px; }
        .logo i { -webkit-text-fill-color: var(--red); font-size: 1.5rem; }
        .nav { display: flex; gap: 18px; font-weight: 500; font-size: 0.95rem; flex-wrap: wrap; }
        .nav a { padding: 6px 0; border-bottom: 2px solid transparent; transition: var(--transition); color: #2d2d2d; }
        .ignore-select {grid-row-end: span 1; grid-column-start: 1; grid-column-end: -1;}
        /* ===== КНОПКА "ЗАГРУЗИТЬ ЕЩЕ" ===== */
.bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 20px;
    padding: 10px 0;
    width: 100%;
    position: relative;
}

/* Декоративная линия по бокам */
.bottom-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(176, 169, 163, 0.25), transparent);
    z-index: 0;
}

/* Контейнер кнопки */
.nav-load {
    position: relative;
    z-index: 1;
    background: #f5f3f0;
    padding: 0 24px;
    display: inline-block;
}

/* Сама ссылка */
.nav-load a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 44px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    cursor: pointer;
    position: relative;
    letter-spacing: 0.2px;
    min-width: 180px;
    text-decoration: none;
}

/* Добавляем иконку через псевдоэлемент (без изменения HTML) */
.nav-load a::before {
    content: "↻";
    font-size: 1.2rem;
    transition: transform 0.5s ease;
    display: inline-block;
    font-weight: 400;
    line-height: 1;
}

/* Эффект при наведении */
.nav-load a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 32, 43, 0.15);
    border-color: rgba(212, 32, 43, 0.15);
    color: #d4202b;
}

.nav-load a:hover::before {
    transform: rotate(180deg);
}

/* Эффект при нажатии */
.nav-load a:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(212, 32, 43, 0.08);
}

/* Фокус для доступности */
.nav-load a:focus-visible {
    outline: 3px solid #d4202b;
    outline-offset: 3px;
}

/* Адаптив для планшетов */
@media (max-width: 768px) {
    .bottom-nav {
        margin: 30px auto 15px;
        padding: 8px 0;
    }
    
    .nav-load {
        padding: 0 16px;
    }
    
    .nav-load a {
        padding: 13px 32px;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .nav-load a::before {
        font-size: 1rem;
    }
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
    .bottom-nav {
        margin: 25px auto 10px;
        padding: 6px 0;
    }
    
    .nav-load {
        padding: 0 12px;
        background: #f5f3f0;
    }
    
    .nav-load a {
        padding: 11px 24px;
        font-size: 0.82rem;
        min-width: 120px;
        border-radius: 40px;
        gap: 8px;
    }
    
    .nav-load a::before {
        font-size: 0.9rem;
    }
    
    /* Убираем декоративную линию на совсем маленьких экранах */
    .bottom-nav::before {
        display: none;
    }
}

/* Альтернатива для очень маленьких экранов */
@media (max-width: 380px) {
    .nav-load a {
        padding: 10px 18px;
        font-size: 0.75rem;
        min-width: 100px;
    }
}
        .nav a:hover, .nav a.active {
            border-bottom-color: var(--red);
            color: var(--black);
        }
        .nav a i {
            margin-right: 5px;
            font-size: 0.9rem;
            color: var(--red);
        }
        .header-actions .icon-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: #2d2d2d;
            cursor: pointer;
            transition: var(--transition);
        }
        .header-actions .icon-btn:hover {
            color: var(--red);
        }
        /* ===== ГЛАВНЫЙ КОНТЕЙНЕР ===== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 18px 60px;
        }
        /* ===== ХЛЕБНЫЕ КРОШКИ ===== */
        .breadcrumb {
            font-size: 0.8rem;
            color: var(--gray-mid);
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb span::after {
            content: " / ";
            margin: 0 4px;
            color: #ccc;
        }
        .breadcrumb span:last-child::after {
            content: "";
        }
        .breadcrumb a:hover {
            color: var(--red);
        }
        /* ===== БЛОК «ПОСЛЕДНИЙ ВЫПУСК» ===== */
        .hero-episode {
            background: var(--black);
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            box-shadow: var(--shadow);
            color: var(--white);
        }
        .hero-episode .video-preview {
            background: #1e1e1e;
            min-height: 240px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-episode .video-preview i {
            font-size: 4rem;
            color: var(--white);
            opacity: 0.7;
            transition: var(--transition);
            cursor: pointer;
        }
        .hero-episode .video-preview i:hover {
            opacity: 1;
            transform: scale(1.05);
        }
        .hero-episode .hero-content {
            padding: 28px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-episode .badge {
            background: var(--red);
            display: inline-block;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            width: fit-content;
            margin-bottom: 12px;
        }
        .hero-episode h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .hero-episode .meta {
            font-size: 0.9rem;
            color: #b0b0b0;
            margin-bottom: 16px;
        }
        .hero-episode .desc {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-bottom: 20px;
            max-width: 90%;
        }
        .btn-primary {
            background: var(--red);
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(212, 32, 43, 0.25);
        }
        .btn-primary:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(212, 32, 43, 0.3);
        }
        .btn-primary i {
            font-size: 1rem;
        }
        /* ===== СЕТКИ ===== */
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 40px 0 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title i {
            color: var(--red);
            font-size: 1.3rem;
        }
        .grid-episodes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .card-ep {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid rgba(0,0,0,0.02);
        }
        .card-ep:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 32px rgba(0,0,0,0.08);
        }
        .card-ep .thumb { background-color: #161615; height: 130px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
        .card-ep .thumb img {    position: absolute;height: 100%;object-fit: cover;width: 100%;}
        .card-ep:hover img {opacity: 0.4;}
        .card-ep:hover .thumb i { z-index: 3;color: red; }
        .card-ep .info { padding: 14px 16px 18px; }
        .info {position: relative;}
        .info a::before {content: "";position: absolute;top: 0;right: 0;width: 100%;height: 100%;}
        .card-ep .info .title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-ep .info .date {
            font-size: 0.75rem;
            color: var(--gray-mid);
            margin-bottom: 6px;
        }
        .card-ep .info .desc-hover {
            font-size: 0.8rem;
            color: #555;
          
            transition: var(--transition);
            overflow: hidden;
        }
       
        /* ===== НОВОСТИ (карусель) ===== */
        .news-carousel {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding: 8px 2px 18px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }
        .news-carousel::-webkit-scrollbar {
            height: 4px;
        }
        .news-carousel::-webkit-scrollbar-thumb {
            background: var(--red);
            border-radius: 12px;
        }
        .news-item {
            flex: 0 0 260px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            scroll-snap-align: start;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #f0eeeb;
        }
        .news-item:hover {
            transform: scale(1.01);
        }
        .news-item .img {
            height: 110px;
            background: #bbb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }
        .news-item .body {
            padding: 14px 16px 18px;
        }
        .news-item .body h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-item .body .date {
            font-size: 0.7rem;
            color: var(--gray-mid);
        }
        /* ===== ФИЛЬТРЫ (демо) ===== */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 24px;
        }
        .filter-bar .pill {
            background: white;
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid #ddd;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        .filter-bar .pill:hover, .filter-bar .pill.active {
            background: var(--red);
            color: white;
            border-color: var(--red);
        }
        /* ===== ПОДВАЛ ===== */
        .footer {
            background: #0b0b0b;
            color: #9a9a9a;
            padding: 30px 20px 20px;
            margin-top: 50px;
            border-radius: var(--radius) var(--radius) 0 0;
        }
        .footer .inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .footer .social a {
            color: #ccc;
            margin-left: 18px;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .footer .social a:hover {
            color: var(--red);
        }
        .footer .copy {
            font-size: 0.8rem;
        }
        /* ===== АДАПТИВ ===== */
        @media (max-width: 700px) {
            .hero-episode {
                grid-template-columns: 1fr;
            }
            .hero-episode .hero-content {
                padding: 20px;
            }
            .hero-episode h2 {
                font-size: 1.4rem;
            }
            .nav {
                gap: 10px;
                font-size: 0.8rem;
                margin: 8px 0;
            }
            .grid-episodes {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 14px;
            }
            .news-item {
                flex: 0 0 200px;
            }
            .header {
                padding: 8px 14px;
            }
            .logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .grid-episodes {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-episode .desc {
                max-width: 100%;
            }
            .btn-primary {
                width: 100%;
                justify-content: center;
            }
            .filter-bar .pill {
                font-size: 0.7rem;
                padding: 6px 14px;
            }
        }
        /* доступность: фокус */
        a:focus-visible, button:focus-visible, .pill:focus-visible {
            outline: 3px solid var(--red);
            outline-offset: 2px;
        }
        /* ===== демо-плейсхолдеры ===== */
        .bg-red-light { background: #d4202b; }
        .bg-pink { background: #c44a5a; }
        .bg-dark { background: #2a2a2a; }
        .bg-orange { background: #b85a2a; }
        .bg-teal { background: #206a6a; }
        .text-shadow { text-shadow: 0 2px 6px rgba(0,0,0,0.2); }


         .video-block {
        background: #ffffff;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 40px;
        border: 1px solid rgba(0,0,0,0.02);
    }

    .video-wrapper {
        background: #0b0b0b;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-wrapper iframe {
        width: 100%;
        display: block;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        background: #1a1a1a;
    }

    .video-meta {
        padding: 24px 28px 28px;
    }

    .video-meta .badge {
        background: var(--red);
        display: inline-block;
        padding: 4px 14px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        color: white;
        margin-bottom: 12px;
    }

    .video-meta .badge i {
        margin-right: 6px;
        font-size: 0.65rem;
    }

    .video-title {
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.2;
        color: #0b0b0b;
    }

    .video-info-line {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        font-size: 0.85rem;
        color: var(--gray-mid);
        margin-bottom: 14px;
    }

    .video-info-line i {
        margin-right: 5px;
        color: var(--red);
        width: 16px;
    }

    .video-desc {
        font-size: 0.98rem;
        line-height: 1.6;
        color: #2d2d2d;
        max-width: 90%;
        opacity: 0.9;
        border-left: 3px solid var(--red);
        padding-left: 16px;
    }
/* ===== SEO-БЛОК С ОПИСАНИЕМ ===== */
.seo-block {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 32px 36px;
    margin: 40px 0 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

.seo-block .seo-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-block .seo-title i {
    color: var(--red);
    font-size: 1.4rem;
}

.seo-block .seo-content {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #2d2d2d;
}

.seo-block .seo-content p {
    margin-bottom: 14px;
}

.seo-block .seo-content p:last-child {
    margin-bottom: 0;
}

.seo-block .seo-content strong {
    color: var(--black);
    font-weight: 600;
}

.seo-block .seo-content .highlight {
    color: var(--red);
    font-weight: 600;
}

/* Декоративный акцент */
.seo-block .seo-divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    border-radius: 4px;
    margin-bottom: 18px;
}

/* Адаптив */
@media (max-width: 700px) {
    .seo-block {
        padding: 22px 18px;
        margin: 30px 0 20px;
    }
    .seo-block .seo-title {
        font-size: 1.3rem;
    }
    .seo-block .seo-content {
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .seo-block {
        padding: 18px 14px;
        border-radius: 12px;
    }
    .seo-block .seo-title {
        font-size: 1.1rem;
        gap: 8px;
    }
    .seo-block .seo-title i {
        font-size: 1.1rem;
    }
    .seo-block .seo-content {
        font-size: 0.88rem;
        line-height: 1.7;
    }
}

/* ===== СТРАНИЦА "О ШОУ" ===== */

/* Основной блок */
.about-show {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 40px 44px;
    margin: 30px 0 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Заголовок с акцентом */
.about-show .about-header {
    margin-bottom: 28px;
}

.about-show .about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-show .about-title i {
    color: var(--red);
    font-size: 1.8rem;
}

.about-show .about-subtitle {
    font-size: 0.95rem;
    color: var(--gray-mid);
    margin-top: 6px;
    padding-left: 4px;
}

/* Декоративная линия под заголовком */
.about-show .about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #b01020);
    border-radius: 4px;
    margin-bottom: 24px;
}

/* Сетка фактов */
.about-show .facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0 30px;
    background: var(--gray-light);
    padding: 20px 24px;
    border-radius: var(--radius);
}

.about-show .fact-item {
    display: flex;
    flex-direction: column;
}

.about-show .fact-item .fact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-mid);
    font-weight: 600;
}

.about-show .fact-item .fact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 2px;
}

/* Контент с текстом */
.about-show .about-content {
    font-size: 1rem;
    line-height: 1.9;
    color: #2d2d2d;
}

.about-show .about-content p {
    margin-bottom: 16px;
}

.about-show .about-content p:last-child {
    margin-bottom: 0;
}

.about-show .about-content strong {
    color: var(--black);
    font-weight: 600;
}

.about-show .about-content .highlight {
    color: var(--red);
    font-weight: 600;
}

.about-show .about-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-show .about-content h2 i {
    color: var(--red);
    font-size: 1.1rem;
}

.about-show .about-content h2:first-of-type {
    margin-top: 0;
}

.about-show .about-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 20px 0 8px;
    color: var(--black);
}

/* Список ведущих и участников */
.about-show .about-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 8px 0 16px;
}

.about-show .about-content ul li {
    font-size: 0.92rem;
    padding: 4px 0;
    position: relative;
    padding-left: 18px;
}

.about-show .about-content ul li::before {
    content: "•";
    color: var(--red);
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* Цитата или выделенный блок */
.about-show .about-content .quote-block {
    background: var(--gray-light);
    border-left: 4px solid var(--red);
    padding: 16px 22px;
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: #3d3d3d;
}

.about-show .about-content .quote-block cite {
    display: block;
    margin-top: 6px;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gray-mid);
}

/* Адаптив */
@media (max-width: 700px) {
    .about-show {
        padding: 24px 18px;
        margin: 20px 0 30px;
    }
    .about-show .about-title {
        font-size: 1.5rem;
    }
    .about-show .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
        gap: 12px;
    }
    .about-show .about-content {
        font-size: 0.93rem;
    }
    .about-show .about-content h2 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .about-show {
        padding: 18px 14px;
        border-radius: 12px;
    }
    .about-show .about-title {
        font-size: 1.25rem;
        gap: 10px;
    }
    .about-show .about-title i {
        font-size: 1.3rem;
    }
    .about-show .facts-grid {
        grid-template-columns: 1fr 1fr;
        padding: 12px 14px;
        gap: 8px;
    }
    .about-show .fact-item .fact-value {
        font-size: 0.85rem;
    }
    .about-show .about-content {
        font-size: 0.88rem;
        line-height: 1.8;
    }
    .about-show .about-content h2 {
        font-size: 1.05rem;
    }
    .about-show .about-content ul li {
        font-size: 0.85rem;
    }
}


/* ===== ФОРМА КОММЕНТАРИЕВ ===== */

.ac-form {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 28px 32px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    margin: 30px 0 20px;
}

.ac-form__header {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.ac-form__input {
    font-family: 'Inter', 'Montserrat', sans-serif;
    padding: 12px 18px;
    border: 1px solid #e8e5e1;
    border-radius: 12px;
    font-size: 0.92rem;
    background: var(--gray-light);
    transition: var(--transition);
    outline: none;
    color: #1a1a1a;
    min-width: 0;
}

.ac-form__input:focus {
    border-color: var(--red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 32, 43, 0.08);
}

.ac-form__input::placeholder {
    color: var(--gray-mid);
}

.flex-grow-1 {
    flex: 1 1 180px;
}

/* Редактор (текстовое поле) */
.ac-form__editor {
    margin-bottom: 16px;
}

.ac-form__editor textarea {
    width: 100%;
    min-height: 110px;
    padding: 14px 18px;
    border: 1px solid #e8e5e1;
    border-radius: 12px;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 0.92rem;
    background: var(--gray-light);
    transition: var(--transition);
    outline: none;
    resize: vertical;
    color: #1a1a1a;
    line-height: 1.6;
}

.ac-form__editor textarea:focus {
    border-color: var(--red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 32, 43, 0.08);
}

.ac-form__editor textarea::placeholder {
    color: var(--gray-mid);
}

/* Защита от спама */
.message-info {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 4px 0 16px;
}

.form__row {
    margin-bottom: 12px;
}

.form__row:last-child {
    margin-bottom: 0;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #2d2d2d;
}

.form__label--important::after {
    content: " *";
    color: var(--red);
    font-weight: 700;
}

.form__sec-code {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.form__sec-code .form__input {
    flex: 1 1 160px;
}

.form__sec-code img {
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
}

/* Кнопка отправки */
.ac-form__bottom {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.ac-form__btn {
    background: var(--red);
    border: none;
    padding: 13px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(212, 32, 43, 0.2);
    font-family: 'Inter', 'Montserrat', sans-serif;
}

.ac-form__btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 32, 43, 0.3);
}

.ac-form__btn:active {
    transform: scale(0.96);
}

.ac-form__btn:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 700px) {
    .ac-form {
        padding: 20px 18px 18px;
    }
    
    .ac-form__header {
        flex-direction: column;
        gap: 10px;
    }
    
    .ac-form__input {
        padding: 10px 14px;
        font-size: 0.88rem;
        flex: 1 1 auto;
        width: 100%;
    }
    
    .flex-grow-1 {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .ac-form__btn {
        padding: 11px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .ac-form__editor textarea {
        min-height: 90px;
        font-size: 0.88rem;
    }
    
    .message-info {
        padding: 12px 14px;
    }
    
    .form__sec-code {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form__sec-code img {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .ac-form {
        padding: 16px 12px 14px;
        border-radius: 12px;
        margin: 20px 0 12px;
    }
    
    .ac-form__input {
        font-size: 0.84rem;
        padding: 9px 12px;
        border-radius: 10px;
    }
    
    .ac-form__editor textarea {
        font-size: 0.84rem;
        padding: 10px 14px;
        min-height: 80px;
        border-radius: 10px;
    }
    
    .ac-form__btn {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .form__label {
        font-size: 0.8rem;
    }
    
    .form__sec-code .form__input {
        flex: 1 1 auto;
    }
}

/* ===== УТИЛИТЫ ===== */
.d-flex {
    display: flex;
}

.ai-center {
    align-items: center;
}

.p-relative {
    position: relative;
}

.d-none {
    display: none;
}


/* ===== БЛОК КОММЕНТАРИЕВ ===== */

.news-content {
    margin: 20px 0 30px;
}

.blockcomment {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    align-items: flex-start;
}

.blockcomment:last-child {
    border-bottom: none;
}

/* Аватар */
.js-comm-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #b01020);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 32, 43, 0.2);
    overflow: hidden;
}

.js-comm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Тело комментария */
.comm {
    flex: 1;
    min-width: 0;
}

/* Шапка комментария */
.comheader {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.comautor {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

.comautor a {
    color: var(--black);
    transition: var(--transition);
}

.comautor a:hover {
    color: var(--red);
}

.date {
    font-size: 0.75rem;
    color: var(--gray-mid);
}

/* Текст комментария */
.comm > *:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2d2d2d;
    word-wrap: break-word;
}

.comm > *:last-child p {
    margin-bottom: 8px;
}

.comm > *:last-child p:last-child {
    margin-bottom: 0;
}

.comm > *:last-child a {
    color: var(--red);
    text-decoration: underline;
    transition: var(--transition);
}

.comm > *:last-child a:hover {
    color: var(--red-dark);
}

.comm > *:last-child strong,
.comm > *:last-child b {
    color: var(--black);
}

.comm > *:last-child em,
.comm > *:last-child i {
    color: #555;
}

/* Цитаты в комментариях */
.comm > *:last-child blockquote {
    border-left: 3px solid var(--red);
    padding: 8px 16px;
    margin: 8px 0 12px;
    background: var(--gray-light);
    border-radius: 0 8px 8px 0;
    color: #555;
    font-size: 0.92rem;
}

/* Кнопки действий (ответить, цитировать и т.д.) */
.comm-actions {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.comm-actions button,
.comm-actions a {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: var(--gray-mid);
    cursor: pointer;
    transition: var(--transition);
    padding: 2px 0;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 500;
}

.comm-actions button:hover,
.comm-actions a:hover {
    color: var(--red);
}

.comm-actions button:focus-visible,
.comm-actions a:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Ответы (вложенные комментарии) */
.comm .blockcomment {
    margin-left: 30px;
    padding: 14px 0 0;
    border-bottom: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 14px;
}

.comm .blockcomment .js-comm-avatar {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 700px) {
    .blockcomment {
        gap: 12px;
        padding: 16px 0;
    }

    .js-comm-avatar {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .comautor {
        font-size: 0.88rem;
    }

    .date {
        font-size: 0.7rem;
    }

    .comm > *:last-child {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .comm .blockcomment {
        margin-left: 16px;
        padding-top: 12px;
    }

    .comm .blockcomment .js-comm-avatar {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .blockcomment {
        gap: 10px;
        padding: 12px 0;
    }

    .js-comm-avatar {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .comheader {
        gap: 8px;
    }

    .comautor {
        font-size: 0.82rem;
    }

    .date {
        font-size: 0.65rem;
    }

    .comm > *:last-child {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .comm .blockcomment {
        margin-left: 10px;
        padding-top: 10px;
    }

    .comm .blockcomment .js-comm-avatar {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }

    .comm-actions button,
    .comm-actions a {
        font-size: 0.7rem;
    }
}
/* ===== СТАТИЧЕСКАЯ СТРАНИЦА ===== */

.block.story {
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
    margin: 30px 0 40px;
}

.block.story .wrp {
    padding: 40px 44px;
}

.block.story .head {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.block.story .head .title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin: 0;
}

.block.story .text {
    font-size: 1rem;
    line-height: 1.9;
    color: #2d2d2d;
}

.block.story .text p {
    margin-bottom: 16px;
}

.block.story .text p:last-child {
    margin-bottom: 0;
}

.block.story .text strong,
.block.story .text b {
    color: var(--black);
    font-weight: 600;
}

.block.story .text em,
.block.story .text i {
    color: #555;
}

.block.story .text a {
    color: var(--red);
    text-decoration: underline;
    transition: var(--transition);
}

.block.story .text a:hover {
    color: var(--red-dark);
    text-decoration: none;
}

.block.story .text ul,
.block.story .text ol {
    margin: 10px 0 16px;
    padding-left: 24px;
}

.block.story .text ul li,
.block.story .text ol li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.block.story .text ul li::marker {
    color: var(--red);
}

.block.story .text h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 30px 0 14px;
    color: var(--black);
}

.block.story .text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 22px 0 10px;
    color: var(--black);
}

.block.story .text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 18px 0 8px;
    color: var(--black);
}

.block.story .text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 16px 0;
}

.block.story .text blockquote {
    border-left: 4px solid var(--red);
    padding: 14px 20px;
    margin: 16px 0 20px;
    background: var(--gray-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: #3d3d3d;
}

.block.story .text blockquote p {
    margin-bottom: 4px;
}

.block.story .text blockquote cite {
    display: block;
    margin-top: 6px;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gray-mid);
}

.block.story .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    font-size: 0.92rem;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
}

.block.story .text table th {
    background: var(--black);
    color: #ffffff;
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
}

.block.story .text table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.block.story .text table tr:last-child td {
    border-bottom: none;
}

/* Пагинация для статических страниц */
.static_pages {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.static_pages a,
.static_pages span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.static_pages a {
    background: var(--gray-light);
    color: #2d2d2d;
    border: 1px solid transparent;
}

.static_pages a:hover {
    background: var(--red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 32, 43, 0.2);
}

.static_pages span {
    background: var(--red);
    color: #ffffff;
    cursor: default;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 768px) {
    .block.story .wrp {
        padding: 28px 24px;
    }
    
    .block.story .head .title {
        font-size: 1.5rem;
    }
    
    .block.story .text {
        font-size: 0.95rem;
    }
    
    .block.story .text h2 {
        font-size: 1.2rem;
    }
    
    .block.story .text h3 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .block.story {
        border-radius: 12px;
        margin: 20px 0 30px;
    }
    
    .block.story .wrp {
        padding: 18px 14px;
    }
    
    .block.story .head .title {
        font-size: 1.25rem;
    }
    
    .block.story .head {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .block.story .text {
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .block.story .text h2 {
        font-size: 1.1rem;
        margin: 22px 0 10px;
    }
    
    .block.story .text h3 {
        font-size: 1rem;
    }
    
    .block.story .text ul,
    .block.story .text ol {
        padding-left: 18px;
    }
    
    .block.story .text blockquote {
        padding: 12px 16px;
        font-size: 0.88rem;
    }
    
    .block.story .text table {
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .block.story .text table th,
    .block.story .text table td {
        padding: 6px 10px;
    }
    
    .static_pages a,
    .static_pages span {
        padding: 4px 12px;
        font-size: 0.78rem;
    }
}
/* ===== ФУТЕР СО ССЫЛКАМИ ===== */

.footer .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 24px;
}

.footer .copy {
    font-size: 0.8rem;
    color: #9a9a9a;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}

.footer-links a {
    font-size: 0.8rem;
    color: #9a9a9a;
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.footer-links .sep {
    color: #555;
    font-size: 0.7rem;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 600px) {
    .footer .inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 6px 14px;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
}
