

/* Start:/local/templates/intrasevice/components/bitrix/news/capabilities/style.css?178775400621415*/
/* ============================================================
   /capabilities/ — страница возможностей.
   Один язык с главной: белые карточки со скруглением 20px, мягкие тени,
   градиентный акцент #9E0EC1 → #d22bbf, ghost-пилюля «Подробнее».
   Старая раскладка (фиксированные высоты, серые линии-разделители)
   не используется — карточки тянутся по контенту.

   Файл — style.css шаблона комплексного компонента bitrix:news, поэтому
   подключается и на списке, и на детальных, и только в этом разделе.
   Грузится ДО template style.css, из-за этого селекторы, спорящие со
   старыми правилами (.capabilities .container, .header h1, .content p,
   .header-v2 h1), намеренно взяты весом выше — через двойной класс на секции.
   Маркер: INTRA-MODERN-CAPS-2026
   ============================================================ */

/* — шапка: общая полоса для списка и детальной — */
section.header.caps-hero,
.header-v2.caps-detail-hero {
	margin-top: 34px;
	margin-bottom: 0;
	text-align: left;
}
.caps-hero__band {
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	padding: clamp(34px, 4.4vw, 58px) clamp(22px, 4vw, 60px);
	background: linear-gradient(135deg, #fafaff 0%, #f4f4fb 52%, #edecf7 100%);
	box-shadow: 0 12px 34px rgba(106, 43, 196, .07);
	text-align: center;
}
.caps-hero__band--detail { text-align: left; }

/* мягкие световые пятна по углам — «воздух» без картинок */
.caps-hero__band::before,
.caps-hero__band::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.caps-hero__band::before {
	right: -90px;
	top: -130px;
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(106, 43, 196, .10) 0%, rgba(106, 43, 196, 0) 68%);
}
.caps-hero__band::after {
	left: -80px;
	bottom: -150px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(106, 43, 196, .07) 0%, rgba(106, 43, 196, 0) 70%);
}

.header.caps-hero h1,
.header-v2.caps-detail-hero h1 {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(30px, 4.2vw, 48px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.02em;
	color: #1b1726;
	padding: 0;
}
/* старые мобильные правила центрируют .header-v2 h1 — держим по левому краю,
   иначе акцентная полоса уезжает от текста */
.header-v2.caps-detail-hero h1 { text-align: left; }
.header.caps-hero h1 strong {
	font-weight: 800;
	background: linear-gradient(135deg, #9E0EC1, #d22bbf);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #9E0EC1;
}
.header.caps-hero h1::after,
.header-v2.caps-detail-hero h1::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	border-radius: 3px;
	margin: 18px auto 0;
	background: linear-gradient(90deg, #9E0EC1, #d22bbf);
}
.header-v2.caps-detail-hero h1::after { margin: 18px 0 0; }

/* «← Все возможности» на детальной */
.caps-detail-hero .caps-back {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	padding: 7px 17px 7px 13px;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(158, 14, 193, .10);
	font-size: 14px;
	font-weight: 700;
	color: #6a2bc4;
	text-decoration: none;
	transition: color .18s ease, box-shadow .18s ease;
}
.caps-detail-hero .caps-back::before { content: "\2190"; font-size: 15px; line-height: 1; }
.caps-detail-hero .caps-back:hover {
	color: #9E0EC1;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(158, 14, 193, .18);
}
.caps-hero__lead {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 20px auto 0;
	font-size: clamp(16px, 1.35vw, 19px);
	line-height: 1.6;
	color: #4b4658;
}

/* — сетка карточек — */
.capabilities.caps-modern {
	margin-bottom: 0;
	padding: clamp(40px, 4.6vw, 68px) 0 clamp(8px, 1.4vw, 18px);
}
/* штатная ширина вместо разнобоя старых брейкпоинтов (1185px / 722px) */
.capabilities.caps-modern .container { max-width: 1200px; }

.caps-modern .caps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 22px;
	margin: 0;
}

/* — карточка — */
.caps-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 28px 28px 24px;
	background: #fff;
	border: none;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(24, 12, 34, .06);
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease;
}
/* верхняя градиентная полоса — въезжает при наведении, как на главной */
.caps-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #9E0EC1, #d22bbf);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .3s ease;
	z-index: 2;
}
.caps-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(158, 14, 193, .14);
}
.caps-card:hover::before { transform: scaleX(1); }

/* иконка в нейтральной светлой плашке — цвет несёт сама иконка */
.caps-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 70px;
	height: 70px;
	border-radius: 18px;
	background: #f4f4f9;
	transition: background .22s ease;
}
.caps-card .caps-card__icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}
.caps-card:hover .caps-card__icon {
	background: #ecebf4;
}

