/**
 * Single Post Template Styles
 * Design from single-post.html – no Tailwind dependency, all local.
 *
 * @package PetiFoodBlog
 */

/* -------------------------------------------------------------------------
   Variables (match HTML theme)
   ------------------------------------------------------------------------- */
.single-post-wrap {
	--primary: #6ee619;
	--primary-dark: #5bc215;
	--primary-light: #8cf045;
	--bg-light: #f7f8f6;
	--bg-dark: #182111;
	--secondary-text: #64748b;
	--radius: 0.25rem;
	--radius-lg: 0.5rem;
	--radius-xl: 0.75rem;
	--radius-2xl: 1rem;
	--radius-full: 9999px;
	font-family: 'Vazirmatn', 'Plus Jakarta Sans', sans-serif;
}

/* Reading progress bar */
.single-post-reading-progress {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	z-index: 100;
	pointer-events: none;
	background: rgba(110, 230, 25, 0.12);
}

.single-post-reading-progress-bar {
	height: 100%;
	width: 0;
	background: var(--primary);
	box-shadow: 0 0 8px rgba(110, 230, 25, 0.45);
	transition: width 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
	.single-post-reading-progress-bar {
		transition: none;
	}
}

/* -------------------------------------------------------------------------
   Base & layout
   ------------------------------------------------------------------------- */
.single-post-wrap {
	background: var(--bg-light);
	color: #1f2937;
	-webkit-font-smoothing: antialiased;
	transition: background-color 0.3s, color 0.3s;
}

.single-post-wrap.dark-mode {
	background: var(--bg-dark);
	color: #f3f4f6;
}

.single-post-banner {
	background: rgba(110, 230, 25, 0.1);
	text-align: center;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
}

.single-post-wrap.dark-mode .single-post-banner {
	background: rgba(110, 230, 25, 0.05);
	color: #d1d5db;
}

/* Header */
.single-post-header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid #f3f4f6;
}

.single-post-wrap.dark-mode .single-post-header {
	background: rgba(24, 33, 17, 0.9);
	border-color: #1f2937;
}

.single-post-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 1024px) {
	.single-post-header-inner {
		padding: 0 2rem;
	}
}

.single-post-header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
	gap: 1rem;
}

.single-post-logo {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
}

.single-post-logo-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--primary);
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.single-post-logo-icon .petti-icon,
.single-post-logo-icon .single-post-logo-icon-svg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
}
.single-post-logo-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.single-post-logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(to left, #111827, #4b5563);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.single-post-wrap.dark-mode .single-post-logo-text {
	background: linear-gradient(to left, #fff, #9ca3af);
	-webkit-background-clip: text;
	background-clip: text;
}

.single-post-nav-wrap {
	display: none;
}

@media (min-width: 768px) {
	.single-post-nav-wrap {
		display: flex;
		flex: 1;
		max-width: 36rem;
		margin: 0 2rem;
	}
}

.single-post-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.single-post-nav-list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-post-nav-list li {
	margin: 0;
}

.single-post-nav a {
	font-size: 0.875rem;
	font-weight: 500;
	color: #4b5563;
	text-decoration: none;
	transition: color 0.2s;
}

.single-post-wrap.dark-mode .single-post-nav a {
	color: #d1d5db;
}

.single-post-nav a:hover,
.single-post-nav a.active {
	color: var(--primary);
}

.single-post-header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

@media (min-width: 1024px) {
	.single-post-header-actions {
		gap: 1.25rem;
	}
}

.single-post-header-actions .btn-ghost {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: none;
	border: none;
	color: #4b5563;
	cursor: pointer;
	font: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.single-post-wrap.dark-mode .btn-ghost {
	color: #d1d5db;
}

.single-post-header-actions .btn-ghost:hover {
	color: var(--primary);
}

.single-post-header-actions .label {
	display: none;
}

@media (min-width: 1024px) {
	.single-post-header-actions .label {
		display: inline;
		font-size: 0.875rem;
		font-weight: 500;
	}
}

.single-post-header-divider {
	width: 1px;
	height: 1.5rem;
	background: #e5e7eb;
	display: none;
}

.single-post-wrap.dark-mode .single-post-header-divider {
	background: #374151;
}

@media (min-width: 1024px) {
	.single-post-header-divider {
		display: block;
	}
}

.single-post-cart-btn {
	position: relative;
	padding: 0.5rem;
	color: #4b5563;
	background: none;
	border: none;
	border-radius: var(--radius-xl);
	cursor: pointer;
	transition: color 0.2s, background 0.2s;
}

.single-post-cart-btn:hover {
	color: var(--primary);
	background: rgba(110, 230, 25, 0.1);
}

.single-post-cart-badge {
	position: absolute;
	top: 0.25rem;
	left: 0.25rem;
	min-width: 1rem;
	height: 1rem;
	padding: 0 2px;
	font-size: 10px;
	font-weight: 700;
	background: var(--primary);
	color: #fff;
	border-radius: var(--radius-full);
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.single-post-wrap.dark-mode .single-post-cart-badge {
	border-color: var(--bg-dark);
}

/* Hero section */
.single-post-hero {
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.single-post-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.single-post-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(12px);
	transform: scale(1.05);
	opacity: 0.5;
}

.single-post-wrap.dark-mode .single-post-hero-bg img {
	opacity: 0.3;
}

.single-post-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--bg-light), transparent);
	z-index: 1;
}

