

/* Start:/bitrix/components/bitrix/player/templates/.default/style.min.css?1746983767122*/
td.popupmenu div.popupitem .playlist-edit{background-image:url(/bitrix/components/bitrix/player/images/playlist_edit.gif)}
/* End */


/* Start:/local/templates/iko4v_v2/components/bitrix/news.detail/article/style.css?17539903811183*/
.article {
	display: grid;
	grid-template-columns: minmax(340px, 840px) 300px;
	grid-gap: 30px;
	max-width: unset !important;
	justify-content: space-between;
}

.article-toc {
	position: sticky;
	top: 20px;
	transition: var(--tr25);
}

/* Header fixed */
body:has(.mobile-header.header-fixed) .article-toc,
body:has(.desktop-header.header-fixed) .article-toc {
	top: 70px;
}

body:has(.desktop-header.header-fixed.scrolling-up) .article-toc {
	top: 130px;
}

.article-toc ul.toc-list li {
	padding-left: 0;
}

.toc-container {
	margin-top: 0;
}

.article-content > *:first-child {
	margin-top: 0!important;
}

.article-video {
	margin-bottom: 50px;
}

.article .video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 20px;
}

.article video {
	width: 100%;
	min-height: 231px;
	object-fit: cover;
	background-color: var(--gray-10);
	border-radius: var(--r2);
}

.article .video-item {

}

.article .video-item-title {
	font-weight: 700;
	font-size: 16px;
}

@media (max-width: 920px) {
  .article {
	  display: block;
  }

	.toc-container {
		display: none;
	}
}

@media (max-width: 120px) {
	.article video {
		min-height: 200px;
	}
}
/* End */


/* Start:/local/templates/iko4v_v2/css/blog.css?175338456331776*/
/* =====================================
   СТИЛИ ДЛЯ СТАТЕЙ БЛОГА
   ===================================== */

/* Основной контейнер для статьи */
.article {
	max-width: 840px;
	line-height: 1.6;
	/* font-family: var(--extra-font), sans-serif; */
}

.article h2, .article .h2 {
	font-size: clamp(20px, 3vw, calc(var(--font-size-base) + (var(--font-size-step) * 6)));
}

.article h3, .article .h3 {
	font-size: clamp(18px, 3vw, calc(var(--font-size-base) + (var(--font-size-step) * 5)));
}

.article h4, .article .h4 {
	font-size: clamp(16px, 3vw, calc(var(--font-size-base) + (var(--font-size-step) * 3)));
}

.article h5, .article .h5 {
	font-size: calc(var(--font-size-base) + (var(--font-size-step) * 2));
}

.article h6, .article .h6 {
	font-size: calc(var(--font-size-base) + var(--font-size-step));
}

.article-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
}

.article hr {
	height: 2px;
	background: linear-gradient(90deg, var(--gray-20), var(--white)); /* Градиент */
	border: 0;
}

/* Заголовок статьи */
.article-title {
	font-family: var(--extra-font), sans-serif;
	font-size: clamp(28px, 4vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--black);
}

/* Метаинформация статьи */
.article-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--gray-30);
	font-size: 14px;
	color: var(--gray-60);
}

.article-meta__date,
.article-meta__author,
.article-meta__reading-time,
.article-meta__category {
	display: flex;
	align-items: center;
	gap: 6px;
}

.article-meta__icon {
	width: 18px;
	height: 18px;
	fill: var(--gray-60);
}

/* Время чтения */
.article-meta__reading-time {
	margin-left: auto;
}

/* ПРОЛОГ */
.article-prologue {
	position: relative;
	background: linear-gradient(135deg, var(--gray-10) 0%, var(--white) 100%);
	border-left: 4px solid var(--primary-light);
	padding: 25px 30px;
	margin: 30px 0;
	border-radius: 0 8px 8px 0;
	font-size: clamp(16px, 3vw, 18px);
	line-height: 1.6;
	font-style: italic;
}

.article-prologue::before {
	content: "";
	position: absolute;
	top: -5px;
	left: -12px;
	background: var(--white);
	padding: 5px;
	border-radius: 50%;
	box-shadow: var(--box-shadow-2);
}

.article-prologue__title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-light);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

._font-extra .article-prologue__title {
	font-weight: 800;
}

._font-main .article-prologue__title {
	font-weight: 600;
}

/* ЭПИЛОГ */
.article-epilogue {
	position: relative;
	background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
	color: var(--white);
	padding: 25px 30px;
	margin: 40px 0 30px;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1.6;
}

