/*
 * SM Editorial Articles — frontend styles.
 *
 * All rules are scoped under `.sm-article` so the active theme's header,
 * footer, and other pages are never affected. No theme classes are used.
 *
 * Palette follows the Laminapolis storefront (see the custom front page
 * in the child theme): teal accent, calm blue-grey text, airy surfaces.
 * The accent color and sticky offset can be overridden from plugin
 * settings via inline CSS custom properties.
 */

.sm-article {
	/* Design tokens */
	--sm-article-accent: #2b9aa0;
	--sm-article-accent-strong: #1f6e73;
	--sm-article-text: #24323d;
	--sm-article-muted: #6c7b86;
	--sm-article-faint: #8a99a3;
	--sm-article-border: #e6edf0;
	--sm-article-border-strong: #d7e0e4;
	--sm-article-surface: #f7fbfb;
	--sm-article-page-width: 1200px;
	--sm-article-content-width: 780px;
	--sm-article-toc-width: 260px;
	--sm-article-gap: 60px;
	--sm-article-radius: 12px;
	--sm-article-sticky-offset: 24px;

	display: block;
	background: #ffffff;
	color: var(--sm-article-text);
	font-family: inherit;
}

.sm-article__article {
	max-width: var(--sm-article-page-width);
	margin: 0 auto;
	padding: 24px 20px 64px;
}

/* ----------------------------------------------------------------------
 * Breadcrumbs
 * -------------------------------------------------------------------- */
.sm-article__breadcrumbs {
	margin: 0 0 24px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--sm-article-faint);
}

.sm-article__breadcrumbs a {
	color: var(--sm-article-muted);
	text-decoration: none;
}

.sm-article__breadcrumbs a:hover,
.sm-article__breadcrumbs a:focus-visible {
	color: var(--sm-article-accent-strong);
	text-decoration: underline;
}

.sm-article__breadcrumbs-sep {
	margin: 0 6px;
}

.sm-article__breadcrumbs-current {
	color: var(--sm-article-faint);
}

/* ----------------------------------------------------------------------
 * Header area
 * -------------------------------------------------------------------- */
.sm-article__header {
	max-width: 950px;
	margin: 0 0 28px;
}

.sm-article__label {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sm-article__label a {
	color: var(--sm-article-accent-strong);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.sm-article__label a:hover,
.sm-article__label a:focus-visible {
	border-bottom-color: currentColor;
}

.sm-article__title {
	margin: 0 0 16px;
	font-size: clamp(30px, 2.2vw + 22px, 46px);
	font-weight: 650;
	line-height: 1.15;
	color: var(--sm-article-text);
	overflow-wrap: break-word;
}

.sm-article__lead {
	max-width: 800px;
	margin: 0 0 20px;
	font-size: clamp(17px, 0.4vw + 16px, 20px);
	line-height: 1.55;
	color: var(--sm-article-muted);
}

.sm-article__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 8px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--sm-article-muted);
}

.sm-article__meta a {
	color: var(--sm-article-muted);
	text-decoration: underline;
	text-decoration-color: var(--sm-article-border-strong);
	text-underline-offset: 2px;
}

.sm-article__meta a:hover,
.sm-article__meta a:focus-visible {
	color: var(--sm-article-accent-strong);
	text-decoration-color: currentColor;
}

.sm-article__meta-sep {
	color: var(--sm-article-faint);
}

/* ----------------------------------------------------------------------
 * Featured image
 * -------------------------------------------------------------------- */
.sm-article__hero {
	margin: 0 0 36px;
	max-width: calc(var(--sm-article-content-width) + var(--sm-article-gap) + var(--sm-article-toc-width));
}

.sm-article__hero img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--sm-article-radius);
}

.sm-article__hero-caption {
	margin: 10px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--sm-article-faint);
	text-align: left;
}

/* ----------------------------------------------------------------------
 * Two-column layout
 * -------------------------------------------------------------------- */
.sm-article__layout {
	display: block;
}

.sm-article__main {
	min-width: 0;
	max-width: var(--sm-article-content-width);
}

.sm-article__aside {
	display: none;
}