.single-post-wrap.dark-mode .single-post-hero-overlay {
	background: linear-gradient(to top, var(--bg-dark), transparent);
}

.single-post-hero-overlay-2 {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 2;
}

.single-post-wrap.dark-mode .single-post-hero-overlay-2 {
	background: rgba(0, 0, 0, 0.5);
}

.single-post-hero-content {
	max-width: 896px;
	margin: 0 auto;
	text-align: center;
	padding: 2.5rem 1rem 0;
	position: relative;
	z-index: 10;
}

.single-post-category-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	border-radius: var(--radius-full);
	background: rgba(110, 230, 25, 0.2);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(110, 230, 25, 0.3);
	color: var(--primary-dark);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.single-post-wrap.dark-mode .single-post-category-badge {
	color: var(--primary-light);
}

.single-post-hero-title {
	font-size: 2.25rem;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
	margin: 0 0 2rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
	.single-post-hero-title {
		font-size: 3rem;
	}
}

.single-post-wrap.dark-mode .single-post-hero-title {
	color: #fff;
}

.single-post-hero-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	color: #374151;
}

.single-post-wrap.dark-mode .single-post-hero-meta {
	color: #e5e7eb;
}

.single-post-hero-author {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.single-post-hero-author-avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-full);
	background: #e5e7eb;
	overflow: hidden;
}

.single-post-wrap.dark-mode .single-post-hero-author-avatar {
	background: #374151;
}

.single-post-hero-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-post-hero-author-name {
	font-size: 0.875rem;
	font-weight: 700;
}

.single-post-hero-author-role {
	font-size: 0.75rem;
	opacity: 0.7;
}

.single-post-meta-divider {
	width: 1px;
	height: 2rem;
	background: #d1d5db;
	display: none;
}

.single-post-wrap.dark-mode .single-post-meta-divider {
	background: #4b5563;
}

@media (min-width: 640px) {
	.single-post-meta-divider {
		display: block;
	}
}

.single-post-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.single-post-meta-item .material-icons-round {
	color: var(--primary);
}

/* Main content area */
.single-post-main-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
	margin-top: -5rem;
	padding-bottom: 5rem;
	position: relative;
	z-index: 20;
}

@media (min-width: 1024px) {
	.single-post-main-wrap {
		padding: 0 2rem;
	}
}

.single-post-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.single-post-sidebar-left,
.single-post-article-col {
	min-width: 0;
}

@media (min-width: 768px) {
	.single-post-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
		grid-template-areas: 'sidebar-left main';
	}

	.single-post-sidebar-left {
		grid-area: sidebar-left;
	}

	.single-post-article-col {
		grid-area: main;
	}
}

.single-post-sidebar-sticky {
	position: sticky;
	top: 6rem;
	min-width: 0;
	max-width: 100%;
}

@media (max-width: 1023px) {
	.single-post-sidebar-sticky {
		position: static;
	}
}

.single-post-sidebar-box {
	background: #fff;
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
	margin-bottom: 1.5rem;
}

.single-post-wrap.dark-mode .single-post-sidebar-box {
	background: #1f2937;
	border-color: #374151;
}

.single-post-sidebar-title {
	font-weight: 700;
	color: #111827;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.125rem;
}

.single-post-wrap.dark-mode .single-post-sidebar-title {
	color: #fff;
}

.single-post-sidebar-title::before {
	content: '';
	width: 6px;
	height: 1.5rem;
	background: var(--primary);
	border-radius: var(--radius-full);
}