.article-epilogue::before {
	content: "🎯";
	position: absolute;
	top: -10px;
	right: 20px;
	background: var(--white);
	padding: 8px;
	border-radius: 50%;
	box-shadow: var(--box-shadow-2);
}

.article-epilogue__title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ЦИТАТЫ */
.article-quote {
	position: relative;
	margin: 30px 0;
	padding: 25px 30px 25px 60px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--box-shadow-1);
	border-left: 4px solid var(--green);
}

.article-quote::before {
	content: "\"";
	position: absolute;
	top: 10px;
	left: 15px;
	font-size: 48px;
	color: var(--green);
	font-family: Georgia, serif;
	line-height: 1;
}

.article-quote__text {
	font-size: 18px;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 15px;
	color: var(--gray-80);
}

.article-quote__author {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-light);
	text-align: right;
}

.article-quote__author::before {
	content: "— ";
}

/* СОДЕРЖАНИЕ */
.article-toc {
	background: var(--gray-10);
	border: 1px solid var(--gray-30);
	border-radius: 8px;
	padding: 4px 12px;
	/* margin: 30px 0; */
	max-width: 400px;
}

.article-toc__title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--primary-light);
	display: flex;
	align-items: center;
	gap: 8px;
}

/*
.article-toc__title::before {
	content: "📑";
}
*/

.article-toc__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc-list li,
.article-toc__item {
	/* margin-bottom: 8px; */
	margin-bottom: 0;
}

.toc-list li:before {
	display: none;
}

.toc-list li a,
.article-toc__link {
	display: block;
	padding: 8px 12px;
	color: var(--gray-70);
	text-decoration: none;
	border-radius: 4px;
	transition: var(--tr25);
	font-size: 14px;
	line-height: 1.2;
}

.toc-list li a:hover,
.article-toc__link:hover {
	background: var(--white);
	color: var(--primary-light);
	transform: translateX(5px);
}

.toc-level-2,
.article-toc__link--level-2 {
	padding-left: 25px;
	font-size: 14px;
}

.toc-level-3
.article-toc__link--level-3 {
	padding-left: 40px;
	font-size: 13px;
}

/* СПИСКИ В СТАТЬЯХ */
.article-list {
	margin: 20px 0;
}

.article-list--ordered {
	counter-reset: article-counter;
}

.article-list--ordered .article-list__item {
	counter-increment: article-counter;
	padding-left: 35px;
}

.article-list--ordered .article-list__item::before {
	content: counter(article-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: var(--primary-light);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
}

.article-list__item {
	position: relative;
	padding: 8px 0 8px 25px;
	margin-bottom: 12px;
	line-height: 1.6;
}

.article-list--unordered .article-list__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--green);
	border-radius: 50%;
}

/* Чекбоксы для списков задач */
.article-list--checklist .article-list__item {
	padding-left: 35px;
}

.article-list--checklist .article-list__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border: 2px solid var(--gray-40);
	border-radius: 3px;
	background: var(--white);
}

.article-list--checklist .article-list__item--completed::before {
	background: var(--green);
	border-color: var(--green);
}

.article-list--checklist .article-list__item--completed::after {
	content: "✓";
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--white);
	font-size: 12px;
	font-weight: bold;
}

.article-list--checklist .article-list__item--completed {
	color: var(--gray-60);
	text-decoration: line-through;
}

/* ОДИНОЧНЫЕ ФОТОГРАФИИ */
.article-photo {
	position: relative;
	margin: 30px 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow-1);
	cursor: pointer;
	transition: var(--tr25);
	display: block;
}

.article-photo:hover {
	transform: translateY(-3px);
	box-shadow: var(--box-shadow-1-hover);
}

.article-photo__image {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: var(--tr25);
	display: block;
}

.article-photo:hover .article-photo__image {
	transform: scale(1.02);
}

.article-photo__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
	color: var(--white);
	padding: 20px 15px 15px;
	font-size: 14px;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(10px);
	transition: var(--tr25);
}

.article-photo:hover .article-photo__caption {
	opacity: 1;
	transform: translateY(0);
}

/* Вариации размеров для одиночных фото */
.article-photo--small {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.article-photo--medium {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.article-photo--large {
	max-width: 100%;
}

/* Выравнивание фото */
.article-photo--left {
	float: left;
	margin: 0 20px 20px 0;
	max-width: 300px;
}

.article-photo--right {
	float: right;
	margin: 0 0 20px 20px;
	max-width: 300px;
}

.article-photo--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* ФОТОГАЛЕРЕЯ */
.article-gallery {
	margin: 40px 0;
}

.article-gallery__title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--primary-light);
	text-align: center;
}

