

/* Start:/local/templates/pgsnew_v2_0/components/bitrix/news/stati/bitrix/news.detail/statya/style.css?178331243011281*/
:root {
    --accent-color: #2d7bb6; /* Синий цвет для ссылок/акцентов */
    --text-dark: #171717;
    --text-gray: #555555;
    --text-white: #ffffff;
    --bg-gray: #f4f6f8; /* Светло-серый фон для блоков */
    --shadow-card: 0 4px 15px rgba(0,0,0,0.08);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

/* Обертка для крошек, чтобы не ломали отступы */
.article-breadcrumbs-wrapper {
    margin-bottom: 15px; /* Отступ от крошек до даты */
    position: relative;
    z-index: 10;
}

/* Стилизуем сами крошки, чтобы они были белыми и аккуратными */
.article-breadcrumbs-wrapper .breadcrumbs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}
.article-breadcrumbs-wrapper .breadcrumbs li {
    display: inline;
}
.article-breadcrumbs-wrapper .breadcrumbs li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}
.article-breadcrumbs-wrapper .breadcrumbs li a:hover {
    color: #fff;
    text-decoration: underline;
}
.article-breadcrumbs-wrapper .breadcrumbs li span {
    color: #fff;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}



/* Обертка шапки */
.article-header-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px; /* Высота шапки */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

/* Затемняющий слой (чтобы текст читался на фоне) */
.article-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Плотность затемнения */
    display: flex;
    align-items: center;
}

/* Контейнер контента шапки */
.article-header-overlay .container {
    width: 100%;
    z-index: 2;
	padding: 0 5%;
}

/* Мета-данные: Дата, время, просмотры */
.article-meta-top {
    display: flex;
    gap: 20px;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 48px;
}
.article-meta-top span {
    display: flex;
    align-items: center;
    gap: 5px;
	line-height: 1;
}

/* Заголовок */
.article-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 48px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Нижняя часть шапки: Сохранить + Карточка автора */
.article-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

/* Левая часть: Сохранить и соцсети */
.article-actions-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}
.save-article {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}
.share-icons {
    display: flex;
    gap: 8px;
}


/* Карточка автора */
.article-author-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
	max-width: 400px;
	width: 100%;
}

.author-card--top {
	display: flex;
    gap: 15px;
    align-items: center;
	margin-bottom: 24px;
}

.author-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-content {
    flex: 1;
}
.author-name {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.author-role {
    font-size: 16px;
    color: var(--text-dark);
}
.author-list ul {
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}
.author-list ul li {
    margin-bottom: 6px;
}

/* Обертка для крошек (верхняя строка) */
.breadcrumbs-row {
    width: 100%;
    margin-bottom: 20px;
}

/* Основная строка: левая + правая колонки */
.article-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Левая колонка (текст) */
.article-left-col {
    flex: 1;
    min-width: 300px;
}

/* Правая колонка (автор) */
.article-right-col {
    flex: 0 0 360px; /* Фиксированная ширина для карточки */
    max-width: 100%;
}


/* Адаптив для мобильных */
@media (max-width: 768px) {
    .article-main-row {
        flex-direction: column;
    }
    .article-right-col {
        flex: 0 0 auto;
        width: 100%;
    }
    .article-author-card {
        width: 100%;
    }
}


.stati_detail {
    position: relative;
    padding-bottom: 60px;
}

body #body .text-content.container {
	max-width: 60%;
    font-size: 18px;
    line-height: 2;
    color: var(--text-dark);
}

body #body .text-content.container img {
	border-radius: 10px;
	width: 100%;
	max-width: 100% !important;
}

/* Анонс (PREVIEW_TEXT) */
.article-preview {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Блок Содержание */
.content-block {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 25px 30px;
    margin-bottom: 40px;
}
.content-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-dark);
}
.content-list ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.content-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-gray);
    cursor: pointer;
}
.content-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--text-dark);
    border-radius: 50%;
}
.content-list ul li a,
.content-list ol li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.2s;
}
.content-list ul li a:hover,
.content-list ol li a:hover {
    color: var(--text-dark);
}