.single-post-toc {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.single-post-toc::before {
	content: '';
	position: absolute;
	right: 7px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: #f3f4f6;
}

.single-post-wrap.dark-mode .single-post-toc::before {
	background: #374151;
}

.single-post-toc li {
	margin: 0;
}

.single-post-toc a {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.5rem 1rem 0.5rem 0;
	position: relative;
	font-size: 0.875rem;
	color: #4b5563;
	text-decoration: none;
	transition: color 0.2s;
}

.single-post-wrap.dark-mode .single-post-toc a {
	color: #9ca3af;
}

.single-post-toc a:hover {
	color: var(--primary);
}

.single-post-toc a::before {
	content: '';
	position: absolute;
	right: 0;
	top: 14px;
	width: 14px;
	height: 14px;
	border-radius: var(--radius-full);
	border: 2px solid var(--primary);
	background: #fff;
	z-index: 1;
	transition: background 0.2s;
}

.single-post-wrap.dark-mode .single-post-toc a::before {
	background: #1f2937;
}

.single-post-toc a:hover::before {
	background: var(--primary);
}

.single-post-toc .toc-sub::before {
	width: 10px;
	height: 10px;
	right: 2.5px;
	background: #d1d5db;
	border: none;
}

.single-post-wrap.dark-mode .single-post-toc .toc-sub::before {
	background: #4b5563;
}

.single-post-share-buttons {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1rem;
}

.single-post-share-btn {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-full);
	background: #f3f4f6;
	color: #4b5563;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.single-post-wrap.dark-mode .single-post-share-btn {
	background: #374151;
	color: #d1d5db;
}

.single-post-share-btn:hover {
	background: var(--primary);
	color: #fff;
}

.single-post-share-btn svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}

.single-post-footer-social {
	display: flex;
	gap: 1rem;
	padding-top: 0.5rem;
}

/* Article column */
.single-post-article-col {
	min-width: 0;
}

.single-post-article-card {
	background: #fff;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
	.single-post-article-card {
		padding: 2.5rem;
	}
}

.single-post-wrap.dark-mode .single-post-article-card {
	background: #1f2937;
	border-color: #374151;
}

.single-post-featured-img {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	margin-bottom: 2rem;
	height: 16rem;
	position: relative;
}

@media (min-width: 1024px) {
	.single-post-featured-img {
		height: 20rem;
	}
}

.single-post-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

.single-post-featured-img:hover img {
	transform: scale(1.05);
}

.single-post-featured-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	opacity: 0.6;
}

/* Prose (entry content) */
.single-post-prose {
	max-width: none;
	font-size: 1.125rem;
}

.single-post-prose .lead {
	font-size: 1.25rem;
	color: #4b5563;
	font-weight: 500;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.single-post-wrap.dark-mode .single-post-prose .lead {
	color: #d1d5db;
}

.single-post-prose h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #111827;
}

.single-post-wrap.dark-mode .single-post-prose h2 {
	color: #f3f4f6;
}

.single-post-prose p {
	margin-bottom: 1.25rem;
	line-height: 1.8;
	color: #4b5563;
}

.single-post-wrap.dark-mode .single-post-prose p {
	color: #9ca3af;
}

.single-post-prose ul {
	list-style-type: disc;
	padding-right: 1.5rem;
	margin-bottom: 1.25rem;
}

.single-post-prose li {
	margin-bottom: 0.5rem;
	color: #4b5563;
}

.single-post-wrap.dark-mode .single-post-prose li {
	color: #9ca3af;
}

.single-post-prose strong {
	color: #111827;
	font-weight: 700;
}

.single-post-wrap.dark-mode .single-post-prose strong {
	color: #f3f4f6;
}

.single-post-prose img {
	width: 100%;
	border-radius: var(--radius-2xl);
	margin: 1.5rem 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.single-post-tip-box {
	margin: 2rem 0;
	padding: 1.5rem;
	background: rgba(110, 230, 25, 0.1);
	border-radius: var(--radius-2xl);
	border-right: 4px solid var(--primary);
}

.single-post-tip-box h4 {
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.single-post-wrap.dark-mode .single-post-tip-box h4 {
	color: #fff;
}

.single-post-tip-box p {
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #374151;
}

.single-post-wrap.dark-mode .single-post-tip-box p {
	color: #d1d5db;
}

/* Tags & author bio */
.single-post-entry-footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #f3f4f6;
}

.single-post-wrap.dark-mode .single-post-entry-footer {
	border-color: #374151;
}

.single-post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.single-post-tags-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: #6b7280;
	margin-left: 0.5rem;
	padding: 0.25rem 0;
}

.single-post-wrap.dark-mode .single-post-tags-label {
	color: #9ca3af;
}

.single-post-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: #f3f4f6;
	color: #4b5563;
	border-radius: var(--radius-lg);
	font-size: 0.75rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.single-post-wrap.dark-mode .single-post-tag {
	background: #374151;
	color: #d1d5db;
}

.single-post-tag:hover {
	background: var(--primary);
	color: #fff;
}

.single-post-author-bio {
	background: var(--bg-light);
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.single-post-author-bio {
		flex-direction: row;
		align-items: flex-start;
	}
}

.single-post-wrap.dark-mode .single-post-author-bio {
	background: var(--bg-dark);
}

.single-post-author-bio-avatar {
	width: 5rem;
	height: 5rem;
	border-radius: var(--radius-full);
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid var(--primary);
}

.single-post-author-bio-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-post-author-bio-text {
	text-align: center;
}

