
    /* ===== ТИПОГРАФИКА ===== */
    /* Элегантное оформление текстового контента */
    
    .prose-corriente {
        --corriente-font-serif: 'Georgia', 'Times New Roman', serif;
        --corriente-font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
        --corriente-color-soft: #4b5563;
        --corriente-color-strong: #111827;
        --corriente-color-accent: #000000;
        --corriente-color-muted: #6b7280;
        --corriente-line-height: 1.75;
        --corriente-letter-spacing: 0.01em;
    }

    /* Основные настройки */
    .prose-corriente {
        font-size: 1.125rem;
        line-height: var(--corriente-line-height);
        color: var(--corriente-color-strong);
        letter-spacing: var(--corriente-letter-spacing);
        font-feature-settings: "kern", "liga", "clig", "calt";
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Заголовки */
    .prose-corriente h1 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
        color: #000000;
        border-bottom: 2px solid #f3f4f6;
        padding-bottom: 1rem;
    }

    .prose-corriente h2 {
        font-size: 1.875rem;
        font-weight: 700;
        line-height: 1.3;
        margin-top: 3rem;
        margin-bottom: 1.25rem;
        letter-spacing: -0.01em;
        color: #000000;
        position: relative;
    }
    
    .prose-corriente h2::before {
        content: "§";
        position: absolute;
        left: -1.5rem;
        color: #d1d5db;
        font-weight: 400;
        font-size: 1.25rem;
        opacity: 0.5;
    }

    .prose-corriente h3 {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.4;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        color: #000000;
    }

    .prose-corriente h4 {
        font-size: 1.25rem;
        font-weight: 600;
        line-height: 1.5;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        color: #000000;
        font-variant-caps: small-caps;
        letter-spacing: 0.02em;
    }

    /* Абзацы */
    .prose-corriente p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        color: #374151;
        orphans: 3;
        widows: 3;
    }

    .prose-corriente p:first-of-type {
        font-size: 1.25rem;
        color: #1f2937;
        font-weight: 400;
        line-height: 1.7;
    }

    .prose-corriiente p:first-of-type::first-letter {
        font-size: 3.5rem;
        float: left;
        line-height: 0.8;
        margin-right: 0.75rem;
        color: #000000;
        font-weight: 700;
        font-family: var(--corriente-font-serif);
    }

    /* Списки */
    .prose-corriente ul,
    .prose-corriente ol {
        margin: 1.5rem 0;
        padding-left: 2rem;
        color: #374151;
    }

    .prose-corriente ul {
        list-style-type: none;
    }

    .prose-corriente ul li {
        position: relative;
        margin-bottom: 0.75rem;
        padding-left: 0.5rem;
    }

    .prose-corriente ul li::before {
        content: "—";
        position: absolute;
        left: -1.25rem;
        color: #9ca3af;
    }

    .prose-corriente ol {
        list-style-type: none;
        counter-reset: custom-counter;
    }

    .prose-corriente ol li {
        counter-increment: custom-counter;
        position: relative;
        margin-bottom: 0.75rem;
        padding-left: 0.5rem;
    }

    .prose-corriente ol li::before {
        content: counter(custom-counter) ".";
        position: absolute;
        left: -2rem;
        width: 1.5rem;
        text-align: right;
        color: #000000;
        font-weight: 500;
    }

    /* Цитаты */
    .prose-corriente blockquote {
        border-left: 4px solid #000000;
        padding: 0.5rem 0 0.5rem 2rem;
        margin: 2rem 0;
        font-style: normal;
        background: linear-gradient(to right, #fafafa, transparent);
        color: #1f2937;
        font-size: 1.125rem;
        border-radius: 0 4px 4px 0;
    }

    .prose-corriente blockquote p {
        margin-bottom: 0.5rem;
        font-style: italic;
        color: #1f2937;
    }

    .prose-corriente blockquote p:last-child {
        margin-bottom: 0;
    }

    .prose-corriente blockquote cite {
        display: block;
        margin-top: 1rem;
        font-size: 0.875rem;
        font-style: normal;
        color: #6b7280;
    }

    .prose-corriente blockquote cite::before {
        content: "— ";
    }

    /* Ссылки */
    .prose-corriente a {
        color: #000000;
        text-decoration: none;
        border-bottom: 1px solid #d1d5db;
        transition: border-color 0.2s ease;
    }

    .prose-corriente a:hover {
        border-bottom-color: #000000;
    }

    /* Код */
    .prose-corriente code {
        font-family: var(--corriente-font-mono);
        font-size: 0.875em;
        background-color: #f3f4f6;
        padding: 0.2em 0.4em;
        border-radius: 0.25rem;
        color: #000000;
        border: 1px solid #e5e7eb;
    }

    .prose-corriente pre {
        background-color: #f8fafc;
        padding: 1.25rem;
        border-radius: 0.5rem;
        overflow-x: auto;
        border: 1px solid #e2e8f0;
        margin: 2rem 0;
    }

    .prose-corriente pre code {
        background-color: transparent;
        border: none;
        padding: 0;
        color: #334155;
        font-size: 0.875rem;
        line-height: 1.7;
    }

    /* Выделение */
    .prose-corriente strong {
        color: #000000;
        font-weight: 600;
    }

    .prose-corriente em {
        font-style: italic;
        color: #1f2937;
    }

    /* Разделители */
    .prose-corriente hr {
        border: none;
        height: 2px;
        background: linear-gradient(to right, transparent, #e5e7eb, transparent);
        margin: 3rem 0;
        width: 100%;
    }

    /* Таблицы */
    .prose-corriente table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        font-size: 0.9375rem;
    }

    .prose-corriente th {
        background-color: #f9fafb;
        font-weight: 600;
        text-align: left;
        padding: 0.75rem 1rem;
        border: 1px solid #e5e7eb;
        color: #000000;
    }

    .prose-corriente td {
        padding: 0.75rem 1rem;
        border: 1px solid #e5e7eb;
        color: #374151;
    }

    .prose-corriente tr:nth-child(even) {
        background-color: #f9fafb;
    }

    /* Изображения */
    .prose-corriente img {
        border-radius: 0.5rem;
        margin: 2rem 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .prose-corriente figure {
        margin: 2rem 0;
    }

    .prose-corriente figcaption {
        text-align: center;
        font-size: 0.875rem;
        color: #6b7280;
        margin-top: 0.75rem;
        font-style: italic;
    }

    /* Выносные элементы */
    .prose-corriente .pull-quote {
        font-size: 1.5rem;
        line-height: 1.4;
        color: #000000;
        font-weight: 500;
        margin: 2.5rem 0;
        padding: 0 2rem;
        text-align: center;
        font-family: var(--corriente-font-serif);
        position: relative;
    }

    .prose-corriente .pull-quote::before {
        content: "“";
        font-size: 4rem;
        position: absolute;
        left: -0.5rem;
        top: -1rem;
        color: #e5e7eb;
        font-family: var(--corriente-font-serif);
    }

    .prose-corriente .pull-quote::after {
        content: "”";
        font-size: 4rem;
        position: absolute;
        right: -0.5rem;
        bottom: -2rem;
        color: #e5e7eb;
        font-family: var(--corriente-font-serif);
    }

    /* Сноски */
    .prose-corriente .footnote {
        font-size: 0.875rem;
        color: #6b7280;
        border-top: 1px dashed #d1d5db;
        margin-top: 1rem;
        padding-top: 0.5rem;
    }

    .prose-corriente .footnote-ref {
        font-size: 0.75rem;
        vertical-align: super;
        line-height: 1;
    }

    /* Адаптивность */
    @media (max-width: 640px) {
        .prose-corriente {
            font-size: 1rem;
        }
        
        .prose-corriente h1 {
            font-size: 2rem;
        }
        
        .prose-corriente h2 {
            font-size: 1.5rem;
        }
        
        .prose-corriente h2::before {
            display: none;
        }
        
        .prose-corriente h3 {
            font-size: 1.25rem;
        }
        
        .prose-corriente p:first-of-type::first-letter {
            font-size: 2.5rem;
        }
        
        .prose-corriente blockquote {
            padding-left: 1rem;
        }
        
        .prose-corriente .pull-quote {
            font-size: 1.25rem;
            padding: 0 1rem;
        }
    }

    /* Печатная версия */
    @media print {
        .prose-corriente {
            font-size: 12pt;
            line-height: 1.5;
            color: #000;
        }
        
        .prose-corriente a {
            text-decoration: underline;
            border-bottom: none;
        }
        
        .prose-corriente pre,
        .prose-corriente blockquote {
            border: 1px solid #999;
            background: none;
        }
    }

    /* Анимация появления */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Прогресс чтения */
    .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, #000000, #374151);
        z-index: 1000;
        transition: width 0.1s ease;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }


	/* Кастомные стили */
        .news-card {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 3px solid transparent;
        }
        
        .news-card:hover {
            border-left-color: #ef4444;
            background-color: #fafafa;
        }
        
        .media-badge {
            transition: transform 0.2s ease;
        }
        
        .media-badge:hover {
            transform: scale(1.05);
        }
        
        /* Активная навигация */
        .nav-link.active {
            color: #000000;
            font-weight: 600;
            position: relative;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #000000;
        }
        
        /* Анимация появления новостей */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .news-enter {
            animation: fadeInUp 0.3s ease-out forwards;
        }
        
        /* Стили для скроллбара */
        ::-webkit-scrollbar {
            width: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #d1d1d1;
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #a1a1a1;
        }
		
		 .article-content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #000;
        }
        
        .article-content p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #374151;
        }
        
        .article-content ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            list-style-type: disc;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .article-content blockquote {
            border-left: 4px solid #000;
            padding-left: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #4b5563;
        }
        
        /* Стили для скроллбара */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
		
		
		/* Стили для одиночной записи */
.max-w-article {
    max-width: 800px;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    border-left: 4px solid #000;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #4b5563;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Анимации */
.news-card {
    transition: all 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}