/**
 * Astana News — single.css
 *
 * Специфичные стили для single.php (одиночная статья).
 * Подключается условно через is_singular('post') в inc/enqueue.php.
 *
 * Поддерживаются:
 *   1. Нативные блоки Gutenberg (core/pullquote, core/group + is-style-akmo-callout,
 *      core/table + is-style-akmo-fact, core/image + is-style-akmo-fig-inline)
 *   2. Legacy-классы (.callout, .pullquote, .fact-table, .fig-inline) для случаев,
 *      когда контент пишется руками или импортируется из других CMS.
 *   3. Стандартный WP `has-drop-cap` для буквицы.
 *
 * @package Akmo
 */

/* ============================================================
   1. ARTICLE HEADER
   ============================================================ */
.article-head {
	padding: 36px 0 24px;
	border-bottom: 1px solid var(--rule);
}

.article-cat {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cat-active);
	margin-bottom: 14px;
}
.article-cat::before {
	content: '';
	width: 28px;
	height: 2px;
	background: var(--cat-active);
}
.article-cat a { color: inherit; }

.article-h1 {
	font-family: var(--serif);
	font-weight: 700;
	font-size: clamp(28px, 3.3vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	color: var(--ink);
	text-wrap: balance;
}
.article-h1 em {
	font-style: italic;
	font-weight: 400;
	color: var(--cat-active);
}

.article-dek {
	font-family: var(--serif);
	font-style: italic;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.45;
	color: var(--ink-2);
	margin: 0 0 32px;
	max-width: 60ch;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
	padding-top: 14px;
	border-top: 1px solid var(--rule);
}
.meta-author {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	flex-shrink: 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.15s;
}
.meta-author:hover { color: var(--cat-active); }
.meta-author:hover .meta-author-name { color: var(--cat-active); }
.meta-author-avatar {
	width: 36px;
	height: 36px;
	background: var(--cat-active-soft);
	color: var(--cat-active);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	flex-shrink: 0;
}
.meta-author-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.meta-author-name {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	letter-spacing: -0.005em;
	line-height: 1.2;
}
.meta-author-role {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-3);
	line-height: 1.2;
}
.meta-mid {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.meta-mid b { color: var(--ink); font-weight: 600; }
.meta-actions {
	display: flex;
	gap: 6px;
	margin-left: auto;
	flex-shrink: 0;
}
.meta-actions .share-btn {
	width: 32px;
	height: 32px;
}

/* ============================================================
   2. HERO IMAGE
   ============================================================ */
.article-hero {
	padding: 20px 0 12px;
}
.hero-fig {
	margin: 0;
	background: var(--ph-bg);
	position: relative;
	overflow: hidden;
}
.hero-fig img {
	width: 100%;
	height: auto;
	display: block;
}
.hero-caption {
	margin: 14px 0 0;
	font-family: var(--serif);
	font-style: italic;
	font-size: 14px;
	line-height: 1.45;
	color: var(--ink-3);
	padding-left: 14px;
	border-left: 2px solid var(--cat-active);
	max-width: 60ch;
}
.hero-caption b {
	color: var(--ink);
	font-style: normal;
	font-weight: 700;
}

/* ============================================================
   3. ARTICLE BODY — типографика
   ============================================================ */
.article-body {
	padding: 36px 0 56px;
}

.article-body p {
	font-family: var(--serif);
	font-size: 19px;
	line-height: 1.65;
	color: var(--ink);
	margin: 0 0 22px;
}
.article-body p:last-child { margin-bottom: 0; }

/* Drop cap — стандартный WP флажок */
.article-body p.has-drop-cap:not(:focus)::first-letter {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 64px;
	line-height: 0.9;
	float: left;
	margin: 4px 12px -2px 0;
	color: var(--cat-active);
	font-style: normal;
	text-transform: none;
}

.article-body h2 {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.015em;
	margin: 44px 0 18px;
	color: var(--ink);
}
.article-body h3 {
	font-family: var(--serif);
	font-weight: 700;
	font-style: italic;
	font-size: 19px;
	line-height: 1.3;
	margin: 32px 0 14px;
	color: var(--ink);
}

.article-body a {
	color: var(--cat-active);
	border-bottom: 1px solid var(--cat-active);
	transition: background 0.15s;
}
.article-body a:hover { background: var(--cat-active-soft); }

.article-body strong { font-weight: 700; color: var(--ink); }
.article-body em     { font-style: italic; }

.article-body ul,
.article-body ol {
	font-family: var(--serif);
	font-size: 19px;
	line-height: 1.6;
	margin: 0 0 22px;
	padding-left: 22px;
}
.article-body li { margin-bottom: 10px; }
.article-body ul li::marker { color: var(--cat-active); }
.article-body ol li::marker { color: var(--cat-active); font-weight: 700; }

/* ============================================================
   4. PULLQUOTE — нативный core/pullquote + .pullquote (legacy)
        + core/quote.is-style-akmo-pullquote (block style variation)
   ============================================================ */
.article-body .wp-block-pullquote,
.article-body .wp-block-quote.is-style-akmo-pullquote,
.article-body .pullquote {
	margin: 40px 0;
	padding: 24px 0 24px 32px;
	border-left: 4px solid var(--cat-active);
	background: transparent;
	color: var(--ink);
	text-align: left;
	border-top: none;
	border-bottom: none;
	border-right: none;
}
.article-body .wp-block-pullquote p,
.article-body .wp-block-quote.is-style-akmo-pullquote p,
.article-body .pullquote p,
.article-body .pullquote {
	font-family: var(--serif);
	font-style: italic;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.32;
	color: var(--ink);
	letter-spacing: -0.01em;
	margin: 0;
}
.article-body .wp-block-pullquote p::before,
.article-body .wp-block-quote.is-style-akmo-pullquote p::before,
.article-body .pullquote::before {
	content: '«';
	font-size: 42px;
	line-height: 0;
	color: var(--cat-active);
	vertical-align: -0.18em;
	margin-right: 4px;
}
.article-body .wp-block-pullquote p::after,
.article-body .wp-block-quote.is-style-akmo-pullquote p::after,
.article-body .pullquote::after {
	content: '»';
	color: var(--cat-active);
}
.article-body .wp-block-pullquote cite,
.article-body .wp-block-quote.is-style-akmo-pullquote cite,
.article-body .pullquote-cite {
	display: block;
	margin-top: 14px;
	font-family: var(--mono);
	font-style: normal;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}

/* ============================================================
   5. CALLOUT — справочный блок
   Native: core/group.is-style-akmo-callout
   Legacy: .callout
   ============================================================ */
.article-body .is-style-akmo-callout,
.article-body .callout {
	margin: 40px 0;
	padding: 30px 32px 32px;
	background: var(--cat-active-soft);
	border-left: 4px solid var(--cat-active);
}
.article-body .is-style-akmo-callout > *:first-child,
.article-body .callout > *:first-child { margin-top: 0; }
.article-body .is-style-akmo-callout > *:last-child,
.article-body .callout > *:last-child  { margin-bottom: 0; }

.article-body .is-style-akmo-callout p,
.article-body .callout p {
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink-2);
	margin: 0 0 12px;
}
.article-body .is-style-akmo-callout h2,
.article-body .is-style-akmo-callout h3,
.article-body .is-style-akmo-callout h4,
.article-body .callout h2,
.article-body .callout h3,
.article-body .callout-h {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 21px;
	line-height: 1.25;
	margin: 0 0 14px;
	color: var(--ink);
	font-style: normal;
}
.article-body .is-style-akmo-callout h2::before,
.article-body .is-style-akmo-callout h3::before,
.article-body .is-style-akmo-callout h4::before,
.article-body .callout h2::before,
.article-body .callout h3::before {
	content: none;
}