@media (min-width: 640px) {
	.single-post-author-bio-text {
		text-align: right;
	}
}

.single-post-author-bio-name {
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.25rem;
}

.single-post-wrap.dark-mode .single-post-author-bio-name {
	color: #fff;
}

.single-post-author-bio-role {
	color: var(--primary);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.single-post-author-bio-desc {
	font-size: 0.875rem;
	color: #4b5563;
	line-height: 1.6;
}

.single-post-wrap.dark-mode .single-post-author-bio-desc {
	color: #9ca3af;
}

/* Comments */
.single-post-comments-section {
	margin-top: 3rem;
	padding-top: 2.5rem;
	border-top: 1px solid #e5e7eb;
}

.single-post-wrap.dark-mode .single-post-comments-section {
	border-top-color: #374151;
}

.single-post-comments-title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 1.75rem;
}

.single-post-comments-title::before {
	content: '';
	display: block;
	width: 4px;
	height: 1.25rem;
	border-radius: var(--radius-full);
	background: var(--primary);
	flex-shrink: 0;
}

.single-post-wrap.dark-mode .single-post-comments-title {
	color: #fff;
}

.single-post-comments-empty {
	text-align: center;
	padding: 2rem 1.5rem;
	margin: 0 0 1.5rem;
	background: #f9fafb;
	border: 1px dashed #d1d5db;
	border-radius: var(--radius-2xl);
	color: #6b7280;
	font-size: 0.875rem;
}

.single-post-wrap.dark-mode .single-post-comments-empty {
	background: rgba(17, 24, 39, 0.6);
	border-color: #374151;
	color: #9ca3af;
}

.single-post-comment-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.single-post-comment {
	display: flex;
	gap: 0.875rem;
	margin-bottom: 0;
}

.single-post-comment .children {
	margin: 1rem 0 0;
	padding-right: 1rem;
	border-right: 2px solid rgba(110, 230, 25, 0.25);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.single-post-wrap.dark-mode .single-post-comment .children {
	border-right-color: rgba(110, 230, 25, 0.15);
}

.single-post-comment-avatar {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-full);
	background: #e5e7eb;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.single-post-wrap.dark-mode .single-post-comment-avatar {
	background: #374151;
	border-color: #1f2937;
}

.single-post-comment-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-post-comment-body {
	flex: 1;
	min-width: 0;
	background: #fff;
	padding: 1rem 1.125rem;
	border-radius: var(--radius-2xl);
	border: 1px solid #f3f4f6;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	position: relative;
}

.single-post-comment-body::before {
	content: '';
	position: absolute;
	top: 1rem;
	right: -6px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-right: 1px solid #f3f4f6;
	border-bottom: 1px solid #f3f4f6;
	transform: rotate(-45deg);
}

.single-post-wrap.dark-mode .single-post-comment-body {
	background: #111827;
	border-color: #374151;
	box-shadow: none;
}

.single-post-wrap.dark-mode .single-post-comment-body::before {
	background: #111827;
	border-color: #374151;
}

.single-post-comment-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.375rem 0.75rem;
	margin-bottom: 0.625rem;
}

.single-post-comment-author {
	font-weight: 700;
	font-size: 0.875rem;
	color: #111827;
}

.single-post-wrap.dark-mode .single-post-comment-author {
	color: #fff;
}

.single-post-comment-date {
	font-size: 0.75rem;
	color: #9ca3af;
}

.single-post-comment-text {
	font-size: 0.875rem;
	line-height: 1.7;
	color: #4b5563;
}

.single-post-comment-text p {
	margin: 0 0 0.5rem;
}

.single-post-comment-text p:last-child {
	margin-bottom: 0;
}

.single-post-wrap.dark-mode .single-post-comment-text {
	color: #d1d5db;
}

.single-post-comment-reply {
	margin-top: 0.75rem;
}

.single-post-comment-reply a {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--primary-dark);
	text-decoration: none;
	padding: 0.25rem 0.625rem;
	border-radius: var(--radius-lg);
	background: rgba(110, 230, 25, 0.1);
	transition: background 0.2s, color 0.2s;
}

.single-post-comment-reply a:hover {
	background: rgba(110, 230, 25, 0.2);
	color: #3d9410;
}

.single-post-wrap.dark-mode .single-post-comment-reply a {
	color: var(--primary-light);
}

.comment-awaiting-moderation {
	margin: 0 0 0.625rem;
	padding: 0.375rem 0.625rem;
	font-size: 0.75rem;
	color: #92400e;
	background: #fef3c7;
	border-radius: var(--radius-lg);
}

.single-post-wrap.dark-mode .comment-awaiting-moderation {
	color: #fcd34d;
	background: rgba(146, 64, 14, 0.25);
}

/* Comment form */
.single-post-comment-respond {
	background: var(--bg-light);
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	margin-top: 0.5rem;
}

