/* START Single Blog Post Styles */

.kol-blog-single-wrapper {
	padding: 30px 0;
}

.kol-blog-single-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.kol-blog-single-post {
	margin-bottom: 40px;
}

.kol-blog-single-header {
	margin-bottom: 20px;
}

.kol-blog-single-header h1 {
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.kol-blog-single-meta {
	display: flex;
	gap: 15px;
	font-size: 14px;
	margin-bottom: 20px;
}

.kol-blog-single-meta a,
.kol-blog-single-meta span {
	display: block;
}

html.light-mode .kol-blog-single-meta {
	color: #6b7280;
}

html.dark-mode .kol-blog-single-meta {
	color: #9ca3af;
}

.kol-blog-single-featured {
	margin: 30px 0;
	border-radius: 8px;
	overflow: hidden;
}

.kol-blog-single-featured img {
	width: 100%;
	height: auto;
	display: block;
}

.kol-blog-single-content {
	margin: 30px 0;
	line-height: 1.8;
	font-size: 16px;
}

html.light-mode .kol-blog-single-content {
	color: #1f2937;
}

html.dark-mode .kol-blog-single-content {
	color: #e0e0e0;
}

.kol-blog-single-actions {
	display: flex;
	gap: 10px;
	margin: 30px 0;
	padding: 20px 0;
	border-top: 1px solid;
	border-bottom: 1px solid;
}

html.light-mode .kol-blog-single-actions {
	border-color: #e5e7eb;
}

html.dark-mode .kol-blog-single-actions {
	border-color: #333;
}

.kol-blog-like-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid;
	border-radius: 6px;
	background: none;
	cursor: pointer;
	font-size: 14px;
	transition: none;
}

html.light-mode .kol-blog-like-btn {
	color: #6b7280;
	border-color: #d1d5db;
}

html.dark-mode .kol-blog-like-btn {
	color: #9ca3af;
	border-color: #4b5563;
}

.kol-blog-like-btn:hover {
	transform: none;
}

.kol-blog-like-btn.active i {
	color: #dc2626;
}

.kol-blog-like-btn i {
	width: 16px;
	height: 16px;
}

.kol-blog-comments-section {
	margin: 40px 0;
	padding: 30px 0;
	border-top: 1px solid;
	border-bottom: 1px solid;
}

html.light-mode .kol-blog-comments-section {
	border-color: #e5e7eb;
}

html.dark-mode .kol-blog-comments-section {
	border-color: #333;
}

.kol-blog-comments-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.kol-blog-comments-title {
	margin: 0 0 20px 0;
	font-size: 18px;
	font-weight: 600;
}

html.light-mode .kol-blog-comments-title {
	color: #1f2937;
}

html.dark-mode .kol-blog-comments-title {
	color: #e0e0e0;
}

.kol-blog-comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.kol-blog-comment-list li {
	display: flex;
	gap: 15px;
}

.kol-blog-comment-list .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	flex-shrink: 0;
}

.kol-blog-comment-list .comment-body {
	flex: 1;
	border-radius: 6px;
	padding: 15px;
}

html.light-mode .kol-blog-comment-list .comment-body {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
}

html.dark-mode .kol-blog-comment-list .comment-body {
	background: #1f2937;
	border: 1px solid #374151;
}

.kol-blog-comment-list .comment-meta {
	font-size: 13px;
	margin-bottom: 10px;
}

html.light-mode .kol-blog-comment-list .comment-meta {
	color: #6b7280;
}

html.dark-mode .kol-blog-comment-list .comment-meta {
	color: #9ca3af;
}