/* Маленький "strap" — необязательный заголовок-капитель.
   Использовать через class "callout-strap" на параграфе или обычным paragraph
   с выбранным block style. */
.article-body .callout-strap,
.article-body .is-style-akmo-callout > p:first-child.has-text-color {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cat-active);
	margin-bottom: 12px;
}

/* ============================================================
   6. FIG INLINE — иллюстрация в потоке
   Native: core/image.is-style-akmo-fig-inline (или просто core/image)
   Legacy: .fig-inline
   ============================================================ */
.article-body .wp-block-image,
.article-body .fig-inline {
	margin: 32px 0;
}
.article-body .wp-block-image img,
.article-body .fig-inline img,
.article-body .fig-inline-ph {
	width: 100%;
	height: auto;
	display: block;
	background: var(--ph-bg);
}
.article-body .wp-block-image figcaption,
.article-body .fig-inline-cap {
	margin-top: 10px;
	font-family: var(--serif);
	font-style: italic;
	font-size: 14px;
	line-height: 1.45;
	color: var(--ink-3);
	padding-left: 12px;
	border-left: 2px solid var(--rule);
	text-align: left;
}
.article-body .wp-block-image.is-style-akmo-fig-inline figcaption {
	border-left-color: var(--cat-active);
}
.article-body .wp-block-image figcaption b,
.article-body .fig-inline-cap b {
	color: var(--ink);
	font-weight: 700;
	font-style: normal;
}