.article-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

.article-gallery__item {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: var(--box-shadow-1);
	transition: var(--tr25);
	cursor: pointer;
	background: var(--gray-10);
}

.article-gallery__item:hover {
	transform: translateY(-5px);
	box-shadow: var(--box-shadow-1-hover);
}

.article-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: var(--tr25);
}

.article-gallery__item:hover .article-gallery__image {
	transform: scale(1.05);
}

.article-gallery__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	color: var(--white);
	padding: 15px;
	transform: translateY(100%);
	transition: var(--tr25);
}

.article-gallery__item:hover .article-gallery__overlay {
	transform: translateY(0);
}

.article-gallery__caption {
	font-size: 14px;
	line-height: 1.4;
	margin: 0;
}

/* Увеличительное стекло для галереи */
.article-gallery__zoom-icon {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.8);
	transition: var(--tr25);
	backdrop-filter: blur(4px);
}

.article-gallery__zoom-icon::after {
	content: "🔍";
	font-size: 14px;
}

.article-gallery__item:hover .article-gallery__zoom-icon {
	opacity: 1;
	transform: scale(1);
}

/* Компактная галерея (3 колонки) */
.article-gallery--compact .article-gallery__grid {
	grid-template-columns: repeat(3, 1fr);
}

.article-gallery--compact .article-gallery__item {
	aspect-ratio: 1;
}

/* Галерея (2 колонки) */
.article-gallery--half .article-gallery__grid {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Галерея мозаикой */
.article-gallery--masonry .article-gallery__grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
}

.article-gallery--masonry .article-gallery__item {
	aspect-ratio: auto;
}

.article-gallery--masonry .article-gallery__item:nth-child(3n) {
	grid-row: span 2;
}

.article-gallery--masonry .article-gallery__item:nth-child(5n) {
	grid-column: span 2;
}

/* Полноширинная галерея */
.article-gallery--fullwidth {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding: 0 20px;
}

.article-gallery--fullwidth .article-gallery__grid {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

/* Стили для Fancybox 4 */
.article-gallery__item[data-fancybox] {
	/* cursor: zoom-in; */
}

.article-photo[data-fancybox] {
	/* cursor: zoom-in; */
}

/* Счетчик фотографий в галерее */
.article-gallery__counter {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(0, 0, 0, 0.7);
	color: var(--white);
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	opacity: 0;
	transform: translateY(-5px);
	transition: var(--tr25);
}

.article-gallery__item:hover .article-gallery__counter {
	opacity: 1;
	transform: translateY(0);
}

/* ВЫДЕЛЕННЫЕ БЛОКИ */
.article-highlight {
	position: relative;
	padding: 20px 25px;
	margin: 25px 0;
	border-radius: 8px;
	border-left: 4px solid;
}

.article-highlight--info {
	background: rgba(59, 130, 246, 0.1);
	border-color: #3b82f6;
	color: #1e40af;
}

.article-highlight--warning {
	background: rgba(245, 158, 11, 0.1);
	border-color: #f59e0b;
	color: #92400e;
}

.article-highlight--success {
	background: rgba(34, 197, 94, 0.1);
	border-color: #22c55e;
	color: #166534;
}

.article-highlight--error {
	background: rgba(239, 68, 68, 0.1);
	border-color: #ef4444;
	color: #991b1b;
}

.article-highlight__icon {
	position: absolute;
	top: -8px;
	left: 15px;
	background: var(--white);
	padding: 5px;
	border-radius: 50%;
	font-size: 16px;
}

.article-highlight__title {
	font-weight: 600;
	margin-bottom: 8px;
}

/* КНОПКИ ДЛЯ СТАТЕЙ */
.article-buttons {
	display: flex;
	gap: 15px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.article-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--tr25);
	border: 2px solid transparent;
}

.article-btn--primary {
	background: var(--primary-light);
	color: var(--white);
}

.article-btn--primary:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

.article-btn--secondary {
	background: transparent;
	color: var(--primary-light);
	border-color: var(--primary-light);
}

.article-btn--secondary:hover {
	background: var(--primary-light);
	color: var(--white);
}

/* НАВИГАЦИЯ ПО СТАТЬЯМ */
.article-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 50px 0 30px;
	padding-top: 30px;
	border-top: 2px solid var(--gray-20);
}

.article-nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 20px;
	background: var(--white);
	border: 1px solid var(--gray-30);
	border-radius: 8px;
	text-decoration: none;
	color: var(--gray-80);
	transition: var(--tr25);
	max-width: 250px;
	box-shadow: var(--box-shadow-1);
}

