/* === Базовая сетка и колонки === */
.blog-sidebar > #column-right,
.blog-sidebar > #column-left {
	width: 100%;
}

.blog-layout {
	display: flex;
    flex-wrap: wrap;
	width: 100%;
	gap: 24px;
}

/*.justify-content-center {
  justify-content: center !important;
}

@media (min-width: 1200px) {
	.justify-content-xl-start {
    justify-content: flex-start !important;
  }
}

.pt-3 {
	padding-top: 1rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}*/

.column-width {
	flex: 1;
	min-width: 240px;
	max-width: 320px;
}

.page-main {
	flex: 0 0 800px;
	max-width: 100%;
}

.blog-content {
	width: 100%;
}

.blog-sidebar {
	flex: 1 1 0;
}

/* === Контейнер категории блога === */
/*.uni-blog-category {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;

}*/

/*.uni-blog-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}*/

/*.uni-blog-col {
	padding: 0 10px;
	margin-bottom: 24px;
}*/

/*.uni-blog-col--main {
	flex: 1 0 0;
	min-width: 300px;
}*/

/*.uni-blog-col--sidebar {
	flex: 0 0 300px;
	max-width: 300px;
}*/

/* === Хлебные крошки === */
.uni-blog-breadcrumb {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	font-size: 14px;
	color: #666;
}

.uni-blog-breadcrumb li {
	display: inline;
}

.uni-blog-breadcrumb li:after {
	content: " / ";
	margin: 0 6px;
}

.uni-blog-breadcrumb li:last-child:after {
	content: "";
}

.uni-blog-breadcrumb a {
	color: #1955a6;
	text-decoration: none;
}

.uni-blog-breadcrumb a:hover {
	text-decoration: underline;
}

/* === Заголовок === */
/*.uni-blog-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 20px 0;
	line-height: 1.3;
	color: #222;
	}*/


.uni-blog-title h1 {
	font-size: calc(1.375rem + 1.5vw) !important;
	font-weight: 700;
	margin: 0 0 20px 0;
	line-height: 1.1;
	}
	
@media (min-width: 1200px) {
	.uni-blog-title h1 {
		font-size: 2.5rem !important;
	}
}



/* === Описание категории === */
.uni-blog-category-desc-wrapper {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}

.uni-blog-category-desc-content {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.uni-blog-category-desc-img {
	flex: 0 0 120px;
}

.uni-blog-category-desc-img img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

.uni-blog-category-desc-text {
	flex: 1;
	line-height: 1.6;
	color: #333;
}

/* Сворачивание текста */
.uni-blog-category-desc--collapsed {
	max-height: 180px;
	overflow: hidden;
	position: relative;
}

.uni-blog-category-desc--collapsed::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to top, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}

.uni-blog-category-desc-toggle {
	text-align: center;
	margin-top: 12px;
}

.uni-blog-category-desc-toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1955a6;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
	}

.uni-blog-category-desc-toggle-text-collapse {
	display: none;
}

.uni-blog-category-desc--collapsed + .uni-blog-category-desc-toggle .uni-blog-category-desc-toggle-text-collapse {
	display: inline;
}

.uni-blog-category-desc--collapsed + .uni-blog-category-desc-toggle .uni-blog-category-desc-toggle-text-expand {
	display: none;
}

.uni-blog-category-desc-toggle-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #1955a6;
	transition: transform 0.3s;
}

.uni-blog-category-desc--collapsed + .uni-blog-category-desc-toggle .uni-blog-category-desc-toggle-icon {
	transform: rotate(180deg);
}

/* === Панель управления === */
.uni-blog-controls {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin: 24px 0 32px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
	justify-content: space-between;
}

.uni-blog-view-toggle {
	display: flex;
	gap: 6px;
}

.uni-blog-btn {
	padding: 6px 6px;
	background: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	height: 30px;
}

.uni-blog-btn.active {
	background: #1955a6;
	color: white;
	border-color: #1955a6;
}

.uni-blog-select-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.uni-blog-select-group label {
	font-size: 14px;
	color: #333;
	white-space: nowrap;
}

.uni-blog-select {
	padding: 6px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: white;
	font-size: 14px;
}

/* === Сетка статей === */
.uni-grid.uni-blog-view--grid {
	display: grid;
	gap: 8px;
	margin-bottom: 24px;
	grid-template-columns: repeat(var(--uni-cols-xs, 1), 1fr);
}

