/* MT: сворачивание длинного описания категории */
.category_description.psbt.mt-category-desc-collapsible {
	position: relative;
}

.category_description.psbt.mt-category-desc-collapsible .p-content {
	position: relative;
	overflow: hidden;
	transition: max-height .22s ease;
}

.category_description.psbt.mt-category-desc-collapsible.mt-category-desc-collapsed .p-content {
	max-height: var(--mt-category-desc-height, 360px);
}

.category_description.psbt.mt-category-desc-collapsible.mt-category-desc-collapsed .p-content::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 86px;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 82%);
}

.category_description.psbt.mt-category-desc-collapsible.mt-category-desc-expanded .p-content {
	max-height: none;
}

.mt-category-desc-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.mt-category-desc-actions::before,
.mt-category-desc-actions::after {
	content: '';
	display: block;
	flex: 1 1 auto;
	height: 1px;
	background: rgba(0, 0, 0, .10);
}

.mt-category-desc-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 28px;
	padding: 0 4px;
	border: 0;
	background: transparent;
	color: #457DE3;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	white-space: nowrap;
	cursor: pointer;
	transition: color .18s ease;
}

.mt-category-desc-toggle:hover,
.mt-category-desc-toggle:focus {
	color: #316bd0;
	text-decoration: none;
	outline: none;
}

.mt-category-desc-toggle:focus-visible {
	border-radius: 6px;
	box-shadow: 0 0 0 3px rgba(69,125,227,.16);
}

.mt-category-desc-toggle::after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .18s ease;
}

.category_description.psbt.mt-category-desc-expanded .mt-category-desc-toggle::after {
	transform: translateY(2px) rotate(225deg);
}

html.dark-theme .category_description.psbt.mt-category-desc-collapsible.mt-category-desc-collapsed .p-content::after,
.dark-theme .category_description.psbt.mt-category-desc-collapsible.mt-category-desc-collapsed .p-content::after {
	background: linear-gradient(to bottom, rgba(17,17,17,0), #111 82%);
}

html.dark-theme .mt-category-desc-actions::before,
html.dark-theme .mt-category-desc-actions::after,
.dark-theme .mt-category-desc-actions::before,
.dark-theme .mt-category-desc-actions::after {
	background: rgba(255, 255, 255, .12);
}

html.dark-theme .mt-category-desc-toggle,
.dark-theme .mt-category-desc-toggle {
	color: #8FB4FF;
}

html.dark-theme .mt-category-desc-toggle:hover,
html.dark-theme .mt-category-desc-toggle:focus,
.dark-theme .mt-category-desc-toggle:hover,
.dark-theme .mt-category-desc-toggle:focus {
	color: #a8c5ff;
}

@media (max-width: 767px) {
	.category_description.psbt.mt-category-desc-collapsible.mt-category-desc-collapsed .p-content {
		max-height: var(--mt-category-desc-height-mobile, 300px);
	}

	.mt-category-desc-actions {
		gap: 10px;
		margin-top: 16px;
	}

	.mt-category-desc-toggle {
		font-size: 15px;
	}
}
