/* =========================
   SINGLE POST PAGE STYLES
========================= */

.single-post-main {
	padding: 40px 0;
	background: #f8f8f8;
	min-height: 60vh;
}

.single-post-container {
	max-width: 900px;
	margin: 0 auto;
}

.single-post-article {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
}

/* Featured Image */
.post-featured-image {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	background: #f5f5f5;
}

.post-featured-image .featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

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

.featured-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

/* Post Content Wrapper */
.post-content-wrapper {
	padding: 50px 60px;
}

/* Post Categories */
.post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.post-category {
	display: inline-block;
	padding: 6px 16px;
	background: #e11b22;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.post-category:hover {
	background: #c5001d;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(225, 27, 34, 0.3);
}

/* Entry Header */
.entry-header {
	margin-bottom: 30px;
}

.entry-title {
	font-size: 42px;
	font-weight: 700;
	color: #111111;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

.entry-title a {
	color: #111111;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-title a:hover {
	color: #e11b22;
}

/* Entry Meta */
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-items: center;
	color: #666666;
	font-size: 14px;
}

.entry-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.entry-meta .meta-item i {
	color: #e11b22;
	font-size: 14px;
}

.entry-meta .meta-item a {
	color: #666666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-meta .meta-item a:hover {
	color: #e11b22;
}

/* Entry Content */
.entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #333333;
	margin-bottom: 40px;
}

.entry-content p {
	margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
	color: #111111;
}

.entry-content h2 {
	font-size: 32px;
}

.entry-content h3 {
	font-size: 26px;
}

.entry-content h4 {
	font-size: 22px;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 20px;
	padding-left: 30px;
}

.entry-content ul li,
.entry-content ol li {
	margin-bottom: 10px;
}

.entry-content blockquote {
	border-left: 4px solid #e11b22;
	padding: 20px 30px;
	margin: 30px 0;
	background: #f8f8f8;
	font-style: italic;
	color: #555555;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 30px 0;
}

.entry-content a {
	color: #e11b22;
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-content a:hover {
	color: #c5001d;
	text-decoration: underline;
}

.entry-content .page-links {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e5e5e5;
}

/* Post Tags */
.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding-top: 30px;
	border-top: 1px solid #e5e5e5;
}

.post-tags .tags-label {
	font-weight: 600;
	color: #333333;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.post-tags .tags-label i {
	color: #e11b22;
}

