/*
 * ELNIQ GEO — single blog post ("article") template styles. One
 * shared template for every post (per direction) — values copied
 * verbatim from the article mockups (all 6 share identical structure:
 * blog-what-is-happening-to-google-in-seo-2026.dc.html etc.), driven
 * entirely by real post data (title, date, author, featured image,
 * content), not per-article hardcoding.
 */

.eg-article-header {
	padding: 32px 24px 0;
}
.eg-article-header__inner {
	max-width: 840px;
	margin: 0 auto;
}
.eg-article-header__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	color: var(--eg-text-muted-2);
	margin-bottom: 18px;
}
.eg-article-header h1 {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 28px;
	letter-spacing: -0.01em;
	line-height: 1.15;
}
.eg-article-header__image {
	border-radius: var(--eg-radius-card);
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(16, 35, 95, 0.12);
	border: 1px solid var(--eg-border-light);
	margin-bottom: 8px;
}
.eg-article-header__image img {
	width: 100%;
	height: auto;
	display: block;
}

.eg-article-body-section {
	padding: 32px 24px 96px;
}
.eg-article-body {
	max-width: 840px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(16, 35, 95, 0.08);
	padding: 48px 52px;
}
.eg-article-body h2 {
	font-size: 20px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 32px 0 12px;
	letter-spacing: -0.01em;
}
.eg-article-body h2:first-child {
	margin-top: 0;
}
.eg-article-body p {
	font-size: 15.5px;
	line-height: 1.75;
	color: #374151;
	margin: 0 0 16px;
}
.eg-article-body ul {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.eg-article-body ul li {
	display: flex;
	gap: 10px;
	font-size: 15.5px;
	line-height: 1.65;
	color: #374151;
}
.eg-article-body ul li::before {
	content: "";
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--eg-blue);
	margin-top: 10px;
}

.eg-article-footer {
	margin-top: 36px;
	padding-top: 26px;
	border-top: 1px solid var(--eg-border-light);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.eg-article-footer__back {
	font-size: 14.5px;
	font-weight: 700;
}
.eg-article-footer__share {
	display: flex;
	align-items: center;
	gap: 10px;
}
.eg-article-footer__share-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--eg-text-muted-2);
}
.eg-article-footer__share a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--eg-section-bg-light);
	border: 1px solid var(--eg-border-light);
	display: flex;
	align-items: center;
	justify-content: center;
}
.eg-article-footer__share a:hover,
.eg-article-footer__share a:focus-visible {
	background: var(--eg-blue-tint-bg);
	border-color: var(--eg-blue);
}