/* ============================================================
   7. FACT TABLE
   Native: core/table.is-style-akmo-fact
   Legacy: .fact-table
   ============================================================ */
.article-body .wp-block-table.is-style-akmo-fact table,
.article-body .fact-table,
.article-body table.fact-table {
	margin: 32px 0;
	width: 100%;
	border-collapse: collapse;
	font-family: var(--sans);
}
.article-body .wp-block-table.is-style-akmo-fact figcaption,
.article-body .wp-block-table.is-style-akmo-fact caption,
.article-body .fact-table caption {
	caption-side: top;
	text-align: left;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cat-active);
	padding-bottom: 12px;
	border-bottom: 2px solid var(--cat-active);
	margin-bottom: 0;
}
.article-body .wp-block-table.is-style-akmo-fact th,
.article-body .wp-block-table.is-style-akmo-fact td,
.article-body .fact-table th,
.article-body .fact-table td {
	padding: 16px 0;
	border-bottom: 1px solid var(--rule);
	border-top: none;
	border-left: none;
	border-right: none;
	text-align: left;
	font-size: 15px;
}
.article-body .wp-block-table.is-style-akmo-fact th,
.article-body .fact-table th {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-3);
}
.article-body .wp-block-table.is-style-akmo-fact td:last-child,
.article-body .fact-table td:last-child {
	font-family: var(--mono);
	font-weight: 600;
	text-align: right;
	color: var(--ink);
}
.article-body .wp-block-table.is-style-akmo-fact tr:hover td,
.article-body .fact-table tr:hover td {
	background: var(--cat-active-soft);
}

/* ============================================================
   8. ARTICLE TAGS
   ============================================================ */
.article-tags {
	padding: 28px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.tags-label {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-right: 8px;
}
.tag {
	font-family: var(--sans);
	font-size: 12px;
	font-weight: 500;
	padding: 6px 12px;
	border: 1px solid var(--rule);
	color: var(--ink-2);
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
	display: inline-block;
}
.tag:hover {
	border-color: var(--cat-active);
	color: var(--cat-active);
	background: var(--cat-active-soft);
}

/* ============================================================
   9. SHARE ROW
   ============================================================ */
.share-row {
	padding: 28px 0;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--rule);
}
.share-label {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-3);
}
/* В share-row кнопки чуть крупнее (38px) — переопределяем общий размер. */
.share-row .share-btn {
	width: 38px;
	height: 38px;
}
.share-row .share-btn:hover {
	background: var(--cat-active);
	color: #fff;
}
.share-views {
	margin-left: auto;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-3);
}
.share-views b { color: var(--ink); font-weight: 600; }