@media (min-width: 576px) {
	.uni-grid.uni-blog-view--grid { grid-template-columns: repeat(var(--uni-cols-sm, 2), 1fr); }
}
@media (min-width: 768px) {
	.uni-grid.uni-blog-view--grid { grid-template-columns: repeat(var(--uni-cols-md, 2), 1fr); }
}
@media (min-width: 992px) {
	.uni-grid.uni-blog-view--grid { grid-template-columns: repeat(var(--uni-cols-lg, 3), 1fr); }
}
@media (min-width: 1200px) {
	.uni-grid.uni-blog-view--grid { grid-template-columns: repeat(var(--uni-cols-xl, 3), 1fr); gap: 8px;}
}
@media (min-width: 1400px) {
	.uni-grid.uni-blog-view--grid { grid-template-columns: repeat(var(--uni-cols-xxl, 4), 1fr); }
}

/* === Режимы отображения === */
/*.uni-grid.uni-blog-view--grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}*/


.uni-grid.uni-blog-view--list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* === Карточка статьи === */
.uni-blog-article-card {
	border: 1px solid #eee;
	border-radius: .25rem;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s;
}

.uni-blog-article-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.uni-blog-article-card img {
	width: 100%;
	height: auto;
	display: block;
}

.uni-blog-article-card__name {
	font-weight: 600;
	font-size: 18px;
	margin: 8px 16px 12px 16px;
}

.uni-blog-article-card__desc {
	font-size: 14px;
	color: #555;
	margin: 0 16px 16px 16px;
	line-height: 1.5;
}

.uni-blog-article-card__meta {
	display: flex;
	gap: 8px;
	padding: 0 16px 16px 16px;
	color: #777;
	font-size: 13px;
	flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}


.meta-icon {
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	margin-bottom: 3px;
}



/* 1. Превращаем карточку в вертикальный flex-контейнер */
.uni-blog-view--grid .uni-blog-article-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Важно: карточка должна занимать всю высоту ячейки сетки */
}

/* 2. Заставляем контентную часть растягиваться */
.uni-blog-view--grid .uni-blog-article-card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 3. Опционально: если описание мешает выравниванию, можно дать ему flex-grow: 1 */
.uni-blog-view--grid .uni-blog-article-card__desc {
    flex-grow: 1;
}
.uni-blog-view--grid .uni-blog-article-card__name {
    flex-grow: 1;
}

.uni-grid .splide__track {
	height: 100%;
  padding-bottom: 15px;
}




/* === Режим списка === */
.uni-blog-view--list .uni-blog-article-card {
	display: flex;
	gap: 16px;
	padding: 16px;
}

.uni-blog-view--list .uni-blog-article-card img {
	width: 200px;
	object-fit: cover;
	border-radius: 4px;
}


.uni-blog-view--list .uni-blog-article-card__content {
	flex: 1;
  display: flex;
  flex-direction: column;
}

.uni-blog-view--list .uni-blog-article-card__meta {
	padding-top: 8px;
	font-size: 13px;
	color: #777;
}




/* === Адаптивность режима списка === */
@media (max-width: 767.98px) {
	.uni-grid.uni-blog-view--list .uni-blog-article-card {
		flex-direction: column;
	}

	.uni-grid.uni-blog-view--list .uni-blog-article-card img {
		width: 100%;
		height: auto;
	}

	.uni-grid.uni-blog-view--list .uni-blog-article-card__content {
		display: flex;
		flex-direction: column;
	}

	.uni-grid.uni-blog-view--list .uni-blog-article-card__meta {
		flex-wrap: wrap;
		gap: 12px;
		padding-top: 0;
	}

	.uni-blog-view--list .uni-blog-article-card {
		padding: 0;
		gap: 0;
	}

	.uni-grid.uni-blog-view--list {
		gap: 24px;
	}
}

/* === Пагинация === */
.uni-blog-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
}

.uni-blog-pagination .links {
	display: flex;
	gap: 6px;
}

.uni-blog-pagination .links a,
.uni-blog-pagination .links b {
	padding: 6px 12px;
	border: 1px solid #ddd;
	text-decoration: none;
	color: #333;
}

.uni-blog-pagination .links b {
	background: #1955a6;
	color: white;
	border-color: #1955a6;
}

/* === Пустая категория === */
.uni-blog-empty {
	text-align: center;
	padding: 40px 0;
	color: #666;
}

