/* SKT per-page CSS: single-news */

/* from single-news.html */
body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f8f9fa;
            padding-top: 85px; 
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- НАВИГАЦИЯ --- */
        .navbar-custom {
            background-color: #ffffff;
            transition: all 0.3s ease-in-out;
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .logo-icon {
            width: 46px; height: 46px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 1rem; color: white;
            background: linear-gradient(135deg, #4b6fb8 0%, #c14545 100%);
        }
        .logo-title { font-size: 1.1rem; font-weight: 800; line-height: 1.1; color: #0b4c9e; }
        .logo-subtitle { font-size: 0.7rem; font-weight: 500; color: #6c757d; }
        .nav-link { font-size: 0.95rem; font-weight: 600; color: #343a40 !important; }
        .nav-link:hover { color: #0b4c9e !important; }

        /* --- ШАПКА СТАТЬИ --- */
        .article-header {
            padding: 3rem 0 2rem 0;
            background-color: #ffffff;
        }
        .breadcrumb-custom {
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
        }
        .breadcrumb-custom a { color: #64748b; text-decoration: none; }
        .breadcrumb-custom a:hover { color: #0b4c9e; }
        
        .article-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #64748b;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .article-meta-badge {
            background: #d6322b;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- ФЕАТУРНОЕ (ГЛАВНОЕ) ИЗОБРАЖЕНИЕ --- */
        .featured-image-wrapper {
            width: 100%;
            height: 500px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 3rem;
            background-color: #e2e8f0;
        }
        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- ТЕКСТ СТАТЬИ --- */
        .article-content-wrapper {
            background-color: #ffffff;
            padding-bottom: 4rem;
        }
        .article-body {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #334155;
        }
        .article-body p {
            margin-bottom: 1.5rem;
        }
        .article-body h3 {
            font-weight: 800;
            color: #0f172a;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        .article-body ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        
        /* Цитата во врезке */
        .article-quote {
            background: #f8fafc;
            border-left: 4px solid #0b4c9e;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 12px 12px 0;
            font-size: 1.25rem;
            font-style: italic;
            font-weight: 600;
            color: #1e293b;
            position: relative;
        }
        .article-quote::before {
            content: '\201C';
            font-size: 4rem;
            color: rgba(11, 76, 158, 0.1);
            position: absolute;
            top: -10px;
            left: 15px;
            font-family: Georgia, serif;
        }

        /* Блок поделиться */
        .share-block {
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            padding: 1.5rem 0;
            margin-top: 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .share-title { font-weight: 700; color: #0f172a; margin: 0; }
        .share-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px; height: 40px;
            border-radius: 50%;
            background-color: #f1f5f9;
            color: #475569;
            text-decoration: none;
            transition: all 0.2s;
            margin-left: 0.5rem;
        }
        .share-btn:hover { background-color: #0b4c9e; color: #ffffff; transform: translateY(-2px); }

        /* --- ПОХОЖИЕ НОВОСТИ --- */
        .related-news {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        .related-title {
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 2.5rem;
            font-size: 2rem;
            letter-spacing: -0.5px;
        }
        
        /* Стили карточек (переиспользованы из news.html) */
        .news-card {
            background: #ffffff; border-radius: 16px; overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex; flex-direction: column; height: 100%; border: 1px solid #f1f5f9;
        }
        .news-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); border-color: #e2e8f0; }
        .news-img-wrapper { position: relative; height: 200px; overflow: hidden; }
        .news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .news-card:hover .news-img { transform: scale(1.05); }
        .news-badge { position: absolute; top: 15px; left: 15px; background: #0b4c9e; color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 2; }
        .news-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
        .news-date { color: #64748b; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; }
        .news-date i { margin-right: 0.4rem; color: #a1a1aa; }
        .news-title-card { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin-bottom: 1rem; line-height: 1.3; }
        .news-title-card a { color: inherit; text-decoration: none; }
        .news-title-card a:hover { color: #0b4c9e; }
        .news-read-more { margin-top: auto; font-weight: 700; color: #0b4c9e; text-decoration: none; font-size: 0.9rem; }
        .news-read-more:hover { color: #d6322b; }

        @media (max-width: 768px) {
            .article-title { font-size: 1.8rem; }
            .featured-image-wrapper { height: 300px; margin-bottom: 2rem; }
            .article-quote { font-size: 1.1rem; padding: 1.5rem; }
            .share-block { flex-direction: column; gap: 1rem; align-items: flex-start; }
        }
