/*
 * Bloomcare — шаблон одиночной статьи (Figma node 487:29183, desktop).
 * Область действия: .bc-article
 */

body.bc-article-page {
	background: #fef5ed;
}

/* Плавный скролл к якорям (ссылки из «Содержание»). Файл article.css только на singular article. */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

.bc-article {
	--bc-article-max: 1200px;
	--bc-article-inner: 1000px;
	--bc-article-pad-x: clamp(20px, 6.25vw, 120px);
	padding: 64px var(--bc-article-pad-x) 64px;
	font-feature-settings: "lnum" 1, "pnum" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Figma 487:29192 — шапка статьи: крошки + заголовок, лид, мета с шагом 20px */
.bc-article__intro {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	align-items: flex-start;
}

.bc-article__stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	max-width: var(--bc-article-max);
	margin: 0 auto;
}

/* Кнопка-ссылка (консультация и т.д.); top-banner — assets/css/banners/article-top-banner.css; central-banner — assets/css/banners/article-central-banner.css */
.bc-article__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 24px;
	border-radius: 18px;
	background: #cc7c61;
	color: #fff !important;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none !important;
	text-underline-offset: unset;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__btn:hover {
	color: #fff !important;
	filter: brightness(0.95);
	text-decoration: none !important;
}

.bc-article__btn--outline {
	background: transparent;
	border: 1px solid #cc7c61;
}