.single-post-wrap.dark-mode .single-post-comment-respond {
	background: rgba(17, 24, 39, 0.5);
	border-color: #374151;
}

.single-post-comment-respond .comment-reply-title {
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.single-post-wrap.dark-mode .single-post-comment-respond .comment-reply-title {
	color: #fff;
}

.single-post-comment-respond .comment-reply-title small {
	font-size: 0.8125rem;
	font-weight: 500;
}

.single-post-comment-respond .comment-reply-title small a {
	color: #6b7280;
	text-decoration: none;
}

.single-post-comment-respond .comment-reply-title small a:hover {
	color: #ef4444;
}

.single-post-comment-logged-in {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0 0 1rem;
	padding: 0.625rem 0.875rem;
	background: rgba(110, 230, 25, 0.08);
	border-radius: var(--radius-xl);
}

.single-post-comment-logged-in a {
	color: var(--primary-dark);
	font-weight: 600;
	text-decoration: none;
}

.single-post-wrap.dark-mode .single-post-comment-logged-in {
	color: #9ca3af;
	background: rgba(110, 230, 25, 0.06);
}

.single-post-comment-form .comment-form-comment {
	margin-bottom: 1rem;
}

.single-post-comment-form .comment-form-comment label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.375rem;
}

.single-post-wrap.dark-mode .single-post-comment-form .comment-form-comment label {
	color: #d1d5db;
}

.single-post-comment-form-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 1rem;
	margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
	.single-post-comment-form-fields {
		grid-template-columns: 1fr 1fr;
	}
}

.single-post-comment-field {
	margin: 0 0 1rem;
}

.single-post-comment-field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.375rem;
}

.single-post-wrap.dark-mode .single-post-comment-field label {
	color: #d1d5db;
}

.single-post-comment-field .required {
	color: #ef4444;
}

.single-post-comment-form textarea,
.single-post-comment-form input[type='text'],
.single-post-comment-form input[type='email'] {
	width: 100%;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-xl);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.single-post-comment-form textarea {
	min-height: 7rem;
	resize: vertical;
	margin-bottom: 0;
}

.single-post-comment-form textarea:focus,
.single-post-comment-form input[type='text']:focus,
.single-post-comment-form input[type='email']:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(110, 230, 25, 0.2);
}

.single-post-wrap.dark-mode .single-post-comment-form textarea,
.single-post-wrap.dark-mode .single-post-comment-form input[type='text'],
.single-post-wrap.dark-mode .single-post-comment-form input[type='email'] {
	background: #111827;
	border-color: #374151;
	color: #f3f4f6;
}

.single-post-comment-form .form-submit {
	margin: 0.5rem 0 0;
}

.single-post-comment-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 8rem;
	padding: 0.625rem 1.75rem;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	font-family: inherit;
	border: none;
	border-radius: var(--radius-xl);
	cursor: pointer;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	box-shadow: 0 4px 14px rgba(110, 230, 25, 0.35);
}

.single-post-comment-submit:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(110, 230, 25, 0.4);
}

.single-post-comment-submit:active {
	transform: translateY(0);
}

.single-post-comments-area .comment-navigation {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 1.5rem;
	font-size: 0.8125rem;
}

.single-post-comments-area .comment-navigation a {
	color: var(--primary-dark);
	font-weight: 600;
	text-decoration: none;
}

.single-post-comments-area .comment-navigation a:hover {
	text-decoration: underline;
}

.single-post-comments-area .no-comments {
	text-align: center;
	padding: 1rem;
	color: #6b7280;
	font-size: 0.875rem;
}

/* Right sidebar */
.single-post-sidebar-right {
	/* display/grid: see .single-post-grid rules above */
}

.single-post-product-card {
	margin-bottom: 1.5rem;
}

.single-post-product-img-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 0.75rem;
	border: 1px solid #f3f4f6;
}

.single-post-wrap.dark-mode .single-post-product-img-wrap {
	border-color: #374151;
}

.single-post-product-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.single-post-product-img-wrap:hover img {
	transform: scale(1.05);
}

.single-post-product-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	background: #ef4444;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 0.125rem 0.5rem;
	border-radius: 0.125rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.single-post-product-title {
	font-weight: 700;
	font-size: 0.875rem;
	color: #1f2937;
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.single-post-product-title a {
	color: inherit;
	text-decoration: none;
}

.single-post-product-title a:hover {
	color: var(--primary);
}

.single-post-wrap.dark-mode .single-post-product-title {
	color: #e5e7eb;
}

.single-post-product-price {
	color: var(--primary);
	font-weight: 700;
	font-size: 0.875rem;
}

.single-post-banner-card {
	border-radius: var(--radius-2xl);
	overflow: hidden;
	position: relative;
	cursor: pointer;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

.single-post-sidebar-banner {
	margin-top: 0;
}

.single-post-sidebar-left a,
.single-post-sidebar-right a {
	max-width: 100%;
}

.single-post-banner-card--placeholder img {
	object-fit: cover;
	min-height: 12rem;
}

.single-post-banner-card--placeholder .single-post-banner-card-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
}

.single-post-banner-card img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.5s;
}

