/* Single Post Styles */

/* Style 1 - Classic */
.single-post-style-1 {
	padding: 60px 0;
}

.single-post-style-1 .post-featured-image {
	margin-bottom: 40px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-post-style-1 .post-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.single-post-style-1 .post-header {
	margin-bottom: 30px;
}

.single-post-style-1 .post-title {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #1f242e;
	line-height: 1.3;
}

.single-post-style-1 .post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

.single-post-style-1 .post-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.single-post-style-1 .post-meta a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.single-post-style-1 .post-meta a:hover {
	color: #ff5e2e;
}

.single-post-style-1 .post-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 40px;
}

.single-post-style-1 .post-content p {
	margin-bottom: 20px;
}

.single-post-style-1 .post-content ul,
.single-post-style-1 .post-content ol {
	margin: 20px 0;
	padding-left: 30px;
}

.single-post-style-1 .post-content li {
	margin-bottom: 10px;
}

.single-post-style-1 .post-tags {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.single-post-style-1 .post-tags a {
	display: inline-block;
	background: #f5f5f5;
	color: #1f242e;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.single-post-style-1 .post-tags a:hover {
	background: #ff5e2e;
	color: #fff;
}

/* Style 2 - Modern */
.single-post-style-2 .post-hero-image {
	position: relative;
	height: 500px;
	background-size: cover;
	background-position: center;
	margin-bottom: 60px;
	border-radius: 0;
	overflow: hidden;
}

.single-post-style-2 .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.single-post-style-2 .hero-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #fff;
}

.single-post-style-2 .hero-content .post-title {
	font-size: 44px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #fff;
	line-height: 1.2;
}

.single-post-style-2 .hero-content .post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.single-post-style-2 .hero-content .post-meta a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.single-post-style-2 .hero-content .post-meta a:hover {
	color: #ff5e2e;
}

.single-post-style-2 .post-header {
	margin-bottom: 30px;
}

.single-post-style-2 .post-header:not(.empty) .post-title {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 15px 0;
	color: #1f242e;
	line-height: 1.3;
}

.single-post-style-2 .post-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 40px;
}

.single-post-style-2 .post-content p {
	margin-bottom: 20px;
}

.single-post-style-2 .post-taxonomies {
	padding: 30px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin: 40px 0;
}

.single-post-style-2 .post-categories,
.single-post-style-2 .post-tags {
	margin-bottom: 15px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.single-post-style-2 .post-categories:last-child,
.single-post-style-2 .post-tags:last-child {
	margin-bottom: 0;
}

.single-post-style-2 .post-categories strong,
.single-post-style-2 .post-tags strong {
	margin-right: 10px;
}

/* Style 3 - Minimal */
.single-post-style-3 {
	padding: 80px 0;
}

.single-post-style-3 .post-header {
	text-align: center;
	margin-bottom: 50px;
}

.single-post-style-3 .post-title {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 20px 0;
	color: #1f242e;
	line-height: 1.2;
}

.single-post-style-3 .post-meta-minimal {
	display: flex;
	justify-content: center;
	gap: 20px;
	font-size: 14px;
	color: #999;
}

.single-post-style-3 .post-meta-minimal a {
	color: #1f242e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.single-post-style-3 .post-meta-minimal a:hover {
	color: #ff5e2e;
}

.single-post-style-3 .post-content-minimal {
	font-size: 18px;
	line-height: 2;
	color: #333;
	margin-bottom: 40px;
}

.single-post-style-3 .post-content-minimal p {
	margin-bottom: 30px;
}

.single-post-style-3 .post-taxonomies {
	padding: 30px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	margin: 50px 0;
	text-align: center;
}

.single-post-style-3 .post-categories,
.single-post-style-3 .post-tags {
	display: inline-flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.single-post-style-3 .post-categories a,
.single-post-style-3 .post-tags a {
	display: inline-block;
	color: #ff5e2e;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.single-post-style-3 .post-categories a:hover,
.single-post-style-3 .post-tags a:hover {
	color: #e74c1a;
	text-decoration: underline;
}

/* Post Navigation */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin: 60px 0;
	padding: 40px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.nav-previous,
.nav-next {
	text-align: left;
}

.nav-next {
	text-align: right;
}

.nav-subtitle {
	display: block;
	font-size: 12px;
	color: #999;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-title {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #1f242e;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-previous:hover .nav-title,
.nav-next:hover .nav-title {
	color: #ff5e2e;
}

/* Page Links */
.page-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 30px 0;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 4px;
	font-size: 14px;
}

.page-links span,
.page-links a {
	padding: 6px 12px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	text-decoration: none;
	color: #1f242e;
	transition: all 0.3s ease;
}

.page-links a:hover {
	background: #ff5e2e;
	color: #fff;
	border-color: #ff5e2e;
}

.page-links span.page-numbers.current {
	background: #ff5e2e;
	color: #fff;
	border-color: #ff5e2e;
}

/* Responsive */
@media (max-width: 768px) {
	.single-post-style-1,
	.single-post-style-2,
	.single-post-style-3 {
		padding: 40px 0;
	}

	.single-post-style-1 .post-title,
	.single-post-style-2 .post-header .post-title {
		font-size: 28px;
	}

	.single-post-style-2 .hero-content .post-title {
		font-size: 32px;
	}

	.single-post-style-3 .post-title {
		font-size: 32px;
	}

	.single-post-style-3 .post-content-minimal {
		font-size: 16px;
		line-height: 1.8;
	}

	.post-navigation {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.nav-next {
		text-align: left;
	}

	.single-post-style-2 .hero-image {
		height: 300px;
	}

	.single-post-style-2 .hero-content {
		padding: 30px;
	}
}

@media (max-width: 480px) {
	.single-post-style-1 .post-meta,
	.single-post-style-2 .hero-content .post-meta {
		flex-direction: column;
		gap: 8px;
	}

	.single-post-style-1 .post-content,
	.single-post-style-2 .post-content {
		font-size: 15px;
	}

	.single-post-style-3 .post-title {
		font-size: 24px;
	}
}