.kol-blog-comment-list .comment-text {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

html.light-mode .kol-blog-comment-list .comment-text {
	color: #374151;
}

html.dark-mode .kol-blog-comment-list .comment-text {
	color: #d1d5db;
}

.kol-blog-comment-form-wrapper {
	padding: 20px 0;
}

.kol-blog-comment-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.kol-blog-comment-form p {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.kol-blog-comment-form label {
	font-size: 14px;
	font-weight: 500;
}

html.light-mode .kol-blog-comment-form label {
	color: #374151;
}

html.dark-mode .kol-blog-comment-form label {
	color: #d1d5db;
}

.kol-blog-comment-form textarea,
.kol-blog-comment-form input[type="text"],
.kol-blog-comment-form input[type="email"],
.kol-blog-comment-form input[type="url"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	box-sizing: border-box;
}

html.light-mode .kol-blog-comment-form textarea,
html.light-mode .kol-blog-comment-form input[type="text"],
html.light-mode .kol-blog-comment-form input[type="email"],
html.light-mode .kol-blog-comment-form input[type="url"] {
	background: white;
	border-color: #d1d5db;
	color: #1f2937;
}

html.dark-mode .kol-blog-comment-form textarea,
html.dark-mode .kol-blog-comment-form input[type="text"],
html.dark-mode .kol-blog-comment-form input[type="email"],
html.dark-mode .kol-blog-comment-form input[type="url"] {
	background: #111827;
	border-color: #374151;
	color: #e0e0e0;
}

.kol-blog-comment-form textarea {
	min-height: 120px;
	resize: vertical;
}

.kol-blog-comment-form .form-submit {
	display: flex;
	justify-content: flex-start;
}

.kol-blog-comment-submit {
	background: linear-gradient(to bottom, #2d7c2d, #1f5f1f);
	border: 1px solid;
	border-top-color: #3d9d3d;
	border-left-color: #3d9d3d;
	border-right-color: #1a4d1a;
	border-bottom-color: #1a4d1a;
	color: white;
	padding: 0 15px;
	height: 32px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
	transition: none;
}

.kol-blog-comment-submit:hover {
	transform: none;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.kol-blog-comment-nav {
	margin: 20px 0;
	display: flex;
	gap: 10px;
}

.kol-blog-comment-nav a {
	padding: 8px 12px;
	border: 1px solid;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
}

html.light-mode .kol-blog-comment-nav a {
	border-color: #d1d5db;
	color: #374151;
}

html.dark-mode .kol-blog-comment-nav a {
	border-color: #374151;
	color: #d1d5db;
}

.kol-blog-pagination {
	display: flex;
	gap: 20px;
	margin: 40px 0;
	padding: 20px 0;
	border-top: 1px solid;
}

html.light-mode .kol-blog-pagination {
	border-color: #e5e7eb;
}

html.dark-mode .kol-blog-pagination {
	border-color: #333;
}

.kol-blog-prev-post,
.kol-blog-next-post {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border-radius: 6px;
	text-decoration: none;
	transition: none;
}

html.light-mode .kol-blog-prev-post,
html.light-mode .kol-blog-next-post {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	color: #1f2937;
}

html.dark-mode .kol-blog-prev-post,
html.dark-mode .kol-blog-next-post {
	background: #1f2937;
	border: 1px solid #374151;
	color: #e0e0e0;
}

.kol-blog-prev-post:hover,
.kol-blog-next-post:hover {
	transform: none;
}

.kol-blog-nav-label {
	font-size: 12px;
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.kol-blog-nav-title {
	font-size: 16px;
	font-weight: 600;
	margin-top: 5px;
}

/* END Single Blog Post Styles */

html.light-mode .kol-blog-like-btn,
html.light-mode .kol-blog-comment-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 32px;
	padding: 0 15px;
	border-width: 1px;
	border-style: solid;
	border-radius: 6px;
	background: linear-gradient(to bottom, #e2e2e2, #d4d4d4);
	border-top-color: #f0f0f0;
	border-left-color: #f0f0f0;
	border-right-color: #b0b0b0;
	border-bottom-color: #b0b0b0;
	color: #2d2d2d;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: none;
	box-sizing: border-box;
}

html.dark-mode .kol-blog-like-btn,
html.dark-mode .kol-blog-comment-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 32px;
	padding: 0 15px;
	border-width: 1px;
	border-style: solid;
	border-radius: 6px;
	background: linear-gradient(to bottom, #383838, #343434);
	border-top-color: #555555;
	border-left-color: #555555;
	border-right-color: #282828;
	border-bottom-color: #282828;
	color: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: none;
	box-sizing: border-box;
}

html.light-mode .kol-blog-comment-submit,
html.dark-mode .kol-blog-comment-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 15px;
	border-width: 1px;
	border-style: solid;
	border-radius: 6px;
	background: linear-gradient(to bottom, #2d7c2d, #1f5f1f);
	border-top-color: #3d9d3d;
	border-left-color: #3d9d3d;
	border-right-color: #1a4d1a;
	border-bottom-color: #1a4d1a;
	color: white;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.28);
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: none;
	box-sizing: border-box;
}

html.light-mode .kol-blog-like-btn:hover,
html.dark-mode .kol-blog-like-btn:hover,
html.light-mode .kol-blog-comment-submit:hover,
html.dark-mode .kol-blog-comment-submit:hover,
html.light-mode .kol-blog-comment-nav a:hover,
html.dark-mode .kol-blog-comment-nav a:hover {
	transform: none;
	text-decoration: none;
}