.single-post-banner-card:hover img {
	transform: scale(1.1);
}

.single-post-banner-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	text-align: center;
}

.single-post-banner-card-title {
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.single-post-banner-card-subtitle {
	color: var(--primary-light);
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.single-post-banner-card-cta {
	display: inline-block;
	background: #fff;
	color: var(--primary);
	padding: 0.375rem 1rem;
	border-radius: var(--radius-lg);
	font-size: 0.75rem;
	font-weight: 700;
}

/* Sidebar mini lists (related / popular) */
.single-post-mini-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.single-post-mini-item {
	display: flex;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
}

.single-post-mini-item img {
	width: 4rem;
	height: 4rem;
	object-fit: cover;
	border-radius: var(--radius-xl);
	flex-shrink: 0;
	transition: transform 0.3s;
}

.single-post-mini-item:hover img {
	transform: scale(1.05);
}

.single-post-mini-item h4 {
	font-weight: 700;
	font-size: 0.875rem;
	color: #1f2937;
	line-height: 1.4;
	margin: 0 0 0.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s;
}

.single-post-wrap.dark-mode .single-post-mini-item h4 {
	color: #e5e7eb;
}

.single-post-mini-item:hover h4 {
	color: var(--primary);
}

.single-post-mini-meta {
	font-size: 0.75rem;
	color: #9ca3af;
}

.single-post-sidebar-title-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
	flex-shrink: 0;
}

.single-post-sidebar-title--spaced {
	margin-top: 1.25rem;
}

.single-post-sidebar-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.single-post-sidebar-chip {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	background: #f3f4f6;
	color: #4b5563;
	border-radius: var(--radius-lg);
	font-size: 0.75rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.single-post-wrap.dark-mode .single-post-sidebar-chip {
	background: #374151;
	color: #d1d5db;
}

.single-post-sidebar-chip:hover {
	background: var(--primary);
	color: #fff;
}

.single-post-sidebar-chip--tag {
	background: rgba(110, 230, 25, 0.1);
	color: var(--primary-dark, #4a9c14);
}

.single-post-wrap.dark-mode .single-post-sidebar-chip--tag {
	background: rgba(110, 230, 25, 0.15);
	color: var(--primary-light);
}

/* Sidebar live search */
.single-post-sidebar-search .petti-search-form {
	position: relative;
}

.single-post-sidebar-search .petti-search-input-wrap {
	position: relative;
}

.single-post-sidebar-search .petti-search-input-wrap input {
	width: 100%;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-xl);
	padding: 0.75rem 1rem 0.75rem 2.5rem;
	font-size: 0.875rem;
	transition: box-shadow 0.2s;
}

.single-post-wrap.dark-mode .single-post-sidebar-search .petti-search-input-wrap input {
	background: #111827;
	border-color: #374151;
	color: #e5e7eb;
}

.single-post-sidebar-search .petti-search-input-wrap input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(110, 230, 25, 0.5);
}

.single-post-sidebar-search .petti-search-input-wrap .petti-icon {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	width: 1.25rem;
	height: 1.25rem;
}

.single-post-sidebar-search .petti-search-dropdown {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	right: 0;
	z-index: 40;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-xl);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	max-height: 22rem;
	overflow-y: auto;
	padding: 0.5rem;
}

.single-post-wrap.dark-mode .single-post-sidebar-search .petti-search-dropdown {
	background: #1f2937;
	border-color: #374151;
}

.single-post-sidebar-search .petti-search-results-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.single-post-sidebar-search .petti-search-result-item {
	display: flex;
	gap: 0.75rem;
	padding: 0.5rem;
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
}

.single-post-sidebar-search .petti-search-result-item:hover,
.single-post-sidebar-search .petti-search-result-item:focus-visible {
	background: #f3f4f6;
}

.single-post-wrap.dark-mode .single-post-sidebar-search .petti-search-result-item:hover,
.single-post-wrap.dark-mode .single-post-sidebar-search .petti-search-result-item:focus-visible {
	background: #374151;
}

.single-post-sidebar-search .petti-search-result-item img {
	width: 3rem;
	height: 3rem;
	object-fit: cover;
	border-radius: var(--radius-lg);
	flex-shrink: 0;
}

.single-post-sidebar-search .petti-search-result-item h4 {
	font-weight: 700;
	font-size: 0.8125rem;
	color: #1f2937;
	line-height: 1.4;
	margin: 0 0 0.125rem;
}

.single-post-wrap.dark-mode .single-post-sidebar-search .petti-search-result-item h4 {
	color: #e5e7eb;
}