/* Вложенные списки в содержании */
.content-list ul ul {
    margin-top: 5px;
    margin-left: 20px;
}
.content-list ul ul li::before {
    background: #ccc;
    width: 4px;
    height: 4px;
}

/* Детальный текст статьи */
.detail-text {
    margin-top: 30px;
}
.detail-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.detail-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.detail-text p {
    margin-bottom: 20px;
}
.detail-text img {
    border-radius: var(--radius);
    margin: 20px 0;
    width: 100%;
}

/* Блок содержания */
.content-block.accordion {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.content-list ol {
	padding-left: 20px;
}

/* Заголовок-переключатель */
.content-block.accordion .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.content-block.accordion .content-title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

/* Иконка стрелки */
.content-block.accordion .toggle-icon {
    transition: transform 0.3s ease;
}

/* Закрытое состояние */
.content-block.accordion.closed .toggle-icon {
    transform: rotate(0deg); /* Стрелка вниз */
}

/* Открытое состояние (по умолчанию) */
.content-block.accordion .toggle-icon {
    transform: rotate(180deg); /* Стрелка вверх */
}

/* Тело содержания */
.content-block.accordion .content-body {
    padding: 20px;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

/* Скрытое состояние */
.content-block.accordion.closed .content-body {
    max-height: 0 !important;
    padding: 0 20px;
}

@media (min-width: 1440px) {
	.text-content.container {
		max-width: 60%;
    	margin: 0;
	}
}

@media (max-width: 1440px) {
	.text-content.container {
		max-width: 690px !important;
    	margin: 0;
	}
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }
    .article-bottom-wrapper {
        flex-direction: column-reverse; /* Карточка автора сверху на мобильных */
    }
    .article-author-card {
        max-width: 100%;
    }
    .article-meta-top {
        font-size: 12px;
        gap: 10px;
        flex-wrap: wrap;
    }
    .text-content {
        padding: 0 10px;
    }
    .content-block {
        padding: 20px;
    }
    .detail-text h2 {
        font-size: 24px;
    }
	.breadcrumbs li span {
		font-size: 12px !important;
	}
	.article-header-overlay {
		position: relative;
		padding-bottom: 20px;
	}
	.category-component-slider .h2 {
		width: 50%;
	}
}




.share-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F4F4F4;
	border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 48px;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.share-block-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.share-block-icons {
    display: flex;
    align-items: center;
    gap: 16px; /* 16px между иконками */
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: transform 0.2s;
}

.share-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.share-icon:hover {
    transform: scale(1.05);
}

/* Отступы между слайдами */
.slider.slider-category-component .slick-slide {
    margin: 0 8px; /* 8px + 8px = 16px между слайдами */
}

/* Компенсация для контейнера */
.slider.slider-category-component .slick-list {
    margin: 0 -8px;
}

.category-component-slider .h2 {
	font-weight: 500;
	font-size: 32px;
	margin-bottom: 20px;
}

.slider-category-component .slick-track {
	display: flex;
}

.products-stati .card-components {
	max-width: 310px;
}
.products-stati-flex {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
    gap: 15px;
}

@media (min-width: 768px) {
	body {
		overflow: visible !important;
	}
	
	.products-stati {
		position: sticky;
		top: 20px;
		align-self: flex-start;
		overflow: visible;
	}
	.stati_detail {
		display: flex;
		gap: 40px;
	}
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .share-block {
        flex-direction: column;
        align-items: flex-start;
    }
    .share-block-text {
        font-size: 24px;
    }
}

/* End */


/* Start:/local/templates/pgsnew_v2_0/components/bitrix/breadcrumb/stati/style.css?1781509549880*/
.breadcrumbs{
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.breadcrumbs li span.breadcrumbs-currentlink span {
	color: white;
}
.breadcrumbs:after{
    display: table;
    width: 100%;
    content: "";
    clear: both;
}
.breadcrumbs li{
    float: left;
    margin: 0 3px 10px 0;
}
.breadcrumbs li a{
    text-decoration: none !important;
    color: #9D9D9D;
    font-size: 16px;
    line-height: 16px;
    display: inline;
    border-bottom: 1px solid transparent;
    position: relative;
}

.breadcrumbs li a:hover{
    color: #242424;
    border-color: #242424;
}
.breadcrumbs li span{
    color: #9D9D9D;
    font-size: 16px;
    line-height: 16px;
}
@media screen and (max-width: 768px) {
    #breadcrumbs {
        display: flex;
        overflow: scroll;
    }

    .breadcrumbs li {
        white-space: nowrap;
    }
}
/* End */


/* Start:/local/templates/pgsnew_v2_0/components/bitrix/news.list/stati_new_card/style.css?17831476821580*/
.news-card {
    background: #fff;
    border-radius: 24px;
    position: relative;
	display: flex !important;
	flex-direction: column;
}


.news-card-link {
	font-size: 18px;
	font-weight: 400;
    color: #000000;
}

.news-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: #ccc;
    border-radius: 8px;
}