.uni-blog-empty a {
	display: inline-block;
	margin-top: 16px;
	padding: 8px 24px;
	background: #1955a6;
	color: white;
	text-decoration: none;
	border-radius: 4px;
}

/* === Иконки переключения вида === */
.uni-blog-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-color: currentColor;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.uni-blog-icon-list {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill-rule='evenodd' d='M1.5 1.5v17h17v-17h-17Zm15.75 1.25H8.625v6.625h8.625V2.75Zm0 7.875H8.625v6.625h8.625v-6.625Zm-9.875-1.25V2.75H2.75v6.625h4.625Zm-4.625 1.25h4.625v6.625H2.75v-6.625Z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill-rule='evenodd' d='M1.5 1.5v17h17v-17h-17Zm15.75 1.25H8.625v6.625h8.625V2.75Zm0 7.875H8.625v6.625h8.625v-6.625Zm-9.875-1.25V2.75H2.75v6.625h4.625Zm-4.625 1.25h4.625v6.625H2.75v-6.625Z'/></svg>");
}

.uni-blog-icon-grid {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill-rule='evenodd' d='M1.5 1.5v17h17v-17h-17Zm15.75 1.25h-6.625v6.625h6.625V2.75Zm0 7.875h-6.625v6.625h6.625v-6.625Zm-7.875-1.25V2.75H2.75v6.625h6.625Zm-6.625 1.25h6.625v6.625H2.75v-6.625Z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill-rule='evenodd' d='M1.5 1.5v17h17v-17h-17Zm15.75 1.25h-6.625v6.625h6.625V2.75Zm0 7.875h-6.625v6.625h6.625v-6.625Zm-7.875-1.25V2.75H2.75v6.625h6.625Zm-6.625 1.25h6.625v6.625H2.75v-6.625Z'/></svg>");
}

/* === Readmore / скрытие текста === */


.uni-blog-category-description-text,
.uni-blog-category-description-text-bottom,
.uni-blog-category-description-text-top {
	display: block;
	width: 100%;
	overflow: hidden;
}

.uni-blog-description-bottom {
	margin-top: 15px;
}

.uni-blog-description-top {
	margin-top: 16px;
	margin-bottom: 36px;
}

.uni-blog-block-readmore {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    text-align: center;
}

.uni-blog-block-readmore a,
.uni-blog-block-readmore button {
	background: #fff;
	color: #1955a6;
	display: inline-block;
	padding: 0 5px;
	position: relative;
	top: -11px;
	font-size: 14px;
}

.uni-blog-block-readmore a .fa {
	font-size: 14px;
}

.uni-blog-category-description-cont {
	display: block !important;
	overflow: hidden;
	height: auto;
	max-height: 140px !important;
	position: relative;
	transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.uni-blog-category-description-cont.expanded {
	max-height: 100% !important;
	transition: max-height 1s ease-in-out;
}

.uni-blog-category-description-opacity {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
	opacity: 1;
	transition: opacity .3s ease;
	z-index: 1;
}

.uni-blog-category-description-opacity.hidden {
	opacity: 0;
	z-index: -1;
}

.uni-blog-angle-down::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .155em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
}

.uni-blog-angle-up::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .155em;
	content: "";
	border-top: 0;
	border-right: .3em solid transparent;
	border-bottom: .3em solid;
	border-left: .3em solid transparent;
}


/* === Сортировка === */
.uni-blog-sort-controls {
	display: flex;
	gap: 12px;
	align-items: center;
}

@media (max-width: 767.98px) {
	.uni-blog-sort-controls {
		/* flex-direction: column; */
	}
}