.article-nav-link:hover {
	transform: translateY(-3px);
	box-shadow: var(--box-shadow-1-hover);
	border-color: var(--primary-light);
}

.article-nav-link__direction {
	font-size: 12px;
	color: var(--gray-60);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.article-nav-link__title {
	font-weight: 500;
	line-height: 1.3;
}

.article-nav-link--next,
.article-nav-link--prev {
	text-align: center;
}

.article-nav-link--next {
	flex-direction: row-reverse;
}

/* ТЕГИ СТАТЬИ */
.article-tags {
	margin: 30px 0;
}

.article-tags__title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--gray-80);
}

.article-tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.article-tag {
	display: inline-block;
	padding: 6px 12px;
	background: var(--gray-10);
	color: var(--gray-70);
	text-decoration: none;
	border-radius: 15px;
	font-size: 13px;
	font-weight: 500;
	transition: var(--tr25);
}

.article-tag:hover {
	background: var(--primary-light);
	color: var(--white);
	transform: translateY(-2px);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
	.article-container {
		padding: 20px 15px;
	}

	.article-prologue,
	.article-epilogue {
		padding: 20px;
	}

	.article-quote {
		padding: 20px 20px 20px 45px;
	}

	.article-toc {
		max-width: 100%;
	}

	.article-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.article-gallery--masonry .article-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-gallery--masonry .article-gallery__item:nth-child(5n) {
		grid-column: span 1;
	}

	.article-photo--left,
	.article-photo--right {
		float: none;
		margin: 20px 0;
		max-width: 100%;
	}

	.article-navigation {
		flex-direction: column;
	}

	.article-nav-link {
		max-width: 100%;
	}

	.article-buttons {
		flex-direction: column;
	}

	.article-btn {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.article-gallery__grid {
		grid-template-columns: 1fr;
	}

	.article-gallery--compact .article-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-gallery--masonry .article-gallery__grid {
		grid-template-columns: 1fr;
	}

	.article-meta {
		/* flex-direction: column;
		align-items: flex-start; */
		gap: 10px;
	}

	/* .article-meta__reading-time {
		margin-left: 0;
	} */

	.article-photo--small,
	.article-photo--medium {
		max-width: 100%;
	}
}

/* БЛОК ОБРАТНОЙ СВЯЗИ */
.article-contact-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
	color: var(--white);
	padding: 30px 35px;
	border-radius: 12px;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
	box-shadow: var(--box-shadow-3);
}

.article-contact-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	pointer-events: none;
}

.article-contact-cta__content {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
}

.article-contact-cta__icon {
	font-size: 48px;
	opacity: 0.9;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

.article-contact-cta__text {
	flex: 1;
}

.article-contact-cta__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
	font-family: var(--extra-font), sans-serif;
}

.article-contact-cta__description {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.5;
}

.article-contact-cta__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	background: var(--white);
	color: var(--primary-light);
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	font-size: 16px;
	transition: var(--tr25);
	position: relative;
	z-index: 1;
	white-space: nowrap;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-contact-cta__button:hover {
	background: var(--gray-10);
	color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	text-decoration: none!important;
}

.article-contact-cta__button:active {
	transform: translateY(0);
}

.article-contact-cta__arrow {
	transition: var(--tr25);
}

.article-contact-cta__button:hover .article-contact-cta__arrow {
	transform: translateX(3px);
}

/* Вариации блока */
.article-contact-cta--minimal {
	background: var(--gray-10);
	color: var(--gray-80);
	border: 2px solid var(--gray-30);
	padding: 25px 30px;
}

.article-contact-cta--minimal::before {
	display: none;
}

.article-contact-cta--minimal .article-contact-cta__title {
	color: var(--primary-light);
}

.article-contact-cta--minimal .article-contact-cta__button {
	background: var(--primary-light);
	color: var(--white);
	text-decoration: none!important;
}

.article-contact-cta--minimal .article-contact-cta__button:hover {
	background: var(--primary);
	color: var(--white);
	text-decoration: none!important;
}

.article-contact-cta--success {
	background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
}

@media (max-width: 768px) {
	.article-contact-cta {
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
		gap: 20px;
	}

	.article-contact-cta__content {
		flex-direction: column;
		gap: 15px;
	}

	.article-contact-cta__icon {
		font-size: 40px;
	}

	.article-contact-cta__title {
		font-size: 20px;
	}

	.article-contact-cta__description {
		font-size: 15px;
	}

	.article-contact-cta__button {
		width: 100%;
		justify-content: center;
		padding: 12px 20px;
	}
}