.caps-card__title {
	margin: 18px 0 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.01em;
	color: #241f38;
}
.caps-card .caps-card__link {
	color: #241f38;
	text-decoration: none;
	transition: color .18s ease;
}
/* растянутая ссылка: кликается вся карточка, вложенных <a> при этом не возникает */
.caps-card__link::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.caps-card:hover .caps-card__link,
.caps-card .caps-card__link:hover,
.caps-card .caps-card__link:focus { color: #9E0EC1; text-decoration: none; }

.caps-card__text {
	margin: 12px 0 22px;
	font-size: 15px;
	line-height: 1.6;
	color: #5a5666;
}
.caps-card__text p { margin: 0 0 10px; }
.caps-card__text p:last-child { margin-bottom: 0; }
/* ссылки внутри описания лежат поверх растянутой ссылки, поэтому кликаются;
   !important гасит инлайновые размеры, зашитые в тексты элементов инфоблока */
.caps-card .caps-card__text a {
	position: relative;
	z-index: 2;
	display: inline !important;
	font-size: inherit !important;
	font-weight: 600;
	color: #9E0EC1;
	text-decoration: none;
	border-bottom: 1px solid rgba(158, 14, 193, .35);
	transition: color .18s ease, border-color .18s ease;
}
.caps-card .caps-card__text a:hover {
	color: #d22bbf;
	border-bottom-color: #d22bbf;
	text-decoration: none;
}

/* ghost-пилюля «Подробнее» — прижата к низу, поэтому ряд карточек ровный */
.caps-card__more {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-top: auto;
	padding: 10px 19px;
	border-radius: 999px;
	background: rgba(158, 14, 193, .08);
	font-size: 14px;
	font-weight: 700;
	color: #9E0EC1;
	transition: background .18s ease, color .18s ease;
}
.caps-card:hover .caps-card__more { background: #9E0EC1; color: #fff; }
.caps-card__arrow { transition: transform .18s ease; }
.caps-card:hover .caps-card__arrow { transform: translateX(4px); }

/* значок-подсказка «?» в заголовке — чёткий кружок вместо размытого jpg */
/* последнее слово заголовка вместе со значком «?» — иначе знак срывается на новую строку */
.caps-card__title-tail { white-space: nowrap; }

.caps-card__title .caps-card__hint {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin: 0 0 0 6px;
	border-radius: 50%;
	background: rgba(158, 14, 193, .12);
	color: #9E0EC1;
	font-style: normal;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	vertical-align: middle;
	cursor: help;
	transition: background .18s ease;
}
.caps-card__title .caps-card__hint > img { display: none; }
.caps-card__title .caps-card__hint::before { content: "?"; position: static; }
.caps-card__title .caps-card__hint:hover { background: rgba(158, 14, 193, .22); }

/* — низ страницы: каллаут «Базы знаний» + CTA — */
.caps-outro {
	padding: clamp(34px, 4vw, 56px) 0 clamp(48px, 5vw, 80px);
}
.caps-outro .container { max-width: 1200px; }
.caps-outro__card {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 32px);
	padding: clamp(24px, 2.8vw, 34px) clamp(24px, 3vw, 40px);
	border-radius: 24px;
	background: linear-gradient(135deg, #fafaff 0%, #f4f4fb 52%, #edecf7 100%);
	box-shadow: 0 12px 34px rgba(106, 43, 196, .07);
}
.caps-outro__icon {
	flex: none;
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='url(%23b)' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><defs><linearGradient id='b' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%239E0EC1'/><stop offset='1' stop-color='%23d22bbf'/></linearGradient></defs><path d='M4 4.6A1.6 1.6 0 0 1 5.6 3H17a2 2 0 0 1 2 2v11.5H6.2A2.2 2.2 0 0 0 4 18.7V4.6z'/><path d='M6.2 16.5A2.2 2.2 0 0 0 4 18.7 2.2 2.2 0 0 0 6.2 21H19'/><path d='M8 7.2h7M8 10.4h7'/></svg>") no-repeat center / 34px;
	box-shadow: 0 6px 18px rgba(158, 14, 193, .12);
}
.caps-outro__body { flex: 1 1 auto; }
.caps-outro .caps-outro__title {
	margin: 0;
	font-size: clamp(19px, 1.7vw, 23px);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.01em;
	color: #241f38;
}
.caps-outro .caps-outro__text {
	margin: 8px 0 0;
	font-size: 16px;
	line-height: 1.55;
	color: #5a5666;
}
.caps-outro__actions {
	flex: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.caps-outro .caps-outro__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 236px;
	height: 52px;
	padding: 0 26px;
	border-radius: 12px;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .2s ease, box-shadow .2s ease, background-color .25s ease, color .25s ease;
}
.caps-outro .caps-outro__btn--primary {
	background: #9ecb2c;
	color: #22320a;
	box-shadow: 0 8px 20px rgba(144, 204, 13, .30);
}
.caps-outro .caps-outro__btn--primary:hover {
	background: #a8d834;
	color: #22320a;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(144, 204, 13, .40);
}
.caps-outro .caps-outro__btn--ghost {
	background: #fff;
	color: #9E0EC1;
	box-shadow: 0 6px 18px rgba(158, 14, 193, .10);
}
.caps-outro .caps-outro__btn--ghost:hover {
	background: #9E0EC1;
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(158, 14, 193, .24);
}

/* — адаптив — */
@media (max-width: 992px) {
	.caps-outro__card {
		flex-direction: column;
		align-items: flex-start;
	}
	.caps-outro__actions {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}
	.caps-outro .caps-outro__btn { flex: 1 1 236px; }
}
@media (max-width: 768px) {
	section.header.caps-hero { margin-top: 22px; }
	.capabilities.caps-modern .container { max-width: 100%; }
	.caps-modern .caps-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
	.caps-card { padding: 24px 22px 20px; }
	.caps-card__icon { width: 60px; height: 60px; border-radius: 16px; }
	.caps-card .caps-card__icon img { width: 38px; height: 38px; }
	.caps-card__title { font-size: 18px; margin-top: 16px; }
	.caps-card__text { font-size: 14.5px; }
}
@media (max-width: 560px) {
	.caps-modern .caps-grid { grid-template-columns: 1fr; }
	.caps-hero__band { border-radius: 20px; }
	.caps-outro__card { border-radius: 20px; }
	.caps-outro .caps-outro__btn { min-width: 0; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
	.caps-card,
	.caps-card::before,
	.caps-card__icon,
	.caps-card__more,
	.caps-card__arrow,
	.caps-outro .caps-outro__btn { transition: none; }
	.caps-card:hover { transform: none; }
	.caps-outro .caps-outro__btn:hover { transform: none; }
}

/* ============================================================
   Детальная страница возможности — типографика статьи вместо
   старой вёрстки с жёстким padding-left: 100px
   ============================================================ */
.content.caps-detail {
	padding: clamp(30px, 3.4vw, 48px) 0 0;
}
.content.caps-detail .container { max-width: 1200px; }

/* колонка чтения: ограничиваем только прямых потомков контейнера,
   чтобы двухколоночные блоки внутри текстов (.row / .col-md-*) остались во всю ширину */
.content.caps-detail > .container > p,
.content.caps-detail > .container > ul,
.content.caps-detail > .container > ol,
.content.caps-detail > .container > h2,
.content.caps-detail > .container > h3,
.content.caps-detail > .container > h4 { max-width: 880px; }

.content.caps-detail p {
	padding-left: 0;
	margin: 0 0 20px;
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.72;
	color: #4b4658;
}
.content.caps-detail p:empty { margin: 0; }
.content.caps-detail b,
.content.caps-detail strong { color: #241f38; font-weight: 700; }

.content.caps-detail h2,
.content.caps-detail h3,
.content.caps-detail h4 {
	padding-left: 0;
	font-weight: 800;
	letter-spacing: -.02em;
	text-align: left;
	color: #1b1726;
}
.content.caps-detail h2 {
	margin: 46px 0 18px;
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.2;
}
.content.caps-detail h3,
.content.caps-detail h4 {
	margin: 34px 0 14px;
	font-size: clamp(19px, 1.9vw, 23px);
	line-height: 1.25;
}
.content.caps-detail h2::after {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	border-radius: 3px;
	margin: 14px 0 0;
	background: linear-gradient(90deg, #9E0EC1, #d22bbf);
}
.content.caps-detail > .container > *:first-child { margin-top: 0; }

/* маркированные списки — градиентные точки вместо дисков */
.content.caps-detail .container ul {
	list-style: none;
	padding-left: 0;
	margin: 0 0 26px;
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.65;
}
.content.caps-detail .container ul li {
	position: relative;
	padding: 0 0 0 26px;
	margin-bottom: 10px;
	line-height: 1.65;
	font-size: inherit;
	color: #4b4658;
}
.content.caps-detail .container ul li:last-child { margin-bottom: 0; }
.content.caps-detail .container ul li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: .6em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: linear-gradient(135deg, #9E0EC1, #d22bbf);
}
.content.caps-detail .container ul ul,
.content.caps-detail .container ol ul {
	margin: 10px 0 0;
	padding-left: 24px;
}
.content.caps-detail .container ul ul li::before {
	background: none;
	box-shadow: inset 0 0 0 2px #9E0EC1;
}
/* маркированный список сразу после нумерованного — продолжение последнего пункта */
.content.caps-detail > .container > ol + ul {
	margin-top: -18px;
	padding-left: 62px;
}

/* нумерованные списки — скруглённые градиентные бейджи */
.content.caps-detail ol {
	list-style: none;
	counter-reset: my-counter;
	padding-left: 0;
	margin: 0 0 30px;
}
.content.caps-detail ol > li {
	position: relative;
	min-height: 46px;
	margin: 0 0 14px;
	padding: 10px 0 10px 62px;
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.6;
	color: #4b4658;
}
.content.caps-detail ol > li:last-child { margin-bottom: 0; }
.content.caps-detail ol > li::before {
	content: counter(my-counter);
	counter-increment: my-counter;
	position: absolute;
	left: 0;
	top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: linear-gradient(135deg, #9E0EC1, #d22bbf);
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	box-shadow: 0 6px 16px rgba(158, 14, 193, .25);
}

/* длинные адреса и ссылки в тексте не должны распирать колонку на узких экранах */
.content.caps-detail p,
.content.caps-detail li,
.content.caps-detail a { overflow-wrap: break-word; }

/* ссылки в тексте */
.content.caps-detail a {
	color: #9E0EC1;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(158, 14, 193, .35);
	transition: color .18s ease, border-color .18s ease;
}
.content.caps-detail a:hover {
	color: #d22bbf;
	border-bottom-color: #d22bbf;
	text-decoration: none;
}
/* картинки-ссылки (fancybox) рамку снизу не получают */
.content.caps-detail a[data-fancybox],
.content.caps-detail a:has(> img) { border-bottom: 0; }

/* скриншоты — мягкая тень и скругление вместо жёсткой чёрной */
.content.caps-detail img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(24, 12, 34, .12);
}
/* иконки внутри текста тенью и скруглением не оформляем */
.content.caps-detail .hint-icon img,
.content.caps-detail img.newtab {
	border-radius: 0;
	box-shadow: none;
}

/* значок-подсказка «?» — чёткий кружок вместо размытого jpg */
.content.caps-detail .hint-icon-q-img {
	position: static;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	min-height: 0;
	margin: 0 0 0 5px;
	border-radius: 50%;
	background: rgba(158, 14, 193, .12);
	color: #9E0EC1;
	font-style: normal;
	font-weight: 700;
	font-size: 10px;
	line-height: 1;
	vertical-align: middle;
	cursor: help;
	border-bottom: 0;
	transition: background .18s ease;
}
.content.caps-detail .hint-icon-q-img > img { display: none; }
.content.caps-detail .hint-icon-q-img::before { content: "?"; position: static; }
.content.caps-detail .hint-icon-q-img:hover { background: rgba(158, 14, 193, .22); }

/* ============================================================
   Переход к соседним возможностям — две карточки вместо « << Имя » */
.caps-nav {
	padding: clamp(28px, 3vw, 44px) 0 0;
}
.caps-nav .container { max-width: 1200px; }
.caps-nav__row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.caps-nav__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1 1 280px;
	min-width: 0;
	padding: 18px 24px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(24, 12, 34, .06);
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease;
}
.caps-nav__link:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(158, 14, 193, .14);
	text-decoration: none;
}
.caps-nav__link--next { text-align: right; margin-left: auto; }
.caps-nav__label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: #8f8a9e;
}
.caps-nav__link--next .caps-nav__label { justify-content: flex-end; }
.caps-nav__link--prev .caps-nav__label::before { content: "\2190"; color: #9E0EC1; font-size: 15px; }
.caps-nav__link--next .caps-nav__label::after { content: "\2192"; color: #9E0EC1; font-size: 15px; }
.caps-nav__name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #241f38;
	transition: color .18s ease;
}
.caps-nav__link:hover .caps-nav__name { color: #9E0EC1; }

@media (max-width: 560px) {
	.caps-nav__link { flex: 1 1 100%; }
	.caps-nav__link--next { text-align: left; margin-left: 0; }
	.caps-nav__link--next .caps-nav__label { justify-content: flex-start; }
}
@media (max-width: 768px) {
	.header-v2.caps-detail-hero { margin-top: 22px; }
	.content.caps-detail .container { max-width: 100%; }
	.content.caps-detail ol > li { padding: 8px 0 8px 52px; min-height: 40px; }
	.content.caps-detail ol > li::before { width: 40px; height: 40px; border-radius: 12px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
	.caps-nav__link { transition: none; }
	.caps-nav__link:hover { transform: none; }
}

/* End */


/* Start:/local/templates/intrasevice/components/bitrix/news/capabilities/bitrix/news.detail/.default/style.css?1787754006155*/
div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}

/* End */
/* /local/templates/intrasevice/components/bitrix/news/capabilities/style.css?178775400621415 */
/* /local/templates/intrasevice/components/bitrix/news/capabilities/bitrix/news.detail/.default/style.css?1787754006155 */