/* ============================================================
   10. AUTHOR BOX
   ============================================================ */
.author-box {
	margin: 36px 0;
	padding: 22px 26px;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	background: var(--rule-soft);
	border-left: 3px solid var(--cat-active);
	align-items: center;
}
.author-box-avatar {
	width: 56px;
	height: 56px;
	background: var(--cat-active);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.02em;
}
.author-box-text { display: flex; flex-direction: column; gap: 6px; }
.author-box-name {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	margin: 0;
	color: var(--ink);
	letter-spacing: -0.005em;
}
.author-box-bio {
	font-family: var(--sans);
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink-2);
}
.author-box-bio p { margin: 0 0 8px; }
.author-box-bio p:last-child { margin-bottom: 0; }
.author-box-link {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cat-active);
	border-bottom: 1px solid var(--cat-active);
	padding-bottom: 2px;
	cursor: pointer;
	align-self: flex-start;
	text-decoration: none;
}

/* ============================================================
   11. AFTER-SINGLE WIDGET ZONE
   ============================================================ */
.after-single-zone {
	margin: 36px 0;
}

/* ============================================================
   12. POST PAGINATION (wp_link_pages)
   ============================================================ */
.post-pagination {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin: 36px 0;
	padding: 16px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}
.post-pagination a,
.post-pagination > span {
	display: inline-block;
	padding: 6px 12px;
	border: 1px solid var(--rule);
	color: var(--ink-2);
	text-decoration: none;
}
.post-pagination a:hover {
	border-color: var(--cat-active);
	color: var(--cat-active);
}
.post-pagination > span {
	background: var(--cat-active);
	color: #fff;
	border-color: var(--cat-active);
}

/* ============================================================
   13. RELATED
   ============================================================ */
.related {
	padding: 56px 0 40px;
	border-top: 1px solid var(--rule);
}
.related-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--ink);
	margin-bottom: 28px;
}
.related-h {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 24px;
	margin: 0;
	letter-spacing: -0.01em;
}
.related-h em {
	font-style: italic;
	font-weight: 400;
	color: var(--cat-active);
}
.related-more {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cat-active);
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
/* Внутри related — карточки используют общий .card стиль из style.css.
   Делаем чуть мельче заголовок и без description. */
.related-grid .card .card-h { font-size: 18px; }

/* ============================================================
   14. КОММЕНТАРИИ — стилизация ветки + формы
   ============================================================ */
.comments-area {
	margin: 36px 0;
	padding: 32px 0;
	border-top: 1px solid var(--rule);
}
.comments-title {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 24px;
	margin: 0 0 24px;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.comments-list,
.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}
.comment-body {
	padding: 18px 0;
	border-bottom: 1px solid var(--rule-soft);
}
.comments-list .children,
.comment-list .children {
	list-style: none;
	padding-left: 32px;
	margin-top: 14px;
}
.comment-meta {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 14px;
	align-items: center;
	margin-bottom: 12px;
}
.comment-meta img.avatar {
	width: 56px;
	height: 56px;
	display: block;
}
.comment-meta-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.comment-author-name {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 15px;
	color: var(--ink);
}
.comment-time,
.comment-time:hover {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
	text-decoration: none;
}
.comment-content {
	font-family: var(--serif);
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink);
}
.comment-content p { margin: 0 0 10px; }
.comment-content p:last-child { margin: 0; }
.comment-awaiting {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 8px 0 0;
}
.comment-footer {
	margin-top: 8px;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.06em;
}
.comment-reply-link,
.comment-edit-link {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s;
}
.comment-reply-link:hover,
.comment-edit-link:hover { border-bottom-color: var(--accent); }
.comments-closed {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-3);
	padding: 12px 0;
	border-top: 1px solid var(--rule);
}