@media (max-width: 480px) {
	.article-contact-cta {
		padding: 20px 15px;
	}

	.article-contact-cta__title {
		font-size: 18px;
	}

	.article-contact-cta__description {
		font-size: 14px;
	}
}

/* ТАБЛИЦЫ В СТАТЬЯХ */
.table-container {
	width: 100%;
	overflow-x: auto;
}

.article table,
.user-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow-1);
}

.article table caption,
.user-content table caption {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-light);
	margin-bottom: 15px;
	text-align: left;
	caption-side: top;
}

/* Заголовки таблицы */
.article table th,
.user-content table th {
	background: var(--primary-light);
	color: var(--white);
	font-weight: 600;
	padding: 15px 12px;
	text-align: left;
	font-size: 14px;
	letter-spacing: 0.5px;
	position: sticky;
	top: 0;
	z-index: 10;
}

.article table th:first-child,
.user-content table th:first-child {
	padding-left: 20px;
}

.article table th:last-child,
.user-content table th:last-child {
	padding-right: 20px;
}

/* Ячейки таблицы */
.article table td,
.user-content table td {
	padding: 12px;
	border-bottom: 1px solid var(--gray-20);
	color: var(--gray-90);
	font-size: 14px;
	line-height: 1.5;
}

.article table td:first-child,
.user-content table td:first-child {
	padding-left: 20px;
	font-weight: 500;
}

.article table td:last-child,
.user-content table td:last-child {
	padding-right: 20px;
}

/* Строки таблицы */
.article table tbody tr,
.user-content table tbody tr {
	transition: var(--tr25);
}

.article table tbody tr:hover,
.user-content table tbody tr:hover {
	background: var(--gray-10);
}

.article table tbody tr:last-child td,
.user-content table tbody tr:last-child td {
	border-bottom: none;
}

/* Альтернативные строки */
.article table tbody tr:nth-child(even),
.user-content table tbody tr:nth-child(even) {
	background: rgba(0, 0, 0, 0.02);
}

.article table tbody tr:nth-child(even):hover,
.user-content table tbody tr:nth-child(even):hover {
	background: var(--gray-10);
}

/* Вариации стилей таблиц */

/* Минималистичная таблица */
.article table.table-minimal,
.user-content table.table-minimal {
	box-shadow: none;
	border: 1px solid var(--gray-30);
}

.article table.table-minimal th,
.user-content table.table-minimal th {
	background: var(--gray-10);
	color: var(--gray-80);
	border-bottom: 2px solid var(--gray-30);
}

/* Компактная таблица */
.article table.table-compact th,
.user-content table.table-compact th,
.article table.table-compact td,
.user-content table.table-compact td {
	padding: 8px 12px;
	font-size: 13px;
}

.article table.table-compact th:first-child,
.user-content table.table-compact th:first-child,
.article table.table-compact td:first-child,
.user-content table.table-compact td:first-child {
	padding-left: 16px;
}

.article table.table-compact th:last-child,
.user-content table.table-compact th:last-child,
.article table.table-compact td:last-child,
.user-content table.table-compact td:last-child {
	padding-right: 16px;
}

/* Таблица с акцентами */
.article table.table-accent th,
.user-content table.table-accent th {
	background: var(--green);
}

.article table.table-accent tbody tr:hover,
.user-content table.table-accent tbody tr:hover {
	background: rgba(var(--green-rgb), 0.1);
}

/* Таблица прайс-листа */
.article table.table-pricing th,
.user-content table.table-pricing th {
	text-align: center;
	background: var(--gray-90);
}

.article table.table-pricing td,
.user-content table.table-pricing td {
	text-align: center;
}

.article table.table-pricing td:first-child,
.user-content table.table-pricing td:first-child {
	text-align: left;
	font-weight: 600;
}

/* Цветовые классы для ячеек */
.article table .cell-success,
.user-content table .cell-success {
	background: rgba(34, 197, 94, 0.1) !important;
	color: #166534;
	font-weight: 500;
}

.article table .cell-warning,
.user-content table .cell-warning {
	background: rgba(245, 158, 11, 0.1) !important;
	color: #92400e;
	font-weight: 500;
}

.article table .cell-error,
.user-content table .cell-error {
	background: rgba(239, 68, 68, 0.1) !important;
	color: #991b1b;
	font-weight: 500;
}

.article table .cell-info,
.user-content table .cell-info {
	background: rgba(59, 130, 246, 0.1) !important;
	color: #1e40af;
	font-weight: 500;
}

.article table .cell-highlight,
.user-content table .cell-highlight {
	background: var(--primary-light) !important;
	color: var(--white);
	font-weight: 600;
}

