.news-single {
            padding: 0;
        }
        .news-single-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .news-single-header {
            margin-bottom: 40px;
        }
        .news-single-date {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }
        .news-single-municipality {
            display: inline-block;
            background: var(--color-accent-green);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .news-single-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a1a1a;
        }
        .news-single-image-wrapper {
            position: relative;
            width: 100%;
            max-height: 760px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 32px;
        }
        .news-single-image {
            width: 100%;
            max-height: 760px;
            object-fit: cover;
            display: block;
        }
        .news-single-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
            z-index: 2;
        }
        .news-single-excerpt {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            font-size: 20px;
            line-height: 1.6;
            color: white;
            font-weight: 700;
            z-index: 3;
            margin: 0;
        }
        .news-single-content {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 40px;
        }
        .news-single-content p {
            margin: 0 0 1.2em 0;
            white-space: pre-wrap; /* Сохраняем переносы строк И пробелы внутри параграфов */
        }
        /* Убеждаемся, что <br> теги работают внутри параграфов */
        .news-single-content p br {
            display: block;
            content: "";
            margin-bottom: 0.5em;
        }
        /* Карусель изображений */
        .news-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .carousel-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        .news-carousel .carousel-container {
            height: 680px;
        }
        .carousel-slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: none;
        }
        .carousel-slide.active {
            display: block;
        }
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s;
            color: #333;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .carousel-btn:hover {
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transform: translateY(-50%) scale(1.1);
        }
        .carousel-prev {
            left: 20px;
        }
        .carousel-next {
            right: 20px;
        }
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .carousel-indicators .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid white;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }
        .carousel-indicators .indicator.active {
            background: white;
            transform: scale(1.2);
        }
        .carousel-indicators .indicator:hover {
            background: rgba(255,255,255,0.8);
        }
        .news-single-content p:last-child {
            margin-bottom: 0;
        }
        .news-single-content ul,
        .news-single-content ol {
            margin: 1.2em 0;
            padding-left: 2em;
        }
        .news-single-content li {
            margin: 0.5em 0;
        }
        .news-single-content h2,
        .news-single-content h3,
        .news-single-content h4 {
            margin: 1.5em 0 1em 0;
            font-weight: 700;
            color: #222;
        }
        .news-single-content h2:first-child,
        .news-single-content h3:first-child,
        .news-single-content h4:first-child {
            margin-top: 0;
        }
        .news-single-content blockquote {
            border-left: 4px solid var(--color-accent-green);
            padding: 20px 24px;
            margin: 1.2em 0; /* Согласованный отступ с параграфами */
            background-color: #f8f9fa;
            font-style: italic;
            color: #555;
            border-radius: 4px;
            display: block;
            white-space: normal;
        }
        .news-single-content blockquote p {
            margin: 0;
            /* КРИТИЧНО: сохраняем переносы строк И пробелы внутри параграфов в цитате */
            white-space: pre-wrap !important;
        }
        .news-single-content blockquote p:not(:last-child) {
            margin-bottom: 12px;
        }
        /* КРИТИЧНО: <br> теги должны работать внутри blockquote */
        .news-single-content blockquote br,
        .news-single-content blockquote p br {
            display: block !important;
            content: "";
            margin-bottom: 0.5em !important;
            line-height: 1.5em !important;
            height: 0.5em !important;
            width: 100% !important;
        }
        /* Если внутри blockquote нет параграфов, но есть текст с <br> */
        .news-single-content blockquote:not(:has(p)) {
            white-space: pre-wrap !important; /* Сохраняем пробелы и переносы строк */
        }
        /* Дополнительная защита для переносов строк */
        .news-single-content blockquote * {
            white-space: inherit;
        }
        /* Убеждаемся, что <br> теги отображаются даже внутри параграфов */
        .news-single-content blockquote p {
            white-space: pre-wrap !important; /* Сохраняем пробелы и переносы строк */
        }
        /* Убеждаемся, что отступы до и после blockquote правильные */
        .news-single-content p + blockquote,
        .news-single-content blockquote + p {
            margin-top: 1.2em;
        }
        .news-single-video {
            margin: 40px 0;
            width: 100%;
            max-width: 100%;
        }
        .news-videos-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .news-videos-carousel .carousel-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
        }
        .news-videos-carousel .carousel-slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        .news-videos-carousel .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: none;
        }
        .news-videos-carousel .carousel-slide.active {
            display: block;
        }
        .news-videos-carousel .carousel-slide iframe {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }
        .news-video-iframe {
            width: 100%;
            height: 500px;
            border-radius: 12px;
            border: none;
        }
        @media (max-width: 768px) {
            .news-videos-carousel .carousel-slide iframe,
            .news-video-iframe {
                height: 300px;
            }
        }
        @media (max-width: 768px) {
            .news-video-iframe {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .news-video-iframe {
                height: 250px;
            }
        }
        .news-single-back {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--color-accent-green);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .news-single-back:hover {
            background-color: #2d6a2e;
        }
        .news-related {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #ddd;
        }
        .news-related h3 {
            font-size: 28px;
            margin-bottom: 24px;
        }
        .news-related-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-related-item {
            position: relative;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            align-items: flex-end;
            transition: transform 0.3s ease;
            background: #8a8a8a;
        }
        .news-related-item:hover {
            transform: scale(1.02);
        }
        .news-related-item-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        .news-related-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
            z-index: 2;
        }
        .news-related-item-title {
            position: relative;
            z-index: 3;
            color: white;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            padding: 25px;
            margin: 0;
        }
        @media (max-width: 1200px) {
            .news-related-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .news-related-list {
                grid-template-columns: 1fr;
            }
            .news-related-item {
                height: 220px;
            }
            .news-related-item-title {
                font-size: 16px;
                padding: 20px;
            }
        }