@media (min-width: 1100px) {
	.sm-article__layout {
		display: grid;
		grid-template-columns: minmax(0, var(--sm-article-content-width)) var(--sm-article-toc-width);
		column-gap: var(--sm-article-gap);
		align-items: start;
	}

	.sm-article__aside {
		display: block;
	}

	.sm-article__layout--no-toc {
		display: block;
	}

	.sm-article__toc-mobile {
		display: none;
	}
}

/* ----------------------------------------------------------------------
 * Table of contents — desktop sticky
 * -------------------------------------------------------------------- */
.sm-article__toc {
	position: sticky;
	top: var(--sm-article-sticky-offset);
	max-height: calc(100vh - var(--sm-article-sticky-offset) - 24px);
	overflow-y: auto;
	padding: 4px 0 4px 20px;
	border-left: 1px solid var(--sm-article-border);
	scrollbar-width: thin;
}

.sm-article__toc-title {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 650;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--sm-article-faint);
}

.sm-article__toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sm-article__toc-item {
	margin: 0 0 2px;
}

.sm-article__toc-item--level-3 {
	padding-left: 16px;
}

.sm-article__toc-item a {
	display: block;
	padding: 4px 8px 4px 10px;
	margin-left: -21px;
	border-left: 2px solid transparent;
	border-radius: 0 6px 6px 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--sm-article-muted);
	text-decoration: none;
	transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.sm-article__toc-item--level-3 a {
	margin-left: -37px;
	padding-left: 26px;
	font-size: 13px;
}

.sm-article__toc-item a:hover,
.sm-article__toc-item a:focus-visible {
	color: var(--sm-article-accent-strong);
}

.sm-article__toc-item a.is-active {
	color: var(--sm-article-accent-strong);
	border-left-color: var(--sm-article-accent);
	background: var(--sm-article-surface);
	font-weight: 600;
}

/* ----------------------------------------------------------------------
 * Table of contents — mobile <details>
 * -------------------------------------------------------------------- */
.sm-article__toc-mobile {
	margin: 0 0 28px;
	border: 1px solid var(--sm-article-border);
	border-radius: 10px;
	background: var(--sm-article-surface);
}

.sm-article__toc-mobile-summary {
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 600;
	color: var(--sm-article-text);
	cursor: pointer;
	list-style-position: inside;
}

.sm-article__toc-mobile-summary:hover,
.sm-article__toc-mobile-summary:focus-visible {
	color: var(--sm-article-accent-strong);
}

.sm-article__toc-mobile .sm-article__toc-list {
	padding: 0 18px 14px;
}

.sm-article__toc-mobile .sm-article__toc-item a {
	margin-left: 0;
	padding: 5px 0;
	border-left: none;
	border-radius: 0;
}

.sm-article__toc-mobile .sm-article__toc-item--level-3 a {
	padding-left: 16px;
}

/* ----------------------------------------------------------------------
 * Content typography
 * -------------------------------------------------------------------- */
.sm-article__content {
	font-size: 18px;
	line-height: 1.7;
	color: var(--sm-article-text);
	overflow-wrap: break-word;
}

.sm-article__content > * {
	margin-top: 0;
	margin-bottom: 22px;
}

.sm-article__content h2,
.sm-article__content h3,
.sm-article__content h4 {
	color: var(--sm-article-text);
	scroll-margin-top: calc(var(--sm-article-sticky-offset) + 16px);
}

.sm-article__content h2 {
	margin-top: 64px;
	margin-bottom: 24px;
	font-size: clamp(26px, 0.8vw + 22px, 32px);
	font-weight: 650;
	line-height: 1.25;
}

.sm-article__content h3 {
	margin-top: 44px;
	margin-bottom: 18px;
	font-size: clamp(21px, 0.5vw + 19px, 24px);
	font-weight: 650;
	line-height: 1.3;
}

.sm-article__content h4 {
	margin-top: 32px;
	margin-bottom: 14px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.35;
}

.sm-article__content a {
	color: var(--sm-article-accent-strong);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color 0.18s ease;
}

.sm-article__content a:hover {
	color: var(--sm-article-accent);
}

.sm-article__content a:focus-visible {
	outline: 2px solid var(--sm-article-accent);
	outline-offset: 2px;
	border-radius: 2px;
}

/* Lists */
.sm-article__content ul,
.sm-article__content ol {
	margin: 22px 0;
	padding-left: 26px;
}

.sm-article__content li {
	margin-bottom: 10px;
}

