

/* Start:/local/templates/main/css/site-cta.css?17846652081992*/
/* Общий CTA-блок сайта (статьи, FAQ, услуги, посадочные) */
.site-cta,
.sidelki-landing__cta,
.blog-detail__cta {
	margin: 2rem 0 0;
	padding: 1.25rem 1.5rem;
	max-width: 40rem;
	text-align: left;
	border-radius: 12px;
	border: 1px solid #f0d4dc;
	background: #fff7f8;
	box-shadow: none;
}

.site-cta__title {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	color: #2a2a2a;
	max-width: none;
}

.site-cta__text {
	margin: 0 0 1rem;
	max-width: none;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.55;
	color: #5c5c5c;
}

.site-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
	justify-content: flex-start;
}

.site-cta .btn__pink,
.site-cta .btn__pink-outline,
.sidelki-landing__cta .btn__pink,
.sidelki-landing__cta .btn__pink-outline {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto !important;
	min-height: 2.875rem !important;
	height: auto !important;
	padding: 0.625rem 1.35rem !important;
	border-radius: 2rem !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transform: none !important;
}

.site-cta .btn__pink,
.sidelki-landing__cta .btn__pink {
	background: var(--brown, #e7c9c1) !important;
	color: var(--white, #fff) !important;
	border: none !important;
}

.site-cta .btn__pink:hover,
.sidelki-landing__cta .btn__pink:hover {
	background: var(--brown-dark, #d4b3aa) !important;
	color: var(--white, #fff) !important;
}

.site-cta .btn__pink-outline,
.sidelki-landing__cta .btn__pink-outline {
	background: #fff !important;
	color: var(--blue-dark, #27314a) !important;
	border: 1px solid var(--brown, #e7c9c1) !important;
}

.site-cta .btn__pink-outline:hover,
.sidelki-landing__cta .btn__pink-outline:hover {
	background: var(--brown, #e7c9c1) !important;
	color: var(--white, #fff) !important;
}

/* End */


/* Start:/local/templates/main/css/articles-blog.css?178466520814466*/
/**
 * Блог компании /articles/ — лента в духе hh.ru, стилистика сайта 2026
 */

.blog {
	padding: 1.5rem 0 4rem;
	color: var(--blue-dark, #27314a);
}

.blog__container {
	max-width: 52rem;
	margin: 0 auto;
	padding-inline: 1rem;
}

.blog__container--wide {
	max-width: 72rem;
}

.blog__head {
	margin-bottom: 2rem;
}

.blog__title {
	margin: 0;
	font-size: clamp(1.75rem, 1.5rem + 1vw, 2.375rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--blue-dark, #27314a);
}

.blog__lead {
	margin: 0.75rem 0 0;
	max-width: 38rem;
	font-size: 1.0625rem;
	line-height: 1.5;
	color: rgba(39, 49, 74, 0.68);
}

/* Навигация по разделам */
.blog-nav {
	margin-bottom: 2rem;
}

.blog-nav__scroll {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-nav__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.625rem 1.25rem;
	border-radius: 2rem;
	background: var(--gray-light, #f2f2f2);
	border: 1px solid transparent;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--blue-dark, #27314a);
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.blog-nav__link:hover {
	color: #d1416b;
}

.blog-nav__link:focus-visible {
	outline: 2px solid var(--brown, #e7c9c1);
	outline-offset: 2px;
}

.blog-nav__link--active {
	background: rgba(231, 201, 193, 0.45);
	color: #27314a;
}

/* Скрыть legacy-подменю, если отдаётся из кеша старого шаблона */
.blog-nav__sub,
.blog-nav__sub-item,
.blog-nav__sub-link {
	display: none !important;
}

.blog-nav__item--group,
.blog-nav__item--expanded {
	display: contents;
}

.blog-nav__item {
	margin: 0;
	padding: 0;
}

/* Подразделы на странице родительского раздела */
.blog-subsections {
	margin-bottom: 2.5rem;
}

.blog-subsections__title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--blue-dark, #27314a);
}

.blog-subsections__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.blog-subsections__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.25rem 1.375rem;
	border-radius: 1.25rem;
	border: 1px solid rgba(39, 49, 74, 0.08);
	background: #fcfcfc;
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.blog-subsections__card:hover {
	border-color: rgba(209, 65, 107, 0.25);
}

.blog-subsections__card:hover .blog-subsections__card-title {
	color: #d1416b;
}

.blog-subsections__card:focus-visible {
	outline: 2px solid var(--brown, #e7c9c1);
	outline-offset: 3px;
}

.blog-subsections__card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.625rem;
}

.blog-subsections__card-title {
	margin: 0;
	font-size: 1.1875rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--blue-dark, #27314a);
	transition: color 0.2s ease;
}

.blog-subsections__card-count {
	flex-shrink: 0;
	padding: 0.3125rem 0.625rem;
	border-radius: 2rem;
	background: var(--gray-light, #f2f2f2);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(39, 49, 74, 0.75);
	white-space: nowrap;
}

.blog-subsections__card-desc {
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(39, 49, 74, 0.68);
}

.blog-subsections__card-action {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(39, 49, 74, 0.58);
}

.blog-subsections__card:hover .blog-subsections__card-action {
	color: #d1416b;
}

.blog-subsections__card--active {
	border-color: rgba(209, 65, 107, 0.35);
	background: #fff7f8;
}

.blog-subsections__card-badge {
	display: inline-flex;
	margin-top: 1rem;
	padding: 0.3125rem 0.75rem;
	border-radius: 2rem;
	background: rgba(231, 201, 193, 0.55);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	color: #27314a;
}

.blog-feed__heading {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--blue-dark, #27314a);
}

@media (max-width: 47.99875em) {
	.blog-subsections__grid {
		grid-template-columns: 1fr;
	}
}

/* Лента материалов */
.blog-feed {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(39, 49, 74, 0.1);
}

.blog-feed__item {
	border-bottom: 1px solid rgba(39, 49, 74, 0.1);
}

.blog-feed__link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 1.5rem;
	padding: 1.5rem 0;
	color: inherit;
	text-decoration: none;
}

.blog-feed__link:not(:has(.blog-feed__thumb)) {
	grid-template-columns: minmax(0, 1fr);
}

.blog-feed__thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f2f2;
}

.blog-feed__thumb--placeholder img {
	width: auto;
	height: auto;
	max-width: 72%;
	max-height: 72%;
	object-fit: contain;
}

.blog-feed__body {
	min-width: 0;
}

.blog-feed__category {
	display: inline-block;
	margin-bottom: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(39, 49, 74, 0.55);
	text-transform: none;
}

.blog-feed__title {
	margin: 0;
	font-size: clamp(1.125rem, 1.05rem + 0.25vw, 1.375rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--blue-dark, #27314a);
	transition: color 0.2s ease;
}

.blog-feed__link:hover .blog-feed__title {
	color: #d1416b;
}

.blog-feed__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.375rem;
	margin-top: 0.625rem;
	font-size: 0.875rem;
	line-height: 1.3;
	color: rgba(39, 49, 74, 0.55);
}

.blog-feed__thumb {
	flex-shrink: 0;
	width: 13rem;
	height: 9rem;
	border-radius: 1rem;
	overflow: hidden;
	background: #f2e1dd;
}

.blog-feed__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-feed__empty {
	margin: 0;
	padding: 2.5rem 0;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(39, 49, 74, 0.65);
	text-align: center;
}

.blog-feed__pager {
	margin-top: 2rem;
}

/* Детальная */
.blog-detail {
	padding: 0 0 0;
	color: var(--blue-dark, #27314a);
}

.blog-detail__article {
	padding: 1.25rem 0 2.5rem;
}

.blog-detail__container {
	max-width: 42rem;
	margin: 0 auto;
	padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.blog-detail__header {
	margin-bottom: 1.75rem;
}

.blog-detail__category {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	margin: 0 0 1rem;
	padding: 0.375rem 0.875rem;
	border-radius: 2rem;
	background: var(--gray-light, #f2f2f2);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: rgba(39, 49, 74, 0.78);
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-detail__category:hover {
	background: rgba(231, 201, 193, 0.45);
	color: #27314a;
}

.blog-detail__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.875rem, 1.5rem + 1.25vw, 2.75rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--blue-dark, #27314a);
}

.blog-detail__meta {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	min-height: 3rem;
	padding: 0.875rem 0;
	border-top: 1px solid rgba(39, 49, 74, 0.1);
	border-bottom: 1px solid rgba(39, 49, 74, 0.1);
}

.blog-detail__byline {
	margin: 0.85rem 0 0;
	max-width: 40rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(39, 49, 74, 0.62);
}

.blog-detail__byline a {
	color: #d1416b;
	font-weight: 600;
	text-decoration: none;
}

.blog-detail__byline a:hover {
	text-decoration: underline;
}

.blog-detail__meta-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-detail__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.9375rem;
	line-height: 1.2;
	color: rgba(39, 49, 74, 0.62);
	white-space: nowrap;
}

.blog-detail__meta-icon {
	flex-shrink: 0;
	opacity: 0.72;
}

.blog-detail__share {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-shrink: 0;
	min-height: 2.625rem;
	margin: 0;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(39, 49, 74, 0.12);
	border-radius: 2rem;
	background: #fff;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	color: var(--blue-dark, #27314a);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.blog-detail__share:hover {
	border-color: rgba(209, 65, 107, 0.35);
	background: #fff7f8;
	color: #d1416b;
}

.blog-detail__share:focus-visible {
	outline: 2px solid var(--brown, #e7c9c1);
	outline-offset: 2px;
}

.blog-detail__hero {
	margin: 0 0 2rem;
	border-radius: 1.25rem;
	overflow: hidden;
	background: var(--gray-light, #f2f2f2);
	line-height: 0;
}

.blog-detail__hero img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 28rem;
	object-fit: cover;
}

.blog-detail__content {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(39, 49, 74, 0.92);
}

.blog-detail__content > *:first-child {
	margin-top: 0;
}

.blog-detail__content h2,
.blog-detail__content h3,
.blog-detail__content h4 {
	margin: 2.25rem 0 0.875rem;
	line-height: 1.28;
	font-weight: 700;
	color: var(--blue-dark, #27314a);
}

.blog-detail__content h2 {
	font-size: 1.375rem;
}

.blog-detail__content h3 {
	font-size: 1.1875rem;
}

.blog-detail__content p {
	margin: 0 0 1.125rem;
}

.blog-detail__content ul,
.blog-detail__content ol {
	margin: 0 0 1.125rem;
	padding-left: 1.35rem;
}

.blog-detail__content li + li {
	margin-top: 0.35rem;
}

.blog-detail__content strong {
	font-weight: 700;
	color: var(--blue-dark, #27314a);
}

.blog-detail__content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.875rem;
}

/* Блок «Читайте также» — полная ширина, отдельная зона */
/* CTA в конце статьи — общий блок .site-cta */
.site-cta,
.blog-detail__cta {
	margin: 2rem 0 0;
	padding: 1.25rem 1.5rem;
	max-width: 40rem;
	text-align: left;
	border-radius: 12px;
	border: 1px solid #f0d4dc;
	background: #fff7f8;
	box-shadow: none;
}

.site-cta__title {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	color: #2a2a2a;
}

.site-cta__text {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.55;
	color: #5c5c5c;
}

.site-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
}

.site-cta .btn__pink,
.site-cta .btn__pink-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 2.875rem;
	height: auto;
	padding: 0.625rem 1.35rem;
	border-radius: 2rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.blog-detail__related {
	margin-top: 0;
	padding: 2.75rem 0 3.5rem;
	background: var(--gray-2, #f5f5f5);
	border-top: 1px solid rgba(39, 49, 74, 0.08);
}

.blog-detail__related-inner {
	max-width: 72rem;
	margin: 0 auto;
	padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.blog-detail__related-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	margin-bottom: 1.5rem;
}

.blog-detail__related-title {
	margin: 0;
	font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--blue-dark, #27314a);
}

.blog-detail__related-all {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(39, 49, 74, 0.62);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-detail__related-all:hover {
	color: #d1416b;
}

.blog-related {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.blog-related__item {
	margin: 0;
	padding: 0;
}

.blog-related__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 1.125rem;
	border: 1px solid rgba(39, 49, 74, 0.08);
	background: #fff;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-related__link:hover {
	border-color: rgba(209, 65, 107, 0.22);
	box-shadow: 0 12px 32px -20px rgba(39, 49, 74, 0.28);
	transform: translateY(-2px);
}

.blog-related__link:focus-visible {
	outline: 2px solid var(--brown, #e7c9c1);
	outline-offset: 3px;
}

.blog-related__thumb {
	aspect-ratio: 16 / 10;
	background: #f2e1dd;
	overflow: hidden;
}

.blog-related__thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f2f2f2;
}

.blog-related__thumb--placeholder img {
	width: auto;
	height: auto;
	max-width: 56%;
	max-height: 56%;
	object-fit: contain;
}

.blog-related__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-related__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 0.5rem;
	padding: 1rem 1.125rem 1.125rem;
}

.blog-related__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--blue-dark, #27314a);
	transition: color 0.2s ease;
}

.blog-related__link:hover .blog-related__title {
	color: #d1416b;
}

.blog-related__date {
	margin-top: auto;
	font-size: 0.8125rem;
	line-height: 1.2;
	color: rgba(39, 49, 74, 0.52);
}

.blog-related__empty {
	margin: 0;
	padding: 1.5rem;
	border-radius: 1rem;
	background: #fff;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(39, 49, 74, 0.62);
	text-align: center;
}

@media (max-width: 61.99875em) {
	.blog-related {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 47.99875em) {
	.blog {
		padding-top: 1rem;
	}

	.blog-feed__link {
		grid-template-columns: 1fr;
		gap: 0.875rem;
		padding: 1.125rem 0;
	}

	.blog-feed__thumb {
		width: 100%;
		height: 11rem;
	}

	.blog-detail__article {
		padding-top: 0.75rem;
	}

	.blog-detail__meta {
		flex-wrap: wrap;
		align-items: stretch;
	}

	.blog-detail__share {
		width: 100%;
		justify-content: center;
	}

	.blog-related {
		grid-template-columns: 1fr;
	}

	.blog-detail__related {
		padding-top: 2rem;
		padding-bottom: 2.5rem;
	}
}

/* End */
/* /local/templates/main/css/site-cta.css?17846652081992 */
/* /local/templates/main/css/articles-blog.css?178466520814466 */