/* Числовые данные */
.article table .cell-number,
.user-content table .cell-number {
	text-align: right;
	font-family: var(--mono-font, monospace);
	font-weight: 500;
}

/* Контейнер для адаптивности */
.article-table-wrapper,
.table-responsive {
	position: relative;
	width: 100%;
	margin: 25px 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--box-shadow-1);
}

/* Скролл для больших таблиц */
.article-table-scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.article-table-scroll::-webkit-scrollbar {
	height: 8px;
}

.article-table-scroll::-webkit-scrollbar-track {
	background: var(--gray-20);
	border-radius: 4px;
}

.article-table-scroll::-webkit-scrollbar-thumb {
	background: var(--gray-50);
	border-radius: 4px;
}

.article-table-scroll::-webkit-scrollbar-thumb:hover {
	background: var(--gray-60);
}

/* Индикатор прокрутки */
.article-table-wrapper::after {
	content: '→ Прокрутите для просмотра →';
	position: absolute;
	bottom: 10px;
	right: 15px;
	background: rgba(0, 0, 0, 0.7);
	color: var(--white);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	opacity: 0;
	transition: var(--tr25);
	pointer-events: none;
	z-index: 5;
}

.article-table-wrapper.show-scroll-hint::after {
	opacity: 1;
}

/* Адаптивные стили */
@media (max-width: 768px) {
	.article table,
	.user-content table {
		margin: 20px 0;
		font-size: 13px;
	}

	.article table th,
	.user-content table th,
	.article table td,
	.user-content table td {
		padding: 10px 8px;
	}

	.article table th:first-child,
	.user-content table th:first-child,
	.article table td:first-child,
	.user-content table td:first-child {
		padding-left: 12px;
	}

	.article table th:last-child,
	.user-content table th:last-child,
	.article table td:last-child,
	.user-content table td:last-child {
		padding-right: 12px;
	}

	.article table caption,
	.user-content table caption {
		font-size: 16px;
		margin-bottom: 10px;
	}

	/* Добавление горизонтальной прокрутки для таблиц */
	.table-container table {
		min-width: 768px; /* Фиксирует минимальную ширину таблицы */
	}

	/* Опционально: предотвращаем перенос текста в ячейках */
	/* .table-container td,
	.table-container th {
		white-space: nowrap;
	} */

	/* Карточный вид для очень маленьких экранов */
	/* .article table.table-cards,
	.user-content table.table-cards {
		border: none;
		box-shadow: none;
		background: transparent;
	}

	.article table.table-cards thead,
	.user-content table.table-cards thead {
		display: none;
	}

	.article table.table-cards tbody,
	.user-content table.table-cards tbody {
		display: block;
	}

	.article table.table-cards tr,
	.user-content table.table-cards tr {
		display: block;
		background: var(--white);
		border-radius: 8px;
		box-shadow: var(--box-shadow-1);
		margin-bottom: 15px;
		padding: 15px;
	}

	.article table.table-cards tr:hover,
	.user-content table.table-cards tr:hover {
		background: var(--white);
		transform: translateY(-2px);
		box-shadow: var(--box-shadow-1-hover);
	}

	.article table.table-cards td,
	.user-content table.table-cards td {
		display: block;
		border: none;
		padding: 5px 0;
		text-align: left !important;
	}

	.article table.table-cards td:first-child,
	.user-content table.table-cards td:first-child {
		padding-left: 0;
		font-size: 16px;
		font-weight: 600;
		color: var(--primary-light);
		margin-bottom: 8px;
	}

	.article table.table-cards td:before,
	.user-content table.table-cards td:before {
		content: attr(data-label) ': ';
		font-weight: 600;
		color: var(--gray-70);
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.article table.table-cards td:first-child:before,
	.user-content table.table-cards td:first-child:before {
		display: none;
	} */
}