/* Белая карточка статьи */
.bc-article__sheet {
	width: 100%;
	max-width: var(--bc-article-max);
	background: #fff;
	border-radius: 36px;
	padding: 64px 100px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Теги + заголовок */
.bc-article__head {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}

.bc-article__head-main {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.bc-article__tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.bc-article__tag {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 50px;
	background: #fdf7f1;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.35;
	letter-spacing: 0;
	color: #cc7c61;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

a.bc-article__tag {
	text-decoration: none;
	color: #cc7c61;
}

a.bc-article__tag:hover {
	opacity: 0.88;
}

.bc-article__title {
	margin: 0;
	font-family: "Noto Serif", Georgia, "Times New Roman", serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.1;
	letter-spacing: 0;
	color: #3f2b22;
	font-variation-settings: "CTGR" 0, "wdth" 100;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__lead {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #454545;
	max-width: 100%;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

/* Figma 487:29209 — meta row, gap 14px, vertical center */
.bc-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
}

.bc-article__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.35;
	letter-spacing: 0;
	color: #636363;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__meta-icon {
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	overflow: hidden;
}

.bc-article__meta-icon img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Автор */
.bc-article__author {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	max-width: var(--bc-article-inner);
	margin: 0 auto;
	padding: 36px;
	border-radius: 36px;
	background: #fdf7f1;
	box-sizing: border-box;
	position: relative;
}

.bc-article__author-photo {
	width: 120px;
	height: 120px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
}

.bc-article__author-photo img {
	object-fit: cover;
	display: block;
}

.bc-article__author-main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bc-article__author-name {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__author-bio {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.35;
	color: #454545;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__author-bio p {
	margin: 0;
}

.bc-article__author-socials {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.bc-article__soc {
	display: block;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.bc-article__soc-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.bc-article__soc-layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Разделитель (1px линия на всю ширину листа) */
.bc-article__rule {
	width: 100%;
	flex-shrink: 0;
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid rgba(63, 43, 34, 0.12);
	box-sizing: border-box;
}

/* Контентная колонка */
.bc-article__content {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}

/* Figma 487:29216 — «Содержание» и список с шагом 16px */
.bc-article__toc-section {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	align-items: flex-start;
}

.bc-article__toc-title {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__toc {
	margin: 0;
	padding-left: 30px;
	list-style-type: disc;
	list-style-position: outside;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #cc7c61;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__toc li {
	margin-bottom: 8px;
}

.bc-article__toc li:last-child {
	margin-bottom: 0;
}

.bc-article__toc span {
	color: #cc7c61;
}

.bc-article__toc a {
	color: #cc7c61;
	text-decoration: none;
}

.bc-article__toc a:hover {
	text-decoration: underline;
}

.bc-article__h2 {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 28px;
	line-height: 1.25;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

/* Якоря из TOC: на десктопе — небольшой зазор; на мобиле — под фикс. шапку 63px. */
.bc-article__h2[id] {
	scroll-margin-top: 1rem;
}

@media (max-width: 992px) {
	.bc-article__h2[id] {
		scroll-margin-top: calc(63px + 1rem);
	}
}

/* Подзаголовок секции: Figma test2 487:29247 («20-semi» / new-head), отступы между кусками — gap у .bc-article__block (20px). */
.bc-article__h3 {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__h4 {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.40;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__prose {
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	color: #454545;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__prose p {
	margin: 0 0 1.4em;
}

.bc-article__prose p:last-child {
	margin-bottom: 0;
}

/* Пустая строка между абзацами как в Figma 487:29221 (два mb-0 подряд) */
.bc-article__prose p:has(+ .bc-article__prose-gap) {
	margin-bottom: 0;
}

.bc-article__prose .bc-article__prose-gap {
	margin: 0;
	padding: 0;
	min-height: 1.4em;
	line-height: 1.4;
	font-size: 20px;
	overflow: hidden;
}

.bc-article__prose .bc-article__prose-gap + p {
	margin-top: 0;
}

/* Списки в теле статьи: Figma 487:29241 (list-disc, padding-left 30px, gap между li 8px). Reset задаёт ul,ol { list-style: none } — переопределяем. */
.bc-article__prose ul,
.bc-article__note-text ul {
	margin: 0;
	padding-left: 30px;
	list-style-type: disc;
	list-style-position: outside;
}

.bc-article__prose ol,
.bc-article__note-text ol {
	margin: 0;
	padding-left: 30px;
	list-style-type: decimal;
	list-style-position: outside;
}

.bc-article__prose ul li::marker,
.bc-article__note-text ul li::marker,
.bc-article__prose ol li::marker,
.bc-article__note-text ol li::marker {
	color: #454545;
}

/* Оглавление: маркер = цвет пункта (#cc7c61); идёт после prose, чтобы не перетиралось ul li::marker внутри .bc-article__prose. */
ul.bc-article__toc li {
	color: #cc7c61;
}

ul.bc-article__toc li::marker {
	color: currentColor;
}

.bc-article__prose li,
.bc-article__note-text li {
	margin-bottom: 8px;
}

.bc-article__prose li:last-child,
.bc-article__note-text li:last-child {
	margin-bottom: 0;
}

.bc-article__block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Подблок с подзаголовком */
.bc-article__subsection {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.bc-article__subsection-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Важно — Figma 487:29234: gap 28px, items-center, pr 28px */
.bc-article__note {
	display: flex;
	align-items: stretch;
	width: 100%;
	background: #fdf7f1;
	border-left: 4px solid #cc7c61;
	padding-left: 24px;
	padding-right: 28px;
	box-sizing: border-box;
	margin-top: 8px;
}

.bc-article__note-body {
	flex: 1 1 auto;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 20px;
	line-height: 1.4;
}

.bc-article__note-title {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__note-text {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #454545;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

/* Кнопка под списком */
.bc-article__actions {
	margin-top: 0;
}

/* Главное фото */
.bc-article__figure {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 36px;
	overflow: hidden;
	background: #d9d9d9;
}

.bc-article__figure img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 36px;
}

/* Источники */
.bc-article__sources {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	padding: 36px;
	border-radius: 36px;
	background: #fdf7f1;
	box-sizing: border-box;
	font-size: 20px;
	line-height: 1.4;
}

.bc-article__sources-title {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__sources ol {
	margin: 0;
	padding-left: 30px;
	list-style-type: decimal;
	list-style-position: outside;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #454545;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__sources li {
	margin-bottom: 8px;
}

.bc-article__sources li::marker {
	color: #454545;
}

.bc-article__sources li:last-child {
	margin-bottom: 0;
}

/* Ссылки ведут на URL, но визуально совпадают с пунктами без href (цвет списка #454545). */
.bc-article__sources a,
.bc-article__sources a:visited,
.bc-article__sources .bc-article__sources-link,
.bc-article__sources .bc-article__sources-link:visited {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.bc-article__sources a:hover,
.bc-article__sources a:active,
.bc-article__sources .bc-article__sources-link:hover,
.bc-article__sources .bc-article__sources-link:active {
	color: inherit;
	text-decoration: none;
}

.bc-article__sources a:focus-visible,
.bc-article__sources .bc-article__sources-link:focus-visible {
	color: inherit;
	text-decoration: none;
	outline: 2px solid rgba(69, 69, 69, 0.35);
	outline-offset: 3px;
}

/* Нижняя зона: рейтинг + баннер + читайте также */
.bc-article__footer-stack {
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: 100%;
}

.bc-article__share-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	width: 100%;
}

/* Блок рейтинга — Figma test2 487:29255 (node 487:29256 звёзды 180×36, 487:29262 мета). */
.bc-article__rating {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.bc-article__stars-interactive {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 180px;
	height: 36px;
	flex-shrink: 0;
	box-sizing: border-box;
}

.bc-article__star-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	min-width: 36px;
	height: 36px;
	min-height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	color: #cc7c61;
	transition: color 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.bc-article__star-btn:hover:not(:disabled),
.bc-article__star-btn:focus-visible:not(:disabled) {
	color: #b86a52;
	transform: scale(1.06);
}

.bc-article__star-btn:focus-visible {
	outline: 2px solid #3f2b22;
	outline-offset: 2px;
}

.bc-article__star-btn:disabled {
	cursor: default;
	opacity: 0.88;
}

.bc-article__rating.is-voted .bc-article__star-btn {
	color: #cc7c61;
}

.bc-article__star-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.bc-article__star-svg {
	display: block;
	width: 36px;
	height: 36px;
}

.bc-article__rating-msg {
	margin: 0;
	min-height: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.3;
	color: #3f7d4e;
}

.bc-article__rating-msg--error {
	color: #b42318;
}

.bc-article__rating-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
}

.bc-article__rating-line {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0;
	color: #454545;
	white-space: nowrap;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__rating-line .bc-article__rating-score,
.bc-article__rating-line .bc-article__rating-votes {
	font-weight: 500;
}

.bc-article__share {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.bc-article__share-label {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__share-icons {
	display: flex;
	align-items: center;
	gap: 6px;
}

.bc-article__share-icons a {
	display: block;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.bc-article__share-icons img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* Читайте также — Figma 487:29290: заголовок и сетка с шагом 24px */
.bc-article__more {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	align-items: flex-start;
}

.bc-article__more-title {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: 0;
	color: #3f2b22;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__more-grid {
	display: flex;
	gap: 12px;
	width: 100%;
	align-items: stretch;
}

.bc-article__more-card {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
}

.bc-article__more-card-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	min-height: 452px;
	padding: 0 0 20px;
	border-radius: 36px;
	background: #fef5ed;
	box-shadow: 0 2.952px 9.077px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.bc-article__more-card-link:hover {
	background: #fff7f0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.bc-article__more-card-link:focus-visible {
	outline: 2px solid #cc7c61;
	outline-offset: 3px;
}

.bc-article__more-thumb {
	position: relative;
	width: 100%;
	height: 204px;
	border-radius: 23.616px;
	overflow: hidden;
	flex-shrink: 0;
}

.bc-article__more-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bc-article__more-thumb .bc-article__more-thumb-bg {
	top: -75.13%;
	left: 0;
	width: 100%;
	height: 212.51%;
	object-fit: fill;
	z-index: 0;
}

.bc-article__more-thumb .bc-article__more-thumb-cover {
	z-index: 1;
}

.bc-article__more-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	text-align: left;
}

.bc-article__more-card-title {
	margin: 0;
	font-family: "Noto Serif", Georgia, "Times New Roman", serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.15;
	letter-spacing: 0;
	color: #3f2b22;
	font-variation-settings: "CTGR" 0, "wdth" 100;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

.bc-article__more-card-link:hover .bc-article__more-card-title {
	color: #cc7c61;
}

.bc-article__more-excerpt {
	margin: 0;
	font-family: "Manrope", system-ui, sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 0;
	color: #636363;
	font-feature-settings: "lnum" 1, "pnum" 1;
}

@media (max-width: 1100px) {
	.bc-article__sheet {
		padding: 48px 40px;
	}

	.bc-article__author-socials {
		margin-left: 0;
		justify-content: flex-start;
	}
}

@media (max-width: 992px) {
	.bc-article__btn {
		font-size: 16px;
	}

	/* На планшете «Читайте также» превращается в горизонтальный слайдер. */
	.bc-article__more-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(280px, calc(100% - 72px));
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	.bc-article__more-card {
		scroll-snap-align: start;
	}

	.bc-article__more-grid::-webkit-scrollbar {
		height: 6px;
	}
}

@media (max-width: 768px) {
	body.bc-article-page {
		background: #fff;
	}

	.bc-article {
		--bc-article-pad-x: 20px;
		padding-top: 20px;
		padding-bottom: 0px;
	}

	.bc-article__stack {
		gap: 32px;
	}

	.bc-article__sheet {
		padding: 0;
		border-radius: 0;
		background: transparent;
		gap: 20px;
	}

	.bc-article__intro {
		gap: 16px;
	}

	.bc-article__head {
		gap: 28px;
	}

	.bc-article .bc-breadcrumbs {
		font-size: 14px;
		line-height: 1.35;
	}

	.bc-article__tags-row {
		gap: 4px;
	}

	.bc-article__tag {
		padding: 6px 12px;
		font-size: 13px;
		line-height: 1.35;
	}

	.bc-article__title {
		font-size: 28px;
		line-height: 1.1;
	}

	.bc-article__lead {
		font-size: 16px;
		line-height: 1.4;
	}

	.bc-article__meta {
		gap: 10px;
	}

	.bc-article__meta-item {
		font-size: 14px;
		line-height: 1.35;
	}

	.bc-article__meta-icon {
		width: 18px;
		height: 18px;
	}

	.bc-article__author {
		flex-direction: column;
		align-items: flex-start;
		max-width: 100%;
		padding: 24px 20px;
		border-radius: 28px;
		gap: 16px;
	}

	.bc-article__author-photo {
		width: 80px;
		height: 80px;
	}

	.bc-article__author-name {
		font-size: 18px;
		line-height: 1.2;
	}

	.bc-article__author-bio,
	.bc-article__author-bio p {
		font-size: 14px;
		line-height: 1.35;
	}

	.bc-article__author-socials {
		width: 100%;
		gap: 10px;
		justify-content: flex-start;
	}

	.bc-article__soc {
		width: 36px;
		height: 36px;
	}

	.bc-article__content {
		gap: 24px;
	}

	.bc-article__toc-title {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-article__toc {
		padding-left: 22px;
		font-size: 15px;
		line-height: 1.35;
	}

	.bc-article__h2 {
		font-size: 20px;
		line-height: 1.4;
	}

	.bc-article__h3 {
		font-size: 18px;
		line-height: 1.2;
	}

	.bc-article__h4 {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-article__prose {
		font-size: 15px;
		line-height: 1.45;
	}

	.bc-article__prose ul,
	.bc-article__note-text ul,
	.bc-article__prose ol,
	.bc-article__note-text ol {
		padding-left: 22px;
	}

	.bc-article__prose .bc-article__prose-gap {
		min-height: 1.45em;
		line-height: 1.45;
		font-size: 15px;
	}

	.bc-article__note {
		align-items: stretch;
		padding-left: 24px;
		padding-right: 20px;
	}

	.bc-article__note-body {
		padding: 20px 0;
		gap: 16px;
	}

	.bc-article__note-title {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-article__note-text {
		font-size: 15px;
		line-height: 1.45;
	}

	.bc-article__figure {
		height: 240px;
		border-radius: 26px;
	}

	.bc-article__figure img {
		border-radius: 26px;
	}

	.bc-article__sources {
		gap: 12px;
		padding: 24px 20px;
		border-radius: 28px;
	}

	.bc-article__sources-title {
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-article__sources ol {
		padding-left: 22px;
		font-size: 15px;
		line-height: 1.4;
	}

	.bc-article__footer-stack {
		gap: 20px;
	}

	.bc-article__share-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.bc-article__rating {
		width: 100%;
		padding: 24px 20px;
		border: 1px solid #ebebeb;
		border-radius: 26px;
		background: #fff;
		box-sizing: border-box;
		gap: 8px;
	}

	.bc-article__rating-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.bc-article__rating-line {
		font-size: 14px;
		line-height: 1.35;
		white-space: normal;
	}

	.bc-article__share {
		gap: 12px;
	}

	.bc-article__share-label {
		font-weight: 500;
		font-size: 16px;
		line-height: 1.35;
	}

	.bc-article__share-icons {
		gap: 8px;
	}

	.bc-article__share-icons a {
		width: 36px;
		height: 36px;
	}

	/* Читайте также (mobile). */
	.bc-article__more {
		gap: 20px;
	}

	.bc-article__more-title {
		font-size: 20px;
		line-height: 1.4;
	}

	.bc-article__more-grid {
		grid-auto-columns: 260px;
	}

	.bc-article__more-card-link {
		min-height: 403px;
		padding-bottom: 20px;
		border-radius: 26px;
		border: 0.738px solid #ebebeb;
	}

	.bc-article__more-thumb {
		height: 185px;
	}

	.bc-article__more-body {
		gap: 12px;
	}

	.bc-article__more-card-title {
		font-size: 18px;
		line-height: 1.15;
	}

	.bc-article__more-excerpt {
		font-size: 15px;
	}
}

@media (max-width: 640px) {
	.bc-article__more-grid {
		grid-auto-columns: 260px;
	}
}
