.single-news {
        padding: 40px 0 80px;
        background: var(--background);
        min-height: 100vh;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .news-breadcrumb {
        margin-bottom: 30px;
        font-size: 0.9rem;
        color: var(--text-light);
    }
    
    .news-breadcrumb a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .news-breadcrumb a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }
    
    .news-breadcrumb span {
        color: var(--text-light);
    }
    
    .single-news-content {
        background: var(--card);
        border-radius: 20px;
        padding: 50px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
        max-width: 100%;
    }
    
    .single-news-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid var(--primary-light);
    }
    
    .single-news-header h1 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 20px;
        line-height: 1.3;
        background: linear-gradient(135deg, #21a038 0%, #1a8030 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        max-width: 100%;
    }
    
    .news-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    
    .news-date {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.1rem;
        background: var(--primary-light);
        padding: 10px 25px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .news-date::before {
        content: '📅';
        font-size: 1rem;
    }
    
    .single-news-image {
        margin: 30px 0;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        height: 400px;
    }
    
    .single-news-image img {
        width: 100%;
        height: 100%;
        display: block;
        transition: var(--transition);
        max-width: 100%;
        object-fit: cover;
    }
    
    .single-news-image:hover img {
        transform: scale(1.02);
    }
    
    .single-news-text {
        line-height: 1.7;
        font-size: 1.15rem;
        color: var(--text);
        max-width: 100%;
    }
    
    .news-brief {
        background: var(--primary-light);
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 35px;
        border-left: 4px solid var(--primary);
        max-width: 100%;
    }
    
    .news-brief p {
        margin: 0;
        font-size: 1.3rem;
        color: var(--text);
        line-height: 1.6;
        font-weight: 500;
        max-width: 100%;
    }
    
    .news-fulltext {
        font-size: 1.15rem;
        line-height: 1.8;
        max-width: 100%;
    }
    
    .news-fulltext p {
        margin-bottom: 1.5rem;
        text-align: justify;
        max-width: 100%;
    }
    
    .news-fulltext h2, 
    .news-fulltext h3, 
    .news-fulltext h4 {
        color: var(--text);
        margin: 2rem 0 1rem 0;
        font-weight: 700;
        max-width: 100%;
    }
    
    .news-fulltext h2 {
        font-size: 2rem;
        border-bottom: 2px solid var(--primary-light);
        padding-bottom: 10px;
    }
    
    .news-fulltext h3 {
        font-size: 1.7rem;
    }
    
    .news-fulltext h4 {
        font-size: 1.4rem;
    }
    
    .news-fulltext ul, 
    .news-fulltext ol {
        margin: 1.5rem 0;
        padding-left: 2.5rem;
        max-width: 100%;
    }
    
    .news-fulltext li {
        margin-bottom: 0.5rem;
        max-width: 100%;
    }
    
    .news-fulltext blockquote {
        border-left: 4px solid var(--primary);
        padding: 25px;
        margin: 2rem 0;
        background: var(--primary-light);
        border-radius: 0 10px 10px 0;
        font-style: italic;
        max-width: 100%;
    }
    
    .news-back {
        margin-top: 50px;
        padding-top: 30px;
        border-top: 2px solid var(--border);
        text-align: center;
        max-width: 100%;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 32px;
        background: var(--gradient-primary);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(33, 160, 56, 0.3);
    }
    
    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(33, 160, 56, 0.4);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: none;
    }
    
    .btn-secondary:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(33, 160, 56, 0.3);
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
        .single-news {
            padding: 120px 0 60px;
        }
        
        .container {
            max-width: 100%;
            padding: 0 15px;
        }
        
        .single-news-content {
            padding: 30px 25px;
            border-radius: 15px;
        }
        
        .single-news-header h1 {
            font-size: 2.2rem;
        }
        
        .single-news-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
        }
        
        .single-news-image {
            max-width: 90%;
            height: 300px;
            margin: 20px auto;
        }
        
        .news-brief {
            padding: 20px;
        }
        
        .news-brief p {
            font-size: 1.2rem;
        }
        
        .single-news-text {
            font-size: 1.05rem;
        }
        
        .news-fulltext h2 {
            font-size: 1.7rem;
        }
        
        .news-fulltext h3 {
            font-size: 1.5rem;
        }
        
        .btn {
            padding: 14px 28px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 576px) {
        .single-news {
            padding: 100px 0 40px;
        }
        
        .container {
            padding: 0 10px;
        }
        
        .single-news-content {
            padding: 25px 20px;
            border-radius: 12px;
        }
        
        .single-news-header h1 {
            font-size: 1.9rem;
        }
        
        .single-news-image {
            max-width: 95%;
            height: 250px;
            margin: 15px auto;
        }
        
        .news-date {
            font-size: 1rem;
            padding: 8px 20px;
        }
        
        .news-breadcrumb {
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
        
        .news-brief p {
            font-size: 1.1rem;
        }
        
        .news-fulltext h2 {
            font-size: 1.5rem;
        }
        
        .news-fulltext h3 {
            font-size: 1.3rem;
        }
        
        .btn {
            padding: 12px 24px;
            font-size: 0.95rem;
        }
    }