@media (max-width: 480px) {
	.article table,
	.user-content table {
		font-size: 12px;
	}

	.article table th,
	.user-content table th,
	.article table td,
	.user-content table td {
		padding: 8px 6px;
	}

	.article table th:first-child,
	.user-content table th:first-child,
	.article table td:first-child,
	.user-content table td:first-child {
		padding-left: 10px;
	}

	.article table th:last-child,
	.user-content table th:last-child,
	.article table td:last-child,
	.user-content table td:last-child {
		padding-right: 10px;
	}

	/* Принудительный карточный вид на очень маленьких экранах */
	/* .article table:not(.table-keep-layout),
	.user-content table:not(.table-keep-layout) {
		border: none;
		box-shadow: none;
		background: transparent;
	}

	.article table:not(.table-keep-layout) thead,
	.user-content table:not(.table-keep-layout) thead {
		display: none;
	}

	.article table:not(.table-keep-layout) tbody,
	.user-content table:not(.table-keep-layout) tbody {
		display: block;
	}

	.article table:not(.table-keep-layout) tr,
	.user-content table:not(.table-keep-layout) tr {
		display: block;
		background: var(--white);
		border-radius: 8px;
		box-shadow: var(--box-shadow-1);
		margin-bottom: 12px;
		padding: 12px;
	}

	.article table:not(.table-keep-layout) td,
	.user-content table:not(.table-keep-layout) td {
		display: block;
		border: none;
		padding: 4px 0;
		text-align: left !important;
	}

	.article table:not(.table-keep-layout) td:first-child,
	.user-content table:not(.table-keep-layout) td:first-child {
		padding-left: 0;
		font-size: 14px;
		font-weight: 600;
		color: var(--primary-light);
		margin-bottom: 6px;
		border-bottom: 1px solid var(--gray-20);
		padding-bottom: 6px;
	}

	.article table:not(.table-keep-layout) td:before,
	.user-content table:not(.table-keep-layout) td:before {
		content: attr(data-label) ': ';
		font-weight: 600;
		color: var(--gray-70);
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		display: inline-block;
		min-width: 80px;
	}

	.article table:not(.table-keep-layout) td:first-child:before,
	.user-content table:not(.table-keep-layout) td:first-child:before {
		display: none;
	} */
}

/* JavaScript классы для управления адаптивностью */
.table-auto-responsive {
	/* Автоматическое переключение в карточный вид будет управляться через JS */
}

/* Стили для сравнительных таблиц */
.article table.table-comparison th,
.user-content table.table-comparison th {
	text-align: center;
	background: var(--gray-90);
	color: var(--white);
}

.article table.table-comparison td,
.user-content table.table-comparison td {
	text-align: center;
}

.article table.table-comparison td:first-child,
.user-content table.table-comparison td:first-child {
	text-align: left;
	background: var(--gray-10);
	font-weight: 600;
}

.article table.table-comparison .cell-yes::after,
.user-content table.table-comparison .cell-yes::after {
	content: '✓';
	color: var(--green);
	font-weight: bold;
	font-size: 16px;
}

.article table.table-comparison .cell-no::after,
.user-content table.table-comparison .cell-no::after {
	content: '✗';
	color: var(--red);
	font-weight: bold;
	font-size: 16px;
}
/* End */


/* Start:/local/templates/iko4v_v2/components/bitrix/news.detail/article/project.css?17533806317249*/

/* Project Hero Section */
.project-hero {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	padding: 30px;
	background: linear-gradient(135deg, var(--gray-10) 0%, var(--white) 100%);
	border-radius: var(--r3);
	border: 1px solid var(--gray-20);
}

.project-hero__image {
	flex: 1;
	max-width: 500px;
}

.project-hero__image img {
	width: 100%;
	height: auto;
	border-radius: var(--r2);
	box-shadow: var(--box-shadow-2);
}

.project-hero__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
	grid-gap: 20px;
}

.project-meta__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 8px 16px;
	background: var(--white);
	border-radius: var(--r1);
	border: 1px solid var(--gray-30);
	font-size: 14px;
	font-weight: 500;
}

.project-meta__item-title {
	font-weight: 700;
}

.project-meta__icon {
	fill: var(--green);
}

.project-prologue {
	margin-bottom: 50px;
}

/* Project Stats */
.project-stats {
	margin-bottom: 50px;
}

.project-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.project-stats__item {
	text-align: center;
	padding: 30px 20px;
	background: var(--white);
	border-radius: var(--r3);
	border: 1px solid var(--gray-20);
	transition: var(--tr25);
}

.project-stats__item:hover {
	transform: translateY(-2px);
	box-shadow: var(--box-shadow-2);
}

.project-stats__number {
	font-size: 30px;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 8px;
	font-family: var(--extra-font), sans-serif;
}

.project-stats__label {
	font-size: 15px;
	font-weight: 600;
	color: var(--gray-60);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Timeline */
.project-timeline {
	margin-bottom: 50px;
}

.timeline {
	position: relative;
	margin-top: 30px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--gray-30);
}

.timeline-item {
	position: relative;
	padding-left: 60px;
	margin-bottom: 30px;
}