.sm-article__content li > ul,
.sm-article__content li > ol {
	margin: 10px 0 0;
}

.sm-article__content ul li::marker {
	color: var(--sm-article-accent);
}

/* Blockquote */
.sm-article__content blockquote {
	margin: 28px 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--sm-article-accent);
	color: var(--sm-article-muted);
	font-style: normal;
}

/* Images and figures inside content */
.sm-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.sm-article__content figure {
	margin-left: 0;
	margin-right: 0;
}

.sm-article__content figcaption {
	margin-top: 9px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--sm-article-faint);
	text-align: left;
}

/* Wide alignments: never wider than the inner grid, no page scroll. */
@media (min-width: 1100px) {
	.sm-article__content .alignwide {
		width: min(
			calc(var(--sm-article-content-width) + 160px),
			calc(100vw - 40px)
		);
		max-width: none;
	}

	.sm-article__content .alignfull {
		width: min(
			calc(var(--sm-article-content-width) + var(--sm-article-gap) + var(--sm-article-toc-width)),
			calc(100vw - 40px)
		);
		max-width: none;
	}
}

/* Tables (standard figure.wp-block-table and plain tables) */
.sm-article__content .wp-block-table,
.sm-article__content table {
	width: 100%;
	margin: 28px 0;
}

.sm-article__content .wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--sm-article-border);
	border-radius: 10px;
}

.sm-article__content .wp-block-table table {
	margin: 0;
	border: none;
}

.sm-article__content table {
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.5;
}

.sm-article__content th,
.sm-article__content td {
	padding: 14px 16px;
	border: none;
	border-bottom: 1px solid var(--sm-article-border);
	text-align: left;
	vertical-align: top;
	min-width: 120px;
}

.sm-article__content thead th,
.sm-article__content table tr:first-child th {
	background: var(--sm-article-surface);
	font-weight: 650;
	color: var(--sm-article-text);
}

.sm-article__content tbody tr:last-child td {
	border-bottom: none;
}

.sm-article__content tbody td:first-child,
.sm-article__content tbody th:first-child {
	font-weight: 600;
}

/* ----------------------------------------------------------------------
 * Pattern: «Коротко»
 * -------------------------------------------------------------------- */
.sm-article__content .sm-article-summary {
	margin: 32px 0;
	padding: 26px 28px;
	background: var(--sm-article-surface);
	border-left: 3px solid var(--sm-article-accent);
	border-radius: 10px;
}

.sm-article__content .sm-article-summary__title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--sm-article-accent-strong);
}

.sm-article__content .sm-article-summary p {
	font-size: 17px;
	margin-bottom: 12px;
}

.sm-article__content .sm-article-summary > *:last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------------------
 * Pattern: информационные вставки
 * -------------------------------------------------------------------- */
.sm-article__content .sm-article-note {
	margin: 32px 0;
	padding: 20px 24px;
	background: var(--sm-article-surface);
	border-left: 3px solid var(--sm-article-accent);
	border-radius: 9px;
}

.sm-article__content .sm-article-note--warning {
	border-left-color: #d9822b;
	background: #fdf8f2;
}

.sm-article__content .sm-article-note__title {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 650;
}

.sm-article__content .sm-article-note p {
	font-size: 17px;
	margin-bottom: 10px;
}

.sm-article__content .sm-article-note > *:last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------------------
 * After-content sections (sources, author, related, comments)
 * -------------------------------------------------------------------- */
.sm-article__after {
	max-width: calc(var(--sm-article-content-width) + var(--sm-article-gap) + var(--sm-article-toc-width));
}

.sm-article__section-title {
	margin: 0 0 22px;
	font-size: clamp(22px, 0.6vw + 19px, 26px);
	font-weight: 650;
	line-height: 1.25;
	color: var(--sm-article-text);
}

/* Sources */
.sm-article__sources {
	max-width: var(--sm-article-content-width);
	margin-top: 56px;
	padding-top: 36px;
	border-top: 1px solid var(--sm-article-border);
}

.sm-article__sources-list {
	margin: 0;
	padding-left: 22px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--sm-article-muted);
}

.sm-article__sources-item {
	margin-bottom: 10px;
}