/* --- block --- */

.page-content {
            padding: 60px 0;
            background-color: #f6f8fa;
        }
        .page-header {
            margin-bottom: 50px;
            text-align: center;
        }
        .page-header h1 {
            font-family: var(--font-heading);
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        /* Карточка контактов МО */
        .municipality-contact-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 40px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .municipality-contact-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .municipality-contact-header svg {
            color: var(--color-accent-green-dark);
        }
        
        .municipality-contact-header h3 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }
        
        .municipality-contact-body {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }
        
        .municipality-contact-photo {
            flex-shrink: 0;
        }
        
        .municipality-contact-photo img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
        }
        
        .municipality-contact-info {
            flex: 1;
        }
        
        .municipality-contact-name {
            font-size: 20px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 6px;
        }
        
        .municipality-contact-position {
            font-size: 15px;
            color: #666;
            margin-bottom: 16px;
        }
        
        .municipality-contact-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: #555;
        }
        
        .contact-detail svg {
            color: var(--color-accent-green-dark);
            flex-shrink: 0;
        }
        
        .contact-detail a {
            color: var(--color-accent-green-dark);
            text-decoration: none;
        }
        
        .contact-detail a:hover {
            text-decoration: underline;
        }
        
        .municipality-contact-empty {
            padding: 20px;
            text-align: center;
            color: #999;
        }
        
        @media (max-width: 768px) {
            .municipality-contact-body {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .municipality-contact-details {
                align-items: center;
            }
            
            .contact-detail {
                justify-content: center;
            }
        }
        .news-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-card {
            position: relative;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            transition: transform 0.3s ease;
            background: #8a8a8a;
        }
        .news-card:hover {
            transform: scale(1.02);
        }
        .news-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        .news-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
            z-index: 2;
        }
        .news-card p {
            position: relative;
            z-index: 3;
            color: white;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
            padding: 0 30px 10px 30px;
            margin: 0;
            margin-top: auto;
            width: 100%;
            align-self: flex-end;
        }
        @media (max-width: 1200px) {
            .news-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .news-list {
                grid-template-columns: 1fr;
            }
            .news-card {
                height: 250px;
            }
            .news-card p {
                font-size: 12px;
                padding: 0 20px 10px 20px;
            }
        }

/* --- block --- */

.news-filter-container {
                background: white;
                border-radius: 12px;
                padding: 24px;
                margin-bottom: 40px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            }

            .news-filter-hint {
                margin: 0 0 16px;
                font-size: 14px;
                color: #888;
                line-height: 1.4;
            }
            
            .news-filter-item {
                display: inline-block;
                padding: 10px 16px;
                color: #333;
                text-decoration: none;
                border-radius: 25px;
                font-size: 15px;
                transition: all 0.2s;
            }
            
            .news-filter-item:hover {
                background-color: #f8f9fa;
            }
            
            .news-filter-item.active {
                background-color: var(--color-accent-green-dark);
                color: white;
            }
            
            .news-filter-item .count {
                color: #999;
                font-size: 14px;
            }
            
            .news-filter-item.active .count {
                color: rgba(255,255,255,0.8);
            }
            
            .news-filter-all {
                font-weight: 600;
            }
            
            .news-filter-all .mo-full {
                display: inline;
            }
            
            .news-filter-all .mo-short {
                display: none;
            }
            
            @media (max-width: 1400px) {
                .news-filter-all .mo-full {
                    display: none;
                }
                
                .news-filter-all .mo-short {
                    display: inline;
                }
            }
            
            .news-filter-municipalities-visible {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
                margin-bottom: 20px;
            }

            .news-filter-column {
                display: flex;
                flex-direction: column;
                gap: 8px;
            }

            .news-filter-column-extra {
                display: none;
                flex-direction: column;
                gap: 8px;
            }

            .news-filter-municipalities-visible.show-all .news-filter-column-extra {
                display: flex;
            }

            .news-filter-toggle {
                width: 100%;
                padding: 12px 20px;
                border: 3px solid #dee2e6;
                background: white;
                color: #0066CC;
                font-size: 15px;
                border-radius: 25px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                transition: all 0.2s;
            }

            .news-filter-toggle:hover {
                background-color: #f8f9fa;
            }

            .news-filter-toggle .arrow {
                transition: transform 0.3s;
            }

            .news-filter-toggle.active .arrow {
                transform: rotate(180deg);
            }
            
            @media (max-width: 1200px) {
                .news-filter-municipalities-visible {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
            
            @media (max-width: 900px) {
                .news-filter-municipalities-visible {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            
            @media (max-width: 600px) {
                .news-filter-municipalities-visible {
                    grid-template-columns: 1fr;
                }
            }