.single-post-sidebar-search .petti-search-result-item .date {
	font-size: 0.6875rem;
	color: #9ca3af;
}

.single-post-sidebar-search .petti-search-view-all {
	display: block;
	margin-top: 0.5rem;
	padding: 0.625rem 0.5rem;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	border-top: 1px solid #e5e7eb;
}

.single-post-wrap.dark-mode .single-post-sidebar-search .petti-search-view-all {
	border-top-color: #374151;
}

.single-post-sidebar-search .petti-search-loading,
.single-post-sidebar-search .petti-search-empty {
	margin: 0;
	padding: 0.75rem 0.5rem;
	font-size: 0.8125rem;
	color: #6b7280;
	text-align: center;
}

/* Sidebar newsletter */
.single-post-sidebar-newsletter {
	background: rgba(110, 230, 25, 0.05);
	border: 1px solid rgba(110, 230, 25, 0.2);
	border-radius: var(--radius-2xl);
	padding: 1.5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.single-post-wrap.dark-mode .single-post-sidebar-newsletter {
	background: rgba(110, 230, 25, 0.1);
}

.single-post-sidebar-newsletter::before {
	content: '';
	position: absolute;
	top: -2.5rem;
	right: -2.5rem;
	width: 8rem;
	height: 8rem;
	background: rgba(110, 230, 25, 0.2);
	border-radius: 9999px;
	filter: blur(24px);
}

.single-post-sidebar-newsletter-icon {
	width: 3rem;
	height: 3rem;
	background: #fff;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.75rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 1;
}

.single-post-wrap.dark-mode .single-post-sidebar-newsletter-icon {
	background: #374151;
}

.single-post-sidebar-newsletter h3 {
	font-weight: 700;
	font-size: 1rem;
	color: #111827;
	margin: 0 0 0.5rem;
	position: relative;
	z-index: 1;
}

.single-post-wrap.dark-mode .single-post-sidebar-newsletter h3 {
	color: #fff;
}

.single-post-sidebar-newsletter > p {
	font-size: 0.8125rem;
	color: #6b7280;
	margin: 0 0 1rem;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.single-post-wrap.dark-mode .single-post-sidebar-newsletter > p {
	color: #9ca3af;
}

.single-post-sidebar-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
	z-index: 1;
}

.single-post-sidebar-newsletter-form input[type="email"] {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-xl);
	font-size: 0.875rem;
	background: #fff;
}

.single-post-wrap.dark-mode .single-post-sidebar-newsletter-form input[type="email"] {
	background: #111827;
	border-color: #374151;
	color: #e5e7eb;
}

.single-post-sidebar-newsletter-btn {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	border: none;
	border-radius: var(--radius-xl);
	cursor: pointer;
	transition: background 0.2s;
}

.single-post-sidebar-newsletter-btn:hover {
	background: var(--primary-dark, #5bc014);
}

.single-post-sidebar-newsletter-note {
	font-size: 0.6875rem;
	color: #9ca3af;
	margin: 0.75rem 0 0;
	position: relative;
	z-index: 1;
}

/* Related posts section */
.single-post-related {
	padding: 3rem 0;
	background: #fff;
	border-top: 1px solid #f3f4f6;
}

.single-post-wrap.dark-mode .single-post-related {
	background: #1f2937;
	border-color: #1f2937;
}

.single-post-related-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 1024px) {
	.single-post-related-inner {
		padding: 0 2rem;
	}
}

.single-post-related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.single-post-related-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.single-post-related-title::before {
	content: '';
	width: 8px;
	height: 2rem;
	background: var(--primary);
	border-radius: var(--radius-full);
}

.single-post-wrap.dark-mode .single-post-related-title {
	color: #fff;
}