/* COMMENT FORM */
.comment-respond {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--rule);
}
.comment-reply-title {
	font-family: var(--serif);
	font-weight: 700;
	font-size: 22px;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	color: var(--ink);
}
.comment-reply-title small {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-left: 12px;
}
.comment-reply-title small a {
	color: var(--ink-3);
	text-decoration: none;
	border-bottom: 1px dotted var(--ink-3);
}
.comment-reply-title small a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.comment-notes {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin: 0 0 18px;
}
.comment-form label {
	display: block;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-2);
	margin: 0 0 6px;
}
.comment-form .required { color: var(--down); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	font-family: var(--serif);
	font-size: 15px;
	line-height: 1.5;
	background: var(--paper);
	border: 1px solid var(--rule);
	color: var(--ink);
	box-sizing: border-box;
	transition: border-color 0.15s;
}
.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--accent);
}
.comment-form-author,
.comment-form-email {
	display: inline-block;
	width: calc(50% - 8px);
	margin-right: 8px;
	margin-bottom: 14px;
	vertical-align: top;
}
.comment-form-email { margin-right: 0; margin-left: 8px; }
.comment-form-comment { margin-bottom: 14px; }
.comment-form-cookies-consent {
	font-family: var(--sans);
	font-size: 13px;
	color: var(--ink-3);
	margin: 0 0 14px;
}
.comment-form-cookies-consent label {
	display: inline;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	margin: 0 0 0 6px;
	color: var(--ink-3);
}
.comment-form .comment-form-submit,
.comment-form .submit {
	background: var(--ink);
	color: #FFFFFF;
	border: none;
	padding: 12px 22px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s;
}
.comment-form .comment-form-submit:hover,
.comment-form .submit:hover { background: var(--accent); }
.comment-form .logged-in-as {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--ink-3);
	margin: 0 0 18px;
}
.comment-form .logged-in-as a { color: var(--accent); border-bottom: 1px solid currentColor; text-decoration: none; }

/* RESPONSIVE for comment form */
@media (max-width: 700px) {
	.comment-form-author,
	.comment-form-email {
		display: block;
		width: 100%;
		margin: 0 0 14px;
	}
	.comments-list .children,
	.comment-list .children { padding-left: 16px; }
}

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
	.article-head { padding: 24px 0 18px; }
	.article-h1 { font-size: 30px; }
	.article-meta { gap: 10px 14px; }
	.meta-actions { margin-left: 0; }

	.related-grid { grid-template-columns: 1fr; gap: 32px; }

	.author-box {
		grid-template-columns: 48px 1fr;
		padding: 18px 20px;
		gap: 14px;
	}
	.author-box-avatar { width: 48px; height: 48px; font-size: 17px; }

	.article-body p,
	.article-body ul,
	.article-body ol { font-size: 17px; }
	.article-body h2 { font-size: 22px; margin-top: 36px; }
	.article-body p.has-drop-cap:not(:focus)::first-letter { font-size: 52px; }

	.article-body .wp-block-pullquote,
	.article-body .wp-block-quote.is-style-akmo-pullquote,
	.article-body .pullquote { padding: 18px 0 18px 20px; }
	.article-body .wp-block-pullquote p,
	.article-body .wp-block-quote.is-style-akmo-pullquote p,
	.article-body .pullquote { font-size: 20px; }

	.article-body .is-style-akmo-callout,
	.article-body .callout { padding: 22px 22px 24px; }

	.share-row .share-views { width: 100%; margin-left: 0; }
}

/* ============================================================
   Gutenberg align-wide / align-full внутри статьи.
   Контент ограничен по ширине, поэтому блоки «вырываются» из колонки.
   ============================================================ */
.article-body .alignfull {
  margin-left: calc( 50% - 50vw );
  margin-right: calc( 50% - 50vw );
  max-width: 100vw;
  width: auto;
}
.article-body .alignwide {
  margin-left: calc( 50% - min( 550px, 46vw ) );
  margin-right: calc( 50% - min( 550px, 46vw ) );
  max-width: none;
  width: auto;
}
.article-body .alignfull > img,
.article-body .alignwide > img { width: 100%; height: auto; display: block; }