.timeline-marker {
	position: absolute;
	left: 11px;
	top: 8px;
	width: 20px;
	height: 20px;
	background: var(--green);
	border-radius: 50%;
	border: 3px solid var(--white);
	box-shadow: 0 0 0 2px var(--green);
}

.timeline-content {
	background: var(--white);
	padding: 20px;
	border-radius: var(--r2);
	border: 1px solid var(--gray-20);
	box-shadow: var(--box-shadow-1);
}

.timeline-date {
	font-size: 12px;
	color: var(--green);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.timeline-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 8px;
}

.timeline-description {
	font-size: 14px;
	color: var(--gray-60);
	line-height: 1.5;
}

/* Tech Stack */
.project-tech {
	margin-bottom: 50px;
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}

.tech-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: var(--white);
	border-radius: var(--r2);
	border: 1px solid var(--gray-20);
	transition: var(--tr25);
}

.tech-item:hover {
	border-color: var(--green);
	transform: translateY(-2px);
}

.tech-icon {
	width: 40px;
	height: 40px;
	background: var(--green);
	color: var(--white);
	border-radius: var(--r1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.tech-name {
	font-weight: 500;
	color: var(--black);
}

/* Challenges */
.project-challenges {
	margin-bottom: 50px;
}

.challenges-grid {
	display: grid;
	gap: 30px;
	margin-top: 30px;
}

.challenge-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 25px;
	background: var(--white);
	border-radius: var(--r2);
	border: 1px solid var(--gray-20);
}

.challenge-problem {
	padding-right: 20px;
	border-right: 1px solid var(--gray-20);
}

.challenge-problem h3 {
	color: var(--red);
	margin-bottom: 12px;
	font-size: 16px;
}

.challenge-solution h3 {
	color: var(--green);
	margin-bottom: 12px;
	font-size: 16px;
}

.challenge-problem p,
.challenge-solution p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray-70);
}

/* Client Review */
.project-review {
	margin-bottom: 50px;
}

.review-card {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: var(--white);
	border-radius: var(--r3);
	border: 1px solid var(--gray-20);
	margin-top: 30px;
}

.review-avatar {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.review-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0!important;
}

.review-content {
	flex: 1;
}

.review-text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-70);
	margin-bottom: 15px;
	font-style: italic;
}

.review-author strong {
	color: var(--black);
	font-weight: 600;
}

.review-author span {
	color: var(--gray-60);
	font-size: 14px;
	margin-left: 8px;
}

/* Project Order CTA */
.project-order-cta {
	background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
	color: var(--white);
	padding: 40px;
	border-radius: var(--r3);
	margin: 50px 0;
	text-align: center;
}

.project-order-cta__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.project-order-cta__icon {
	font-size: 48px;
}

.project-order-cta__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}

.project-order-cta__description {
	font-size: 16px;
	opacity: 0.9;
	max-width: 600px;
}

.project-order-cta__actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.project-order-cta .btn {
	min-width: 180px;
}

.project-order-cta .btn-outline {
	border-color: var(--white);
	color: var(--white);
}

.project-order-cta .btn-outline:hover {
	background: var(--white);
	color: var(--green);
}

/* Process */
.project-process h2:not(:first-child),
.project-process h3:not(:first-child),
.project-process h4:not(:first-child),
.project-process h5:not(:first-child),
.project-process h6:not(:first-child) {
	margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.project-hero {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}

	.project-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.timeline::before {
		left: 15px;
	}

	.timeline-item {
		padding-left: 45px;
	}

	.timeline-marker {
		left: 6px;
		width: 16px;
		height: 16px;
	}

	.tech-stack {
		justify-content: center;
	}

	.challenge-item {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.challenge-problem {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid var(--gray-20);
		padding-bottom: 15px;
	}

	.review-card {
		flex-direction: column;
		text-align: center;
	}

	.project-order-cta {
		padding: 30px 20px;
	}

	.project-order-cta__actions {
		flex-direction: column;
		align-items: center;
	}

	.review-avatar {
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.project-stats__grid {
		grid-template-columns: 1fr;
	}

	.project-stats__number {
		font-size: 28px;
	}

	.timeline-content {
		padding: 15px;
	}

	.tech-item {
		padding: 12px 15px;
	}

	.challenge-item {
		padding: 20px;
	}
}
/* End */
/* /bitrix/components/bitrix/player/templates/.default/style.min.css?1746983767122 */
/* /local/templates/iko4v_v2/components/bitrix/news.detail/article/style.css?17539903811183 */
/* /local/templates/iko4v_v2/css/blog.css?175338456331776 */
/* /local/templates/iko4v_v2/components/bitrix/news.detail/article/project.css?17533806317249 */