.single-post-related-link {
	color: var(--primary);
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.single-post-related-link:hover {
	color: var(--primary-dark);
}

.single-post-related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.single-post-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.single-post-related-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.single-post-related-card {
	background: var(--bg-light);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.single-post-wrap.dark-mode .single-post-related-card {
	background: var(--bg-dark);
}

.single-post-related-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.single-post-related-card:hover .single-post-related-card-img img {
	transform: scale(1.1);
}

.single-post-related-card-img {
	height: 10rem;
	overflow: hidden;
	position: relative;
}

.single-post-related-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.single-post-related-card-cat {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: rgba(255, 255, 255, 0.9);
	padding: 0.125rem 0.5rem;
	border-radius: 0.125rem;
	font-size: 10px;
	font-weight: 700;
	color: var(--primary);
	z-index: 1;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.single-post-wrap.dark-mode .single-post-related-card-cat {
	background: rgba(17, 33, 17, 0.9);
}

.single-post-related-card-body {
	padding: 1rem;
}

.single-post-related-card-title {
	font-weight: 700;
	color: #111827;
	font-size: 0.875rem;
	line-height: 1.3;
	margin-bottom: 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.single-post-related-card-title a {
	color: inherit;
	text-decoration: none;
}

.single-post-related-card-title a:hover {
	color: var(--primary);
}

.single-post-wrap.dark-mode .single-post-related-card-title {
	color: #fff;
}

.single-post-related-card-date {
	font-size: 0.75rem;
	color: #6b7280;
}

.single-post-wrap.dark-mode .single-post-related-card-date {
	color: #9ca3af;
}

/* Footer */
.single-post-footer {
	background: #fff;
	border-top: 1px solid #f3f4f6;
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.single-post-wrap.dark-mode .single-post-footer {
	background: #111827;
	border-color: #1f2937;
}

.single-post-footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 1024px) {
	.single-post-footer-inner {
		padding: 0 2rem;
	}
}

.single-post-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.single-post-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.single-post-footer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.single-post-footer-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.single-post-footer-logo-icon {
	width: 2rem;
	height: 2rem;
	background: var(--primary);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.single-post-footer-brand-text {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111827;
}

.single-post-wrap.dark-mode .single-post-footer-brand-text {
	color: #fff;
}

.single-post-footer-desc {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.single-post-wrap.dark-mode .single-post-footer-desc {
	color: #9ca3af;
}

.single-post-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.single-post-footer-links li {
	margin-bottom: 0.75rem;
}

.single-post-footer-links a {
	font-size: 0.875rem;
	color: #6b7280;
	text-decoration: none;
	transition: color 0.2s;
}

.single-post-wrap.dark-mode .single-post-footer-links a {
	color: #9ca3af;
}

.single-post-footer-links a:hover {
	color: var(--primary);
}

.single-post-footer-newsletter input {
	width: 100%;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-xl);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

.single-post-footer-newsletter input:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(110, 230, 25, 0.5);
}

.single-post-wrap.dark-mode .single-post-footer-newsletter input {
	background: #1f2937;
	border-color: #374151;
}

.single-post-footer-newsletter button {
	width: 100%;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: var(--radius-xl);
	cursor: pointer;
	transition: background 0.2s;
}

.single-post-footer-newsletter button:hover {
	background: var(--primary-dark);
}

.single-post-footer-bottom {
	border-top: 1px solid #f3f4f6;
	padding-top: 2rem;
	text-align: center;
}

.single-post-wrap.dark-mode .single-post-footer-bottom {
	border-color: #1f2937;
}

.single-post-footer-copy {
	font-size: 0.875rem;
	color: #9ca3af;
}

/* Hide scrollbar utility */
.hide-scroll::-webkit-scrollbar {
	display: none;
}

.hide-scroll {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* Utility classes for single-post template (no Tailwind dependency) */
.single-post-wrap .text-right { text-align: right; }
.single-post-wrap .text-center { text-align: center; }
.single-post-wrap .text-sm { font-size: 0.875rem; }
.single-post-wrap .font-medium { font-weight: 500; }
.single-post-wrap .font-bold { font-weight: 700; }
.single-post-wrap .text-gray-500 { color: #6b7280; }
.single-post-wrap .text-gray-600 { color: #4b5563; }
.single-post-wrap.dark-mode .text-gray-300 { color: #d1d5db; }
.single-post-wrap.dark-mode .text-gray-400 { color: #9ca3af; }
.single-post-wrap .mb-4 { margin-bottom: 1rem; }
.single-post-wrap .block { display: block; }
.single-post-wrap .mt-6 { margin-top: 1.5rem; }
.single-post-wrap .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.single-post-wrap .border { border-width: 1px; border-style: solid; }
.single-post-wrap .rounded-xl { border-radius: 0.75rem; }
.single-post-wrap .rotate-180 { transform: rotate(180deg); }
.single-post-wrap .space-y-6 > * + * { margin-top: 1.5rem; }
.single-post-wrap .border-primary\/20 { border-color: rgba(110, 230, 25, 0.2); }
.single-post-wrap .hover\:bg-primary\/5:hover { background-color: rgba(110, 230, 25, 0.05); }
.single-post-wrap .hover\:text-primary-dark:hover { color: var(--primary-dark); }
.single-post-wrap .transition-colors { transition: color 0.2s, background-color 0.2s; }
.single-post-wrap .text-primary { color: var(--primary); }
.single-post-wrap a.block.mt-6 {
	display: block;
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(110, 230, 25, 0.2);
	border-radius: 0.75rem;
	transition: background-color 0.2s, color 0.2s;
}
.single-post-wrap a.block.mt-6:hover {
	background-color: rgba(110, 230, 25, 0.05);
	color: var(--primary-dark);
}
.single-post-wrap .single-post-sidebar-sticky { display: flex; flex-direction: column; gap: 1.5rem; }
