/**
 * Blog Single — Full Post View
 *
 * Design system:
 *   - Background: transparent (page provides dark background)
 *   - Glassmorphism: rgba(16, 16, 16, 0.28) + blur(16px) (over images)
 *   - Panels on dark bg: rgba(255, 255, 255, 0.04) + border rgba(255,255,255,0.08)
 *   - Fonts: Manrope 700 (headings), Helvetica (body), Helvetica 600 uppercase 13px (accents)
 *   - Container: 1220px
 *   - border-radius: 0
 */

/* ------------------------------------------------
   Shared
   ------------------------------------------------ */

.stg-blog-single__container {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 24px;
}

.stg-blog-single__label {
	display: inline-block;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 32px;
}

/* ------------------------------------------------
   Breadcrumbs
   ------------------------------------------------ */

.stg-blog-single__breadcrumbs {
	padding: 28px 0 0;
}

.stg-blog-single__breadcrumb-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.stg-blog-single__breadcrumb-item {
	display: inline-flex;
	align-items: center;
}

.stg-blog-single__breadcrumb-item::after {
	content: '/';
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.15);
}

.stg-blog-single__breadcrumb-item:last-child::after {
	display: none;
}

.stg-blog-single__breadcrumb-item a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.3s ease;
}

.stg-blog-single__breadcrumb-item a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.stg-blog-single__breadcrumb-item--current {
	color: rgba(255, 255, 255, 0.7);
	max-width: 300px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ------------------------------------------------
   Hero
   ------------------------------------------------ */

.stg-blog-single__hero {
	position: relative;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	height: clamp(450px, 65vh, 700px);
	overflow: hidden;
}

.stg-blog-single__hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.stg-blog-single__hero-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.stg-blog-single__hero-bg--empty {
	background: linear-gradient(
		135deg,
		#1a1a2e 0%,
		#16213e 50%,
		#0f3460 100%
	);
}

/* Back link */
.stg-blog-single__back {
	position: absolute;
	top: 24px;
	left: max(24px, calc((100vw - 1220px) / 2));
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: rgba(16, 16, 16, 0.3);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.stg-blog-single__back:hover {
	background: rgba(16, 16, 16, 0.45);
}

/* Hero glass panel */
.stg-blog-single__hero-glass {
	position: absolute;
	bottom: 30px;
	left: max(24px, calc((100vw - 1220px) / 2));
	right: max(24px, calc((100vw - 1220px) / 2));
	z-index: 3;
	padding: 36px 40px;
	background: rgba(16, 16, 16, 0.28);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(16px) saturate(1.2);
	-webkit-backdrop-filter: blur(16px) saturate(1.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Category badges */
.stg-blog-single__hero-badges {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.stg-blog-single__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

/* Hero title */
.stg-blog-single__hero-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: clamp(28px, 3.5vw, 48px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #FFFFFF;
	margin: 0 0 16px;
}

/* Hero meta — author + date + reading time */
.stg-blog-single__hero-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.stg-blog-single__hero-author {
	font-style: normal;
}

.stg-blog-single__hero-author a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.stg-blog-single__hero-author a:hover {
	color: #FFFFFF;
}

.stg-blog-single__hero-author::after,
.stg-blog-single__hero-date::after {
	content: '\00B7';
	margin-left: 6px;
	color: rgba(255, 255, 255, 0.2);
}

.stg-blog-single__hero-reading {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

/* ------------------------------------------------
   Body — content + sidebar
   ------------------------------------------------ */

.stg-blog-single__body {
	padding: 80px 0;
}

.stg-blog-single__body .stg-blog-single__container {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 60px;
	align-items: start;
}

/* Content column */
.stg-blog-single__content {
	min-width: 0;
}

/* ------------------------------------------------
   Content Typography
   ------------------------------------------------ */

.stg-blog-single__text {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.72);
}

.stg-blog-single__text p {
	margin: 0 0 24px;
}

.stg-blog-single__text p:last-child {
	margin-bottom: 0;
}

.stg-blog-single__text h2,
.stg-blog-single__text h3,
.stg-blog-single__text h4 {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: -0.02em;
	scroll-margin-top: 100px;
}

.stg-blog-single__text h2 {
	font-size: 28px;
	margin: 56px 0 20px;
}

.stg-blog-single__text h3 {
	font-size: 22px;
	margin: 48px 0 16px;
}

.stg-blog-single__text h4 {
	font-size: 18px;
	margin: 40px 0 12px;
}

.stg-blog-single__text h2:first-child,
.stg-blog-single__text h3:first-child,
.stg-blog-single__text h4:first-child {
	margin-top: 0;
}

.stg-blog-single__text a {
	color: #FFFFFF;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(255, 255, 255, 0.3);
	transition: text-decoration-color 0.3s ease;
}

.stg-blog-single__text a:hover {
	text-decoration-color: #FFFFFF;
}

.stg-blog-single__text ul,
.stg-blog-single__text ol {
	padding-left: 24px;
	margin: 0 0 24px;
}

.stg-blog-single__text li {
	margin-bottom: 10px;
}

.stg-blog-single__text li::marker {
	color: rgba(255, 255, 255, 0.3);
}

.stg-blog-single__text blockquote {
	margin: 36px 0;
	padding: 28px 32px;
	border-left: 3px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.02);
	color: rgba(255, 255, 255, 0.55);
	font-style: italic;
	font-size: 18px;
	line-height: 1.7;
}

.stg-blog-single__text blockquote p:last-child {
	margin-bottom: 0;
}

.stg-blog-single__text img {
	max-width: 100%;
	height: auto;
}

.stg-blog-single__text figure {
	margin: 36px 0;
}

.stg-blog-single__text figcaption {
	margin-top: 12px;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
}

.stg-blog-single__text code {
	font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
	font-size: 0.88em;
	padding: 2px 7px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
}

.stg-blog-single__text pre {
	margin: 32px 0;
	padding: 24px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.stg-blog-single__text pre code {
	padding: 0;
	background: none;
	border: none;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.stg-blog-single__text table {
	width: 100%;
	border-collapse: collapse;
	margin: 32px 0;
}

.stg-blog-single__text th,
.stg-blog-single__text td {
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
}

.stg-blog-single__text th {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.03);
}

.stg-blog-single__text hr {
	border: none;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 48px 0;
}

/* WordPress block overrides */
.stg-blog-single__text .wp-block-image {
	margin: 36px 0;
}

.stg-blog-single__text .wp-block-quote {
	margin: 36px 0;
	padding: 28px 32px;
	border-left: 3px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.02);
}

.stg-blog-single__text .wp-block-separator {
	border: none;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 48px 0;
}

/* ------------------------------------------------
   Sidebar
   ------------------------------------------------ */

.stg-blog-single__sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Sidebar panels */
.stg-blog-single__panel {
	padding: 28px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.stg-blog-single__panel-title {
	display: block;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Details panel */
.stg-blog-single__detail {
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stg-blog-single__detail:first-child {
	padding-top: 0;
}

.stg-blog-single__detail:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.stg-blog-single__detail-label {
	display: block;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 4px;
}

.stg-blog-single__detail-value {
	display: block;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
}

/* ------------------------------------------------
   Table of Contents
   ------------------------------------------------ */

.stg-blog-single__toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: toc;
}

.stg-blog-single__toc-item {
	counter-increment: toc;
}

.stg-blog-single__toc-item a {
	display: block;
	padding: 8px 0;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	transition: color 0.3s ease;
}

.stg-blog-single__toc-item:last-child a {
	border-bottom: none;
}

.stg-blog-single__toc-item a:hover {
	color: rgba(255, 255, 255, 0.9);
}

.stg-blog-single__toc-item--h3 a {
	padding-left: 16px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.38);
}

/* ------------------------------------------------
   Tags
   ------------------------------------------------ */

.stg-blog-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.stg-blog-single__tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------
   Share Links
   ------------------------------------------------ */

.stg-blog-single__share-links {
	display: flex;
	gap: 8px;
}

.stg-blog-single__share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.stg-blog-single__share-link:hover {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
}

/* ------------------------------------------------
   Author Box
   ------------------------------------------------ */

.stg-blog-single__author-section {
	padding: 0 0 80px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 60px;
}

.stg-blog-single__author-box {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 32px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.stg-blog-single__author-avatar {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.stg-blog-single__author-info {
	min-width: 0;
}

.stg-blog-single__author-name {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	text-decoration: none;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.stg-blog-single__author-name:hover {
	color: rgba(255, 255, 255, 0.7);
}

.stg-blog-single__author-bio {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ------------------------------------------------
   Related Posts
   ------------------------------------------------ */

.stg-blog-single__related {
	padding: 0 0 80px;
}

.stg-blog-single__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.stg-blog-single__related-card {
	position: relative;
	overflow: hidden;
	background: #111;
	aspect-ratio: 4 / 3;
}

.stg-blog-single__related-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.stg-blog-single__related-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.stg-blog-single__related-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stg-blog-single__related-card:hover .stg-blog-single__related-img {
	transform: scale(1.04);
}

.stg-blog-single__related-bg--empty {
	background: linear-gradient(
		135deg,
		#1a1a2e 0%,
		#16213e 50%,
		#0f3460 100%
	);
}

.stg-blog-single__related-glass {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	z-index: 3;
	padding: 20px;
	background: rgba(16, 16, 16, 0.28);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(16px) saturate(1.2);
	-webkit-backdrop-filter: blur(16px) saturate(1.2);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stg-blog-single__related-card:hover .stg-blog-single__related-glass {
	transform: translateY(-3px);
}

.stg-blog-single__related-cat {
	display: inline-block;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 8px;
}

.stg-blog-single__related-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin: 0 0 8px;
}

.stg-blog-single__related-date {
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 500;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
}

/* ------------------------------------------------
   Navigation — prev / next
   ------------------------------------------------ */

.stg-blog-single__nav {
	padding: 0 0 80px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 60px;
}

.stg-blog-single__nav-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.stg-blog-single__nav-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 28px 32px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.stg-blog-single__nav-item:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}

.stg-blog-single__nav-item--next {
	text-align: right;
}

.stg-blog-single__nav-direction {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: 'Helvetica', 'Arial', sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}

.stg-blog-single__nav-item--next .stg-blog-single__nav-direction {
	justify-content: flex-end;
}

.stg-blog-single__nav-title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #FFFFFF;
}

/* ------------------------------------------------
   Responsive — Tablet
   ------------------------------------------------ */

@media (max-width: 1024px) {
	.stg-blog-single__body .stg-blog-single__container {
		grid-template-columns: 1fr 260px;
		gap: 40px;
	}

	.stg-blog-single__hero-glass {
		left: 24px;
		right: 24px;
		padding: 28px 32px;
	}

	.stg-blog-single__back {
		left: 24px;
	}

	.stg-blog-single__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ------------------------------------------------
   Responsive — Mobile
   ------------------------------------------------ */

@media (max-width: 767px) {
	.stg-blog-single__hero {
		height: clamp(320px, 50vh, 480px);
	}

	.stg-blog-single__hero-glass {
		left: 20px;
		right: 20px;
		bottom: 20px;
		padding: 24px;
	}

	.stg-blog-single__hero-title {
		font-size: clamp(22px, 5.5vw, 32px);
	}

	.stg-blog-single__back {
		left: 20px;
		top: 20px;
		padding: 8px 14px;
		font-size: 10px;
	}

	.stg-blog-single__breadcrumbs {
		padding: 16px 0;
	}

	.stg-blog-single__breadcrumb-item--current {
		max-width: 160px;
	}

	.stg-blog-single__body {
		padding: 48px 0;
	}

	.stg-blog-single__body .stg-blog-single__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.stg-blog-single__sidebar {
		position: static;
	}

	.stg-blog-single__container {
		padding: 0 20px;
	}

	.stg-blog-single__text {
		font-size: 16px;
	}

	.stg-blog-single__text h2 { font-size: 24px; margin-top: 40px; }
	.stg-blog-single__text h3 { font-size: 20px; margin-top: 36px; }
	.stg-blog-single__text h4 { font-size: 17px; margin-top: 32px; }

	.stg-blog-single__text pre {
		padding: 18px;
	}

	.stg-blog-single__text blockquote {
		padding: 20px 24px;
		margin: 28px 0;
	}

	.stg-blog-single__author-section {
		padding: 48px 0;
	}

	.stg-blog-single__author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 28px;
	}

	.stg-blog-single__related {
		padding: 0 0 48px;
	}

	.stg-blog-single__related-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stg-blog-single__nav {
		padding: 48px 0;
	}

	.stg-blog-single__nav-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stg-blog-single__nav-item--next {
		text-align: left;
	}

	.stg-blog-single__nav-item--next .stg-blog-single__nav-direction {
		justify-content: flex-start;
	}

	.stg-blog-single__label {
		margin-bottom: 24px;
	}

	.stg-blog-single__share-links {
		flex-wrap: wrap;
	}

	.stg-blog-single__hero-meta {
		font-size: 12px;
	}
}

/* ------------------------------------------------
   Reduced Motion
   ------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.stg-blog-single__related-img {
		transition: none;
	}

	.stg-blog-single__related-glass {
		transition: none;
	}

	.stg-blog-single__nav-item {
		transition: none;
	}

	.stg-blog-single__back {
		transition: none;
	}

	.stg-blog-single__share-link {
		transition: none;
	}
}