.sm-article__sources-item a {
	color: var(--sm-article-accent-strong);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sm-article__sources-item a:hover,
.sm-article__sources-item a:focus-visible {
	color: var(--sm-article-accent);
}

.sm-article__sources-note {
	color: var(--sm-article-faint);
	margin-left: 4px;
}

.sm-article__sources-details summary {
	cursor: pointer;
	font-size: 15px;
	color: var(--sm-article-accent-strong);
	margin-bottom: 12px;
}

/* Author card */
.sm-article__author {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	max-width: var(--sm-article-content-width);
	margin-top: 40px;
	padding: 22px 24px;
	border: 1px solid var(--sm-article-border);
	border-radius: var(--sm-article-radius);
	background: var(--sm-article-surface);
}

.sm-article__author-avatar img {
	display: block;
	width: 56px;
	height: 56px;
	border-radius: 50%;
}

.sm-article__author-name {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 650;
}

.sm-article__author-bio {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--sm-article-muted);
}

/* Related grid */
.sm-article__related {
	margin-top: 64px;
}

.sm-article__related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.sm-article__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.sm-article__related-grid--cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.sm-article__related-grid--cols-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sm-article__related-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--sm-article-border);
	border-radius: var(--sm-article-radius);
	overflow: hidden;
	background: #ffffff;
	text-decoration: none;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.sm-article__related-card:hover {
	border-color: rgba(43, 154, 160, 0.4);
	transform: translateY(-2px);
}

.sm-article__related-card:focus-visible {
	outline: 2px solid var(--sm-article-accent);
	outline-offset: 2px;
}

.sm-article__related-media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--sm-article-surface);
	overflow: hidden;
}

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

.sm-article__related-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 18px 18px;
}

.sm-article__related-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--sm-article-accent-strong);
}

.sm-article__related-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--sm-article-text);
}

/* Comments */
.sm-article__comments {
	max-width: var(--sm-article-content-width);
	margin-top: 64px;
	padding-top: 36px;
	border-top: 1px solid var(--sm-article-border);
}

.sm-article__comments-count {
	color: var(--sm-article-faint);
	font-weight: 500;
}

.sm-article__comments-empty {
	margin: 0 0 16px;
	font-size: 16px;
	color: var(--sm-article-muted);
}

.sm-article__comments-toggle {
	border: 1px solid var(--sm-article-border);
	border-radius: 10px;
	padding: 0 18px;
	background: var(--sm-article-surface);
}

.sm-article__comments-toggle summary {
	padding: 14px 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--sm-article-accent-strong);
	cursor: pointer;
}

.sm-article__comments-toggle[open] {
	padding-bottom: 18px;
}

.sm-article__comments-list {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	font-size: 16px;
	line-height: 1.6;
}

.sm-article__comments-list .comment,
.sm-article__comments-list .pingback {
	margin: 0 0 20px;
	padding: 18px 20px;
	border: 1px solid var(--sm-article-border);
	border-radius: 10px;
	list-style: none;
}

.sm-article__comments-list .children {
	margin: 16px 0 0;
	padding-left: 24px;
	list-style: none;
	border-left: 2px solid var(--sm-article-border);
}

/* Visual nesting depth is capped at two levels. */
.sm-article__comments-list .children .children {
	padding-left: 0;
	border-left: none;
}

.sm-article__comments-list .comment-body {
	position: relative;
}

.sm-article__comments-list .comment-author {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-style: normal;
}

.sm-article__comments-list .comment-author .avatar {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.sm-article__comments-list .comment-author .says {
	display: none;
}

.sm-article__comments-list .comment-metadata {
	margin: 4px 0 10px 50px;
	font-size: 13px;
}

.sm-article__comments-list .comment-metadata a {
	color: var(--sm-article-faint);
	text-decoration: none;
}

.sm-article__comments-list .comment-metadata a:hover {
	color: var(--sm-article-accent-strong);
	text-decoration: underline;
}

.sm-article__comments-list .comment-content {
	color: var(--sm-article-text);
}

.sm-article__comments-list .comment-content a {
	color: var(--sm-article-accent-strong);
	text-decoration: underline;
}

.sm-article__comments-list .reply {
	margin-top: 8px;
	font-size: 14px;
}

.sm-article__comments-list .reply a {
	color: var(--sm-article-accent-strong);
	text-decoration: none;
	font-weight: 600;
}

.sm-article__comments-list .reply a:hover,
.sm-article__comments-list .reply a:focus-visible {
	text-decoration: underline;
}

/* Comment form */
.sm-article__comments-respond {
	margin-top: 8px;
}

.sm-article__comments-form-title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 650;
}