.news-card-content {
	flex: 1;
    position: relative;
    z-index: 2;
	display: flex;
    flex-direction: column;
}

.news-card-category {
    display: inline-block;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
}

.news-card-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
	margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #666;
}

.news-card-meta img {
    vertical-align: middle;
}

.news-card-meta span {
	display: flex;
    align-items: center;
    gap: 8px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* End */


/* Start:/local/templates/pgsnew_v2_0/components/bitrix/subscribe.form/stati/style.css?17831478983155*/
#btn_footer_promo_submit + label > span {
    display: none;
}

/* Обертка формы */
.subscribe-form-wrapper {
    background: #004288;
    /* border: 1px solid #E5E5E5; */
    /* border-radius: 24px; */
    padding: 48px;
    margin: 40px 0;
}

.subscribe-form-row {
    display: flex;
    gap: 40px;
}

/* Левая колонка */
.subscribe-left-col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px; 
}

.subscribe-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	color: white;
}

.subscribe-left-col > div:first-child {
    flex: 1;
}


.subscribe-icon {
    margin-top: auto;
}

.subscribe-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.subscribe-text {
    font-size: 18px;
    line-height: 1.5;
    /* color: #000000; */
}

.subscribe-icon img {
    max-width: 185px;
}

/* Правая колонка */
.subscribe-right-col {
    flex: 1;
    background: #fff;
    /* border: 1px solid #E5E5E5; */
    /* border-radius: 16px; */
    padding: 30px;
}

/* Поля ввода */
.subscribe-form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #000;
}

/* Блок рубрик */
.subscribe-rubrics-block {
    background: #EBEBEB;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 20px;
}

.rubrics-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.rubrics-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rubric-item {
    display: flex;
    gap: 10px;
}

.rubric-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #000;
}

.rubric-item label {
    font-size: 14px;
    cursor: pointer;
}

.rubric-item label small {
    color: #999;
    font-size: 12px;
    margin-left: 5px;
}

/* Чекбоксы согласия */
.subscribe-agree {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.agree-item {
    display: flex;
    gap: 10px;
}

.agree-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #000;
}

.agree-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* Кнопка Отправить */
.subscribe-submit button {
    width: 100%;
    padding: 15px;
    background: #004288;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-submit button:hover {
    background: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .subscribe-form-row {
        flex-direction: column;
    }
    .subscribe-left-col {
        flex: 0 0 100%;
    }
    .subscribe-right-col {
        padding: 20px;
    }
    .subscribe-title {
        font-size: 24px;
    }

	.subscribe-form-wrapper {
		padding: 16px;
	}
}
/* End */
/* /local/templates/pgsnew_v2_0/components/bitrix/news/stati/bitrix/news.detail/statya/style.css?178331243011281 */
/* /local/templates/pgsnew_v2_0/components/bitrix/breadcrumb/stati/style.css?1781509549880 */
/* /local/templates/pgsnew_v2_0/components/bitrix/news.list/stati_new_card/style.css?17831476821580 */
/* /local/templates/pgsnew_v2_0/components/bitrix/subscribe.form/stati/style.css?17831478983155 */