/* === Адаптивность основной сетки === */
@media (max-width: 992px) {
	.uni-blog-col--sidebar {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.uni-blog-col--main {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.uni-blog-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.uni-blog-view-toggle,
	.uni-blog-select-group {
		width: 100%;
		justify-content: center;
	}

	.uni-blog-select-group {
		flex-wrap: wrap;
	}

	/*.uni-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}*/
}

/* === TOC (Содержание статьи) === */
/*.article-toc {
	position: relative;
	padding: 16px;
	border-radius: 4px;
	background: #f3f5f9;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
	margin-bottom: 0;
}

.article-toc:hover {
	border-color: #c7d2fe;
}

.article-toc__toggle {
	all: unset;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
}

.article-toc__icon {
	width: 14px;
	height: 14px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-135deg);
	transition: transform 0.25s ease;
}

.article-toc__content {
	overflow: hidden;
	transition: max-height .35s ease, opacity .25s ease;
	max-height: 2000px;
	opacity: 1;
	margin-top: 12px;
}

.article-toc.is-collapsed .article-toc__content {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}

.article-toc.is-collapsed .article-toc__icon {
	transform: rotate(45deg);
}

.article-toc__list a {
	color: #6b7280;
	text-decoration: none;
}

.article-toc__list a:hover,
.article-toc__list a.is-active {
	color: #1f2937;
	
}

.article-toc__title svg {
	position: relative;
	bottom: 2px;
}

.article-toc__title span {
	padding-left: 8px;
}*/

/* === Мини-кнопка TOC === */
/*.article-toc-mini {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background: #1f2937;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	display: none;
}

.article-toc-mini-content {
	display: none;
	position: fixed;
	bottom: 80px;
	left: 20px;
	z-index: 1000;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	max-height: 400px;
	overflow-y: auto;
	padding: 12px;
	width: 280px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s, transform 0.3s;
}

.article-toc-mini-content.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.article-toc-mini-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-toc-mini-content li {
	padding: 6px 0;
}

.article-toc-mini-content a {
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	display: block;
}

.article-toc-mini-content a:hover,
.article-toc-mini-content a.is-active {
	color: #4f46e5;
	
}*/

/* === Секции для плавного скролла === */
/*.article-section {
	scroll-margin-top: 90px;
}
*/
/****************/

/*.article-section {
	margin-bottom: 2rem;
	scroll-margin-top: 100px;
}

html { scroll-behavior: smooth; }
*/

.accordion-item:first-of-type {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  }

.accordion-item:last-of-type {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}





.article-faq .accordion-button:focus {
	z-index: 3;
	border-color: #f6f6f6;
	outline: 0;
	box-shadow: none;
}

.article-faq .accordion-button:not(.collapsed) {
	color: #5C5C5C;
	background-color: #f6f6f6;
	box-shadow: none;
}
.article-faq .accordion-item {
	background-color: #fff;
	/*border-left: none;
	border-right: none;*/
}

.article-faq .accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c5c5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out;
}

.article-faq .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c5c5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(-180deg);
}

/************/


.us-blog-faq {
  padding: 0 30px 30px 0;
}


.article-faq .accordion {
	/*padding: 0 30px 30px;*/
	
}

.article-faq .accordion-button,
.article-faq .accordion-body {
	padding-right: 30px;
    padding-left: 30px;
	font-size: 18px;
}

	/* Блок автора */
	.uni-blog-author {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 16px;
	background: #f9f9f9;
	margin-bottom: 32px;
	}
	.uni-blog-author__title {
	font-size: 14px;
	color: #777;
	margin: 0 0 8px 0;
	}
	.uni-blog-author__name {
	font-weight: 600;
	font-size: 18px;
	margin: 0 0 12px 0;
	}
	.uni-blog-author img {
	max-width: 100px;
	height: auto;
	float: left;
	margin: 0 16px 16px 0;
	border-radius: 4px;
	}
	.uni-blog-author__desc {
	margin: 0;
	color: #555;
	line-height: 1.5;
	}
	.uni-blog-author::after {
	content: "";
	display: table;
	clear: both;
	}
	

/*********************/
#blog-article .us-breadcrumb .breadcrumb-item:last-child {
  display: none;
}
#blog-article .breadcrumbs-wrapper .us-breadcrumb .breadcrumb-item:last-child {
  display: none !important;
}

.uni-blog-category-description-img {
padding-bottom: 1rem;	
}

@media (min-width: 768px) {
  .uni-blog-category-description-img {
    /*margin-right: 1rem !important;*/
	padding-right: 2rem !important;
    float: left !important;
  }
}



/* FAQ */
.accordion-item:first-of-type {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  }

.accordion-item:last-of-type {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}





.article-faq .accordion-button:focus {
	z-index: 3;
	border-color: #f6f6f6;
	outline: 0;
	box-shadow: none;
}

.article-faq .accordion-button:not(.collapsed) {
	color: #5C5C5C;
	background-color: #f6f6f6;
	box-shadow: none;
}

.article-faq .accordion-collapse.collapse.show {border-bottom: 1px solid rgba(204,204,204,0.5);}


.article-faq .accordion-item {
	background-color: #fff;
	/*border-left: none;
	border-right: none;*/
}