.sm-article__comments .comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--sm-article-text);
}

.sm-article__comments .comment-form input[type="text"],
.sm-article__comments .comment-form input[type="email"],
.sm-article__comments .comment-form input[type="url"],
.sm-article__comments .comment-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--sm-article-border-strong);
	border-radius: 8px;
	background: #ffffff;
	color: var(--sm-article-text);
	font-size: 15px;
	font-family: inherit;
	box-shadow: none;
}

.sm-article__comments .comment-form input:focus-visible,
.sm-article__comments .comment-form textarea:focus-visible {
	outline: 2px solid var(--sm-article-accent);
	outline-offset: 1px;
	border-color: var(--sm-article-accent);
}

.sm-article__comments .comment-form .form-submit {
	margin-bottom: 0;
}

.sm-article__comments .comment-form input[type="submit"] {
	display: inline-block;
	padding: 11px 26px;
	border: none;
	border-radius: 8px;
	background: var(--sm-article-accent);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.18s ease;
}

.sm-article__comments .comment-form input[type="submit"]:hover,
.sm-article__comments .comment-form input[type="submit"]:focus-visible {
	background: var(--sm-article-accent-strong);
}

.sm-article__comments-closed {
	color: var(--sm-article-muted);
	font-size: 15px;
}

/* Comments navigation */
.sm-article__comments .comment-navigation,
.sm-article__comments .comments-pagination {
	margin: 0 0 24px;
	font-size: 14px;
}

.sm-article__comments .comment-navigation a {
	color: var(--sm-article-accent-strong);
}

/* ----------------------------------------------------------------------
 * Smooth scrolling and motion preferences
 * -------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
	html:has(.sm-article) {
		scroll-behavior: smooth;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sm-article *,
	.sm-article *::before,
	.sm-article *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* ----------------------------------------------------------------------
 * Responsive refinements
 * -------------------------------------------------------------------- */
@media (max-width: 1099px) {
	.sm-article__main {
		max-width: var(--sm-article-content-width);
		margin: 0 auto;
	}

	.sm-article__header,
	.sm-article__hero,
	.sm-article__sources,
	.sm-article__author,
	.sm-article__comments {
		max-width: var(--sm-article-content-width);
		margin-left: auto;
		margin-right: auto;
	}

	.sm-article__breadcrumbs,
	.sm-article__related {
		max-width: var(--sm-article-content-width);
		margin-left: auto;
		margin-right: auto;
	}

	.sm-article__article {
		padding-left: 28px;
		padding-right: 28px;
	}
}

@media (min-width: 1100px) {
	/* When the TOC column exists, center nothing: the grid handles it. */
	.sm-article__sources,
	.sm-article__author,
	.sm-article__comments {
		margin-left: 0;
	}

	/* Without a TOC the reading column is centered — no empty sidebar. */
	.sm-article__article--no-toc .sm-article__header,
	.sm-article__article--no-toc .sm-article__breadcrumbs,
	.sm-article__article--no-toc .sm-article__hero,
	.sm-article__article--no-toc .sm-article__main,
	.sm-article__article--no-toc .sm-article__sources,
	.sm-article__article--no-toc .sm-article__author,
	.sm-article__article--no-toc .sm-article__comments,
	.sm-article__article--no-toc .sm-article__related {
		max-width: var(--sm-article-content-width);
		margin-left: auto;
		margin-right: auto;
	}

	.sm-article__article--no-toc .sm-article__related {
		max-width: calc(var(--sm-article-content-width) + 160px);
	}
}

@media (max-width: 767px) {
	.sm-article__article {
		padding: 16px 18px 48px;
	}

	.sm-article__content {
		font-size: 17px;
		line-height: 1.65;
	}

	.sm-article__content th,
	.sm-article__content td {
		padding: 11px 12px;
		font-size: 14px;
	}

	.sm-article__author {
		padding: 18px;
	}

	.sm-article__comments-list .comment,
	.sm-article__comments-list .pingback {
		padding: 14px 14px;
	}

	.sm-article__comments-list .children {
		padding-left: 12px;
	}
}