.post-tag {
	display: inline-block;
	padding: 6px 14px;
	background: #f0f0f0;
	color: #666666;
	font-size: 13px;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.post-tag:hover {
	background: #e11b22;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Archive/List View Styles */
.post-thumbnail {
	margin-bottom: 25px;
	border-radius: 8px;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

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

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #e11b22;
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.read-more:hover {
	background: #c5001d;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(225, 27, 34, 0.3);
}

.read-more i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.read-more:hover i {
	transform: translateX(4px);
}

/* =========================
   COMMENTS SECTION STYLES
========================= */

.comments-area {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #e5e5e5;
}

.comments-header {
	margin-bottom: 40px;
}

.comments-title {
	font-size: 32px;
	font-weight: 700;
	color: #111111;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.comments-title i {
	color: #e11b22;
	font-size: 28px;
}

/* Comment List */
.comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.comment-list .comment-item {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e5e5e5;
}

.comment-list .comment-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.comment-body {
	display: flex;
	gap: 20px;
}

.comment-avatar {
	flex-shrink: 0;
}

.comment-avatar img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid #f0f0f0;
	display: block;
}

.comment-content {
	flex: 1;
}

.comment-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
}

.comment-author {
	font-weight: 600;
	font-size: 16px;
	color: #111111;
	font-style: normal;
}

.comment-author a {
	color: #111111;
	text-decoration: none;
	transition: color 0.3s ease;
}

.comment-author a:hover {
	color: #e11b22;
}

.comment-time {
	font-size: 13px;
	color: #999999;
	display: flex;
	align-items: center;
	gap: 6px;
}

.comment-time i {
	font-size: 12px;
}

.comment-text {
	font-size: 15px;
	line-height: 1.7;
	color: #333333;
	margin-bottom: 15px;
}

.comment-text p {
	margin-bottom: 10px;
}

.comment-awaiting-moderation {
	font-size: 13px;
	color: #e11b22;
	font-style: italic;
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.comment-reply {
	margin-top: 15px;
}

.reply-link a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: #f0f0f0;
	color: #666666;
	text-decoration: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.reply-link a:hover {
	background: #e11b22;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Comment Form */
.comment-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	margin-top: 40px;
}

.comment-form-header {
	margin-bottom: 25px;
}

.comment-form-title {
	font-size: 28px;
	font-weight: 700;
	color: #111111;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.comment-form-title i {
	color: #e11b22;
	font-size: 24px;
}

.comment-notes {
	font-size: 13px;
	color: #666666;
	margin-bottom: 25px;
	padding: 12px 16px;
	background: #f8f8f8;
	border-radius: 6px;
	border-left: 3px solid #e11b22;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment-notes i {
	color: #e11b22;
}

.comment-form-comment-wrapper,
.comment-form-author-wrapper,
.comment-form-email-wrapper,
.comment-form-url-wrapper {
	margin-bottom: 25px;
}

.comment-form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.comment-form-label i {
	color: #e11b22;
	font-size: 14px;
}

.comment-form-label .required {
	color: #e11b22;
	margin-left: 4px;
}

.comment-form-textarea,
.comment-form-input {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e5e5e5;
	border-radius: 8px;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	color: #333333;
	background: #ffffff;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.comment-form-textarea {
	min-height: 150px;
	resize: vertical;
	line-height: 1.6;
}

.comment-form-textarea:focus,
.comment-form-input:focus {
	outline: none;
	border-color: #e11b22;
	background: #fafafa;
	box-shadow: 0 0 0 3px rgba(225, 27, 34, 0.1);
}

.comment-form-textarea::placeholder,
.comment-form-input::placeholder {
	color: #999999;
}

/* Two Column Layout for Name and Email */
.comment-form > p {
	margin-bottom: 25px;
}

.comment-form p.comment-form-author,
.comment-form p.comment-form-email {
	display: inline-block;
	width: calc(50% - 10px);
	vertical-align: top;
	margin-right: 20px;
	margin-bottom: 25px;
}

.comment-form p.comment-form-email {
	margin-right: 0;
}

.comment-form p.comment-form-url {
	width: 100%;
	display: block;
	clear: both;
}

.comment-form-cookies-consent {
	margin-bottom: 25px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	cursor: pointer;
	accent-color: #e11b22;
}

.comment-form-cookies-consent label {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
	cursor: pointer;
}

.comment-form-submit-wrapper {
	margin-top: 30px;
}

.comment-form-submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: linear-gradient(135deg, #e11b22 0%, #c5001d 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(225, 27, 34, 0.3);
}

.comment-form-submit:hover {
	background: linear-gradient(135deg, #c5001d 0%, #a00018 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(225, 27, 34, 0.4);
}

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

.comment-form-submit i {
	font-size: 14px;
}

/* Comment Navigation */
.comment-navigation {
	margin: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.comment-navigation a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #f0f0f0;
	color: #333333;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.comment-navigation a:hover {
	background: #e11b22;
	color: #ffffff;
}

.no-comments {
	text-align: center;
	padding: 40px;
	color: #999999;
	font-size: 16px;
	font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
	.post-featured-image {
		height: 300px;
	}
	
	.post-content-wrapper {
		padding: 30px 25px;
	}
	
	.entry-title {
		font-size: 28px;
	}
	
	.entry-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.entry-content {
		font-size: 15px;
	}
	
	.entry-content h2 {
		font-size: 24px;
	}
	
	.entry-content h3 {
		font-size: 20px;
	}
	
	.comment-form {
		padding: 25px 20px;
	}
	
	.comment-form-fields {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.comment-body {
		flex-direction: column;
	}
	
	.comment-avatar {
		align-self: flex-start;
	}
}

@media (max-width: 480px) {
	.post-featured-image {
		height: 250px;
	}
	
	.post-content-wrapper {
		padding: 25px 20px;
	}
	
	.entry-title {
		font-size: 24px;
	}
	
	.comments-title {
		font-size: 24px;
	}
	
	.comment-form-title {
		font-size: 22px;
	}
}