.article-faq .accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c5c5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out;
}

.article-faq .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c5c5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(-180deg);
}

/************/


.us-blog-faq {
  padding: 0 30px 30px 0;
}


.article-faq .accordion {
	/*padding: 0 30px 30px;*/
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-faq .accordion-button,
.article-faq .accordion-body {
	padding-right: 30px;
    padding-left: 30px;
	font-size: 18px;
	width: 100%;
}


/*
.uni-blog-faq h3,
.uni-blog-related h3 {
    font-size: 20px;
    margin: 32px 0 16px 0;
    color: #222;
}
.uni-article-faq {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}
.uni-article-faq__item {
    border-bottom: 1px solid #eee;
    background: #fff;
}
.uni-article-faq__item:last-child {
    border-bottom: none;
}
.uni-article-faq__question {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 16px;
    transition: background-color 0.2s;
}
.uni-article-faq__question:hover {
    background-color: #f8f9fa;
}
.uni-article-faq__item.active .uni-article-faq__question {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 15l7-7 7 7'%3E%3C/path%3E%3C/svg%3E");
}
.uni-article-faq__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
    line-height: 1.5;
}
.uni-article-faq__answer-text {
    padding: 12px 0;
}
.uni-article-faq__item.active .uni-article-faq__answer {
   
}
*/


.uni-blog-post-info {
  display: flex;
  gap: 12px;
  color: #777;
  font-size: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  
}

.uni-blog-post-info-item {
	display: flex;
	align-items: center;
}
	
.uni-blog-images img,
.uni-blog-thumb img {
  margin: 1.25rem 0 .5rem 0;
  border-radius: 2px 2px 2px 2px;
  box-shadow: 0 3px 5px 0 #c6cfde;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.uni-blog-images figcaption,
.uni-blog-thumb figcaption {
  color: #AFAFAF;
}


/* Товары и статьи */
/*.uni-blog-products,
.uni-blog-articles {
    margin-bottom: 32px;
}
.uni-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.uni-blog-product,
.uni-blog-article-card {
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.uni-blog-product img,
.uni-blog-article-card img {
    width: 100%;
    height: auto;
    display: block;
}
.uni-blog-product__name,
.uni-blog-article-card__name {
    font-weight: 600;
    font-size: 16px;
    margin: 12px 0 8px 12px;
}
.uni-blog-product__desc,
.uni-blog-article-card__desc {
    font-size: 14px;
    color: #666;
    margin: 0 12px 12px 12px;
    line-height: 1.4;
}
*/



.uni-blog-rating{
margin: 12px 16px 0px 16px;
	}

.uni-blog-rating-star{background-image:url(../img/module-star-icon.svg);background-repeat:no-repeat;background-size:cover;width:14px;height:14px;display:inline-block}
.uni-blog-rating-star+.uni-blog-rating-star{margin-left:2px}
.uni-blog-rating-star-is{background-image:url(../img/module-star-icon-is.svg)}



.uni-blog-reviews {
  margin-left: 8px;
  position: relative;
}
.uni-blog-reviews i, .uni-blog-reviews svg {
  font-size: 25px;
  color: #CBCFD4;
  fill: #CBCFD4;
  top: -2px;
position: relative;
}

.uni-blog-reviews span {
  color: #8e8e8e;
  font-size: 13px;
  left: 0;
  right: 0;
  text-align: center;
}

.meta-item svg {
	top: -2px;
  position: relative;
}


/* Оглавление статьи с возможностью сворачивания */


/* Оглавление статьи */
.article-toc {
    background: #f8f9fa;
    border-left: 4px solid #1955a6;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.article-toc:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Заголовок оглавления с кнопкой */
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.toc-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Кнопка сворачивания/разворачивания */
.toc-toggle-btn {
    background: none;
    border: none;
    color: #1955a6;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.toc-toggle-btn:hover {
    background: #e7f3ff;
    color: #0056b3;
    transform: scale(1.1);
}

.toc-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

/* Контент оглавления */
.toc-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
}

/* Список оглавления */
.toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list li a {
    color: #1955a6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    border-left: 3px solid transparent;
}

.toc-list li a:hover {
    color: #0056b3;
    background: #e7f3ff;
    border-left-color: #1955a6;
    padding-left: 15px;
}

.toc-list li a.is-active {
    color: #0056b3;
    background: #d4edff;
    border-left-color: #1955a6;
    font-weight: 600;
    padding-left: 15px;
}

.toc-list li a:active {
    background: #d4edff;
}

/* Уровни вложенности */
.toc-level-2 {
    margin-left: 0;
    font-weight: 600;
    font-size: 15px;
}

.toc-level-3 {
    margin-left: 20px;
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

/* Состояние свернутого оглавления */
.toc-collapsed .toc-content {
    max-height: 0 !important;
    opacity: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.toc-collapsed .toc-toggle-btn i {
    transform: rotate(180deg);
}

/* Адаптивность */
@media (max-width: 768px) {
    .article-toc {
        padding: 15px;
    }
    
    .toc-header h3 {
        font-size: 16px;
    }
    
    .toc-level-2 {
        font-size: 14px;
    }
    
    .toc-level-3 {
        font-size: 13px;
        margin-left: 15px;
    }
    
    .toc-list li a {
        padding: 6px 10px;
        font-size: 13px;
    }
}


/***************/
/* Подсветка активного пункта оглавления */
.article-toc .toc-list li a.is-active {
    color: #0056b3;
    font-weight: 600;
    background: #e7f3ff;
    border-left-color: #1955a6;
    position: relative;
}

.article-toc .toc-list li a.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: #1955a6;
    border-radius: 3px;
}

/* Анимация при наведении */
.article-toc .toc-list li a {
    transition: all 0.2s ease;
    position: relative;
    padding-left: 12px;
}

.article-toc .toc-list li a:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 14px;
    background: #1955a6;
    border-radius: 2px;
}



/*******************/
/* === Все авторы === */
.uni-grid.uni-blog-author-view--list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	}


.uni-blog-author-card {
	border: 1px solid #eee;
	border-radius: .25rem;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s;
}

.uni-blog-author-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



.uni-blog-author-card__name {
	font-weight: 600;
	font-size: 18px;
	margin: 8px 16px 12px 16px;
}

.uni-blog-author-card__desc {
	font-size: 14px;
	color: #555;
	margin: 0 16px 16px 16px;
	line-height: 1.5;
}

.uni-blog-author-card__position {
	font-size: 14px;
	color: #555;
	margin: 0 16px 16px 16px;
	line-height: 1.5;
}

.uni-blog-author-card__read-more {
	font-size: 14px;
	color: #555;
	margin: 0 16px 16px 16px;
	line-height: 1.5;
}

.uni-blog-author-card__meta {
	display: flex;
	gap: 8px;
	padding: 0 16px 16px 16px;
	color: #777;
	font-size: 13px;
	flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}



.uni-blog-author-view--list .uni-blog-author-card {
	display: flex;
	gap: 16px;
	padding: 16px;
}

.uni-blog-author-card img {
	width: 100%;
	height: auto;
	display: block;
}

.uni-blog-author-view--list .uni-blog-author-card img {
	width: 200px;
	object-fit: cover;
	border-radius: 4px;
}

.uni-blog-author-view--list .uni-blog-author-card__content {
	flex: 1;
}

.uni-blog-view--list .uni-blog-author-card__meta {
	padding-top: 8px;
	font-size: 13px;
	color: #777;
}


@media (max-width: 767.98px) {
	.uni-grid.uni-blog-author-view--list .uni-blog-author-card {
		flex-direction: column;
	}

	.uni-grid.uni-blog-author-view--list .uni-blog-author-card img {
		width: 100%;
		height: auto;
	}

	.uni-grid.uni-blog-author-view--list .uni-blog-author-card__content {
		display: flex;
		flex-direction: column;
	}

	.uni-grid.uni-blog-author-view--list .uni-blog-author-card__meta {
		flex-wrap: wrap;
		gap: 12px;
		padding-top: 0;
	}

	.uni-blog-author-view--list .uni-blog-author-card {
		padding: 0;
		gap: 0;
	}

	.uni-grid.uni-blog-author-view--list {
		gap: 24px;
	}
}


/******************/














/* Grid-макет профиля автора */
.author-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Изображение автора */
.author-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-image {
  margin: 0;
  width: fit-content;
}

.author-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.author-image img:hover {
  transform: scale(1.03);
}

/* Информация об авторе */
.author-info-container {
  text-align: center;
}

.author-name {
  margin: 0 0 0.75rem 0;
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.author-position {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.author-short-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #495057;
  font-size: 1.0625rem;
}

/* Социальные сети */
.author-social {
  margin-bottom: 1.25rem;
}

.author-social strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #495057;
  font-size: 0.9375rem;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.author-social li {
  margin: 0;
}

.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #495057;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  position: relative;
}

.author-social a:hover {
  background-color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(13,110,253,0.3);
}

.author-social a i {
  position: absolute;
  transition: opacity 0.3s ease;
}

.author-social a .social-name {
  opacity: 0;
  position: absolute;
  white-space: nowrap;
  background: #212529;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.author-social a:hover .social-name {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

/* Email */
.author-email {
  margin-top: 1rem;
  color: #6c757d;
  font-size: 0.9375rem;
}

.author-email-link {
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.2s;
}

.author-email-link:hover {
  color: #0a58ca;
  text-decoration: underline;
}

/* Полное описание */
.author-description-full {
  grid-column: 1 / -1;
  line-height: 1.8;
  color: #495057;
  font-size: 1.125rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.author-description-full p {
  margin-bottom: 1rem;
}

.author-description-full p:last-child {
  margin-bottom: 0;
}

/* Адаптивный макет для ПК */
@media (min-width: 992px) {
  .author-profile-grid {
    grid-template-columns: 220px 1fr;
    grid-template-areas:
      "image info"
      "description description";
    gap: 2.5rem;
    padding: 2rem;
  }
  
  .author-image-container {
    grid-area: image;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .author-info-container {
    grid-area: info;
    text-align: left;
    align-self: center;
  }
  
  .author-name {
    font-size: 2.25rem; /* 36px */
  }
  
  .author-position {
    font-size: 1.25rem;
  }
  
  .author-short-description {
    font-size: 1.125rem;
  }
  
  .social-list {
    justify-content: flex-start;
  }
  
  .author-description-full {
    padding-top: 2rem;
  }
  
  .author-image img {
    width: 200px;
    height: 200px;
  }
}

/* Адаптация для планшетов */
@media (min-width: 768px) and (max-width: 991px) {
  .author-profile-grid {
    padding: 1.75rem;
  }
  
  .author-name {
    font-size: 2rem;
  }
  
  .author-image img {
    width: 170px;
    height: 170px;
  }
}


/*******************/
.uni-blog-article-author-block h3 {
  font-size: 20px;
  margin: 32px 0 16px 0;
  color: #222;
}



/* Grid-макет профиля автора */
.uni-blog-article-author-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  /*gap: 2rem;*/
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


  .uni-blog-article-author-profile-grid {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "image info"
      "description description";
    /*gap: 2.5rem;*/
    padding: 0;
  }



/* Изображение автора */
.uni-blog-article-author-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.uni-blog-article-author-image {
  margin: 0;
  width: fit-content;
}

.uni-blog-article-author-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.uni-blog-article-author-image img:hover {
  transform: scale(1.03);
}

/* Информация об авторе */
.uni-blog-article-author-info-container {
  /*text-align: center;*/
  margin-left: 15px;
}




.uni-blog-article-author-position {
  color: #6c757d;
  font-style: italic;
  margin-bottom: .75rem;
  font-size: 1.125rem;
}




.uni-blog-article-author-short-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #495057;
  font-size: 1.0625rem;
}


.uni-blog-article-author-href {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #495057;
  font-size: 1.0625rem;
}

.uni-blog-article-author-name {
  margin: 0 0 0.25rem 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

  .uni-blog-article-author-profile-grid {
    padding: 0.75rem;
  }

/* Адаптация для планшетов */
@media (min-width: 768px) and (max-width: 991px) {
  .uni-blog-article-author-profile-grid {
    grid-template-columns: 100px 1fr;
    grid-template-areas:
      "image info"
      "description description";

	  padding: 1.75rem;
  }
  
  .uni-blog-article-author-name {
    font-size: 1.5rem;
  }
  
  .uni-blog-article-author-image img {
    width: 100px;
    height: 100px;
  }
}



/* Адаптивный макет для ПК */
@media (min-width: 992px) {
	
.uni-blog-article-author-position {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}	
	
	.uni-blog-article-author-name {
  margin: 0 0 0.75rem 0;
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}
	
	
  .uni-blog-article-author-profile-grid {
    grid-template-columns: 120px 1fr;
    grid-template-areas:
      "image info"
      "description description";
    /*gap: 2.5rem;*/
    padding: 2rem;
  }
  
  .uni-blog-article-author-image-container {
    grid-area: image;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
	/*margin: 5px;*/
  }
  
  .uni-blog-article-author-info-container {
    grid-area: info;
    text-align: left;
    align-self: center;
	margin-left: 25px;
  }
  
  .uni-blog-article-author-name {
    font-size: 1.75rem; /* 36px */
  }
  
  .uni-blog-article-author-position {
    font-size: 1.125rem;
  }
  
  .uni-blog-article-author-short-description {
    font-size: 1.125rem;
  }
  
  .uni-blog-article-author-href {
    font-size: 1.125rem;
  }
  
  .uni-blog-article-author-image img {
    width: 120px;
    height: 120px;
  }
}








/* === TOC (Содержание статьи) === */
.article-toc {
	position: relative;
	padding: 16px;
	border-radius: 8px;
	background: #F7F7F7;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 20px rgba(0,0,0,.04);
	margin-bottom: 0;
}

.article-toc:hover {
	border-color: #F7F7F7;
}

.article-toc__toggle {
	all: unset;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
}

/*.article-toc__icon {
	width: 14px;
	height: 14px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-135deg);
	transition: transform 0.25s ease;
}*/

.article-toc__content {
	overflow: hidden;
	transition: max-height .35s ease, opacity .25s ease;
	max-height: 2000px;
	opacity: 1;
	margin-top: 12px;
}

.article-toc.is-collapsed .article-toc__content {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}

/*.article-toc.is-collapsed .article-toc__icon {
	transform: rotate(45deg);
}*/

.article-toc__toggle::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c5c5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s ease-in-out;
	transform: rotate(-180deg);
}

.article-toc.is-collapsed .article-toc__toggle::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235c5c5c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	transform: rotate(0deg);
}









.article-toc__list a {
	color: #6b7280;
	text-decoration: none;
}

.article-toc__list a:hover,
.article-toc__list a.is-active {
	color: #1f2937;
	/*font-weight: 600;*/
}

.article-toc__title svg {
	position: relative;
	bottom: 2px;
}

.article-toc__title span {
	padding-left: 8px;
}

/* === Мини-кнопка TOC === */
.article-toc-mini {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 999;
	border-radius: 8px;
	width: 50px;
	height: 50px;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	display: none;
	background: #f3f5f9;
  border: 1px solid #e5e7eb;
  opacity: 0.8;
}

.article-toc-mini-content {
	display: none;
	position: fixed;
	bottom: 80px;
	left: 20px;
	z-index: 1000;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	max-height: 400px;
	overflow-y: auto;
	padding: 12px;
	width: 320px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s, transform 0.3s;
}

.article-toc-mini-content.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.article-toc-mini-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-toc-mini-content li {
	padding: 6px 0;
}

.article-toc-mini-content a {
	color: #374151;
	text-decoration: none;
	/*font-size: 16px;*/
	display: block;
}

.article-toc-mini-content a:hover,
.article-toc-mini-content a.is-active {
	color: #50A8FF;
	/*font-weight: 600;*/
}


/* Общие стили для обоих списков */
.article-toc__list,
.article-toc-mini-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-toc__list li,
.article-toc-mini-content li {
  margin-bottom: 8px;
}

.article-toc__list a,
.article-toc-mini-content a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  text-decoration: none;
  color: #334155;
  /*font-size: 15px;*/
  transition: color 0.2s, background-color 0.2s;
  border-radius: 6px;
}

.article-toc__list a:hover,
.article-toc__list a.is-active,
.article-toc-mini-content a:hover,
.article-toc-mini-content a.is-active {
  color: #0ea5e9;
  /*background-color: #f0f9ff;*/
}

/* Иконки для основного списка */
.article-toc__list li.level-1 a::before,
.article-toc-mini-content li.level-1 a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='%230ea5e9' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.article-toc__list li.level-2 a::before,
.article-toc-mini-content li.level-2 a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='%2364748b' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Отступы для вложенности */
.article-toc__list li.level-2,
.article-toc-mini-content li.level-2 {
  padding-left: 24px;
}

/* Активные состояния */
.article-toc__list a.is-active::before,
.article-toc-mini-content a.is-active::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='%230ea5e9' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='4'/%3E%3C/svg%3E");
}

/* === Секции для плавного скролла === */
/*.article-section {
	scroll-margin-top: 90px;
}*/

/****************/

/*.article-section {
	margin-bottom: 2rem;
	scroll-margin-top: 100px;
}

html { scroll-behavior: smooth; }*/






















