.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

main {
	padding: 2rem 0;
}

/* Breadcrumb */
.breadcrumb-area {
	padding: 20px 0;
	background-color: #f5f5f5;
}

/* Blog Posts */
.blog-posts {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.post-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s forwards;
}

.post-card:nth-child(2) { animation-delay: 0.1s; }
.post-card:nth-child(3) { animation-delay: 0.2s; }
.post-card:nth-child(4) { animation-delay: 0.3s; }
.post-card:nth-child(5) { animation-delay: 0.4s; }
.post-card:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.post-image {
	height: 200px;
	overflow: hidden;
}

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

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

.post-content {
	padding: 1.5rem;
}

.post-category {
	display: inline-block;
	background: linear-gradient(135deg, #6e8efb, #a777e3);
	color: white;
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	margin-bottom: 1rem;
	text-decoration: none;
	font-weight: 500;
}

.post-category:hover {
	opacity: 0.9;
}

.post-title {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #2c3e50;
	line-height: 1.3;
}

.post-excerpt {
	color: #7f8c8d;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.post-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #95a5a6;
	font-size: 0.9rem;
	padding-top: 1rem;
	border-top: 1px solid #eee;
}

.post-author {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.post-author:hover {
	color: #6e8efb;
}

.author-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}

.post-content a {
	text-decoration: none;
	color: inherit;
}

.post-title a {
	color: #2c3e50;
}

.post-title a:hover {
	color: #6e8efb;
}

/* Load More Button */
.load-more-container {
	text-align: center;
	margin: 3rem 0;
}

.load-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #6e8efb, #a777e3);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(110, 142, 251, 0.4);
}

.load-more-btn:hover:not(:disabled) {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(110, 142, 251, 0.6);
}

.load-more-btn:active:not(:disabled) {
	transform: translateY(0);
}

.load-more-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.load-more-btn .spinner {
	display: none;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.load-more-btn.loading .spinner {
	display: block;
}

/* Loading animation for new posts */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.post-card.new {
	animation: fadeIn 0.6s forwards;
}

/* Blog Page Layout */
.single-blog-page {
	padding: 40px 0;
}

.section-padding {
	padding: 60px 0;
}

/* Blog Container */
.single-blog-container {
	display: flex;
	gap: 40px;
	margin: 40px 0;
}

.single-blog-content {
	flex: 2;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.single-blog-header {
	padding: 40px;
}

.single-blog-title {
	font-size: 36px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.single-blog-single-blog-meta {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: #7f8c8d;
	font-size: 14px;
}

.single-blog-author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}

.single-blog-meta-divider {
	margin: 0 10px;
}

.single-blog-featured-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.single-blog-body {
	padding: 40px;
}

.single-blog-text {
	margin-bottom: 25px;
	font-size: 18px;
	color: #34495e;
}

.single-blog-subtitle {
	font-size: 24px;
	margin: 30px 0 15px;
	color: #2c3e50;
}

single-blog-blockquote {
	border-left: 4px solid #3498db;
	padding-left: 20px;
	margin: 30px 0;
	font-style: italic;
	color: #7f8c8d;
}

.single-blog-single-blog-tags {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
}

.single-blog-tag {
	background: #ecf0f1;
	padding: 5px 15px;
	border-radius: 20px;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #7f8c8d;
}

.single-blog-social-share {
	display: flex;
	align-items: center;
	margin: 30px 0;
}

.single-blog-social-share p {
	margin-right: 15px;
	font-weight: 600;
}

.single-blog-social-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f4f4f4;
	margin-right: 10px;
	color: #7f8c8d;
	transition: all 0.3s;
}

.single-blog-social-icon:hover {
	background: #3498db;
	color: #fff;
}
		
/* Sidebar Styles */
.single-blog-sidebar {
	flex: 1;
}

.single-blog-sidebar-widget {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	padding: 25px;
	margin-bottom: 30px;
}

.widget-title {
	font-size: 20px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ecf0f1;
	color: #2c3e50;
}

.about-single-blog-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.single-blog-author-bio {
	margin-top: 15px;
}

.single-blog-recent-posts {
	single-blog-list-style: none;
	padding: 0;
}

.single-blog-recent-post {
	display: flex;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ecf0f1;
}

.single-blog-recent-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.single-blog-recent-post-img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	margin-right: 15px;
}

.single-blog-recent-post-title {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
	text-decoration: none;
	display: block;
	margin-bottom: 5px;
}

.single-blog-recent-post-title:hover {
	color: #3498db;
}

.single-blog-recent-post-date {
	font-size: 12px;
	color: #7f8c8d;
}

.single-blog-categories {
	single-blog-list-style: none;
	padding: 0;
}

.single-blog-category {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ecf0f1;
}

.single-blog-category:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.single-blog-category a {
	text-decoration: none;
	color: #2c3e50;
}

.single-blog-category a:hover {
	color: #3498db;
}

/* Advertising Widget */
.single-blog-sidebar_section {
	margin-bottom: 30px;
}

.single-blog-advertising {
	position: relative;
	height: 300px;
	border-radius: 8px;
	overflow: hidden;
}

.single-blog-advertising_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.single-blog-advertising_content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: white;
}

.single-blog-advertising_perc {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.single-blog-advertising_link a {
	color: white;
	text-decoration: none;
	font-size: 18px;
}

/* Code Block Styles */
.single-blog-code-block {
	position: relative;
	background: #1e1e1e;
	border-radius: 8px;
	overflow: hidden;
	margin: 20px 0;
}

.single-blog-code-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #2d2d30;
	padding: 12px 15px;
	border-bottom: 1px solid #3e3e42;
}

.single-blog-code-title {
	color: #cccccc;
	font-size: 0.9rem;
	font-weight: 500;
}

.copy-btn {
	background: #007acc;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s;
}

.copy-btn:hover {
	background: #005a9e;
}

.copy-btn.copied {
	background: #4caf50;
}

.single-blog-code-container {
	padding: 20px;
	overflow-x: auto;
}

pre {
	margin: 0;
	color: #d4d4d4;
	font-family: 'Consolas', 'Monaco', monospace;
	font-size: 14px;
	line-height: 1.5;
}

.token-keyword {
	color: #569cd6;
}

.token-function {
	color: #dcdcaa;
}

.token-string {
	color: #ce9178;
}

.token-single-blog-comment {
	color: #6a9955;
}

.token-operator {
	color: #d4d4d4;
}

.token-number {
	color: #b5cea8;
}

.token-class {
	color: #4ec9b0;
}

/* List Block Styles */
.single-blog-list-block {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 0;
}

.single-blog-list-title {
	font-size: 1.2rem;
	margin-bottom: 15px;
	color: #2c3e50;
	font-weight: 600;
}

.single-blog-list-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	margin-bottom: 10px;
	background: white;
	border-radius: 6px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: transsingle-blog-form 0.2s;
}

.single-blog-list-item:hover {
	transsingle-blog-form: translateX(5px);
}

.single-blog-list-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #3498db;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-size: 1rem;
}

.single-blog-list-content h3 {
	font-size: 1rem;
	margin-bottom: 5px;
	color: #2c3e50;
}

.single-blog-list-content p {
	font-size: 0.85rem;
	color: #7f8c8d;
}

/* Comments Section */
.single-blog-single-blog-comments-section {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	padding: 40px;
	margin-bottom: 40px;
}

.single-blog-single-blog-comments-title {
	font-size: 24px;
	margin-bottom: 30px;
	color: #2c3e50;
}

.single-blog-comment-box {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ecf0f1;
}

.single-blog-comment-box:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.single-blog-comment-box.children {
	margin-left: 60px;
	border-left: 2px solid #ecf0f1;
	padding-left: 20px;
}

.avater {
	text-align: center;
}

.single-blog-comment-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.single-blog-comment-single-blog-author {
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 5px;
}

.says {
	font-weight: normal;
	color: #7f8c8d;
}

.single-blog-comment-date {
	font-size: 14px;
	color: #7f8c8d;
	margin-bottom: 10px;
	display: block;
}

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

.single-blog-comment-reply {
	font-weight: 600;
	font-size: 14px;
	color: #3498db;
	cursor: pointer;
	text-decoration: none;
}

.single-blog-comment-reply:hover {
	text-decoration: underline;
}

.single-blog-comment-reply-button {
	background: none;
	border: none;
	color: #3498db;
	cursor: pointer;
	padding: 0;
}

/* Comment Form */
.single-blog-comment-single-blog-form {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
	padding: 40px;
	margin-bottom: 40px;
}

.single-blog-form-title {
	font-size: 24px;
	margin-bottom: 30px;
	color: #2c3e50;
}

.single-blog-form-group {
	margin-bottom: 20px;
}

.single-blog-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2c3e50;
}

.single-blog-form-input,
.single-blog-form-textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
	font-size: 16px;
}

.single-blog-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.single-blog-form-submit {
	background: #3498db;
	color: #fff;
	border: none;
	padding: 12px 25px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.single-blog-form-submit:hover {
	background: #2980b9;
}

.single-blog-comment-notes {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
}

.required {
	color: #e74c3c;
}

/* Gallery Styles */
#single-blog-galleryContent {
	padding: 0px;
	-moz-column-count: 4;
	-moz-column-gap: 0px;
	-webkit-column-count: 4;
	-webkit-column-gap: 0px;
	column-count: 4;
	column-gap: 0px;
}

#single-blog-galleryContent img {
	display: inline-block;
	margin-bottom: 0px;
	padding: 2px;
	width: 100%;
	height: 10rem;
}

.single-blog-gallery-item {
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
}

.single-blog-gallery-item-zoom {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0,0,0,0.75);
	display: none;
}

.item-zoom {
	position: absolute;
	top: 40%;
	text-align: center;
	width: 100%;
}

.single-blog-gallery-item-zoom .item-zoom i {
	font-size: 40px;
	color: #fff;
}

.single-blog-gallery-item:hover .single-blog-gallery-item-zoom {
	display: block;
}

/* Single-line Gallery */
.single-blog-gallery-strip {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 6px;
	scroll-behavior: smooth;
	margin: 20px 0;
}

.single-blog-gallery-item-inline {
	display: inline-block;
	width: 200px;
	height: 130px;
	margin-right: 10px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,.1);
	transition: transsingle-blog-form .3s;
}

.single-blog-gallery-item-inline:hover {
	transsingle-blog-form: scale(1.06);
}

.single-blog-gallery-item-inline img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.controls-inline {
	margin-top: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn {
	background: #3498db;
	color: #fff;
	border: none;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	transition: background .25s;
}

.btn:hover {
	background: #2980b9;
}

.btn.secondary {
	background: #666;
}

.slide-indicators {
	display: flex;
	gap: 6px;
	margin-left: 12px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
}

.dot.active {
	background: #3498db;
}

/* Popup Overlay */
.overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.55);
	z-index: 2000;
	animation: fadeIn 0.3s ease forwards;
}

.single-blog-popup {
	background: #fff;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 20px 50px rgba(0,0,0,.5);
	transsingle-blog-form: scale(.8);
	opacity: 0;
	animation: single-blog-popupIn 0.3s ease forwards;
	overflow: hidden;
	max-width: 90vw;
	max-height: 90vh;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes single-blog-popupIn {
	to { transsingle-blog-form: scale(1); opacity: 1; }
}

.single-blog-popup img {
	max-height: calc(90vh - 120px);
	max-width: calc(90vw - 120px);
	object-fit: contain;
}

.single-blog-popupnav {
	position: absolute;
	top: 50%;
	transsingle-blog-form: translateY(-50%);
	background: rgba(0,0,0,.45);
	color: #fff;
	border: 0;
	padding: 10px 12px;
	border-radius: 6px;
	cursor: pointer;
	z-index: 3;
}

.single-blog-popupnav.prev {
	left: 12px;
}

.single-blog-popupnav.next {
	right: 12px;
}

.close-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	background: transparent;
	border: 0;
	font-size: 22px;
	cursor: pointer;
	color: #333;
	z-index: 3;
}

.caption {
	padding: 10px 18px 18px;
	font-size: 14px;
	color: #444;
	text-align: center;
}

/* Video thumbnails */
.single-blog-video-thumbnail { 
	position: relative; 
	cursor: pointer; 
	margin: 20px 0; 
}
.single-blog-video-thumbnail img { 
	width: 100%; 
	height: auto; 
	display: block; 
	border-radius: 8px; 
}
.single-blog-video-thumbnail .play-icon { 
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transsingle-blog-form: translate(-50%, -50%); 
	font-size: 50px; 
	color: #fff; 
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Video Lightbox */
.single-blog-video-lightbox { 
	display: none; 
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	background: rgba(0,0,0,0.95); 
	justify-content: center; 
	align-items: center; 
	overflow: hidden; 
	z-index: 9999; 
}
.single-blog-video-lightbox.active { 
	display: flex; 
}
.single-blog-video-lightbox .lightbox-wrapper { 
	position: relative; 
	width: 90%; 
	max-width: 1000px; 
	height: 80%; 
	display: flex; 
	overflow: hidden; 
	border-radius: 8px; 
}
.single-blog-video-lightbox .lightbox-slide { 
	min-width: 100%; 
	height: 100%; 
	flex-shrink: 0; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	position: relative; 
}
.single-blog-video-lightbox iframe, .single-blog-video-lightbox single-blog-video { 
	max-width: 100%; 
	max-height: 100%; 
	border-radius: 8px; 
}
.single-blog-video-lightbox .close-btn { 
	position: absolute; 
	top: 15px; 
	right: 20px; 
	font-size: 30px; 
	color: #fff; 
	cursor: pointer; 
	z-index: 10000; 
}
.single-blog-video-lightbox .nav-btn { 
	position: absolute; 
	top: 50%; 
	transsingle-blog-form: translateY(-50%); 
	font-size: 40px; 
	color: #fff; 
	cursor: pointer; 
	z-index: 10000; 
	user-select: none; 
}
.single-blog-video-lightbox .nav-btn.disabled { 
	opacity: 0.3; 
	cursor: default; 
}
.single-blog-video-lightbox .prev-btn { 
	left: 10px; 
} 
.single-blog-video-lightbox .next-btn { 
	right: 10px; 
}
.single-blog-video-lightbox .slide-indicator { 
	position: absolute; 
	top: 15px; 
	left: 50%; 
	transsingle-blog-form: translateX(-50%); 
	color: #fff; 
	font-size: 16px; 
	z-index: 10000; 
	background: rgba(0,0,0,0.4); 
	padding: 4px 10px; 
	border-radius: 20px; 
}
.single-blog-video-lightbox .single-blog-video-title { 
	position: absolute; 
	bottom: 10px; 
	left: 50%; 
	transsingle-blog-form: translateX(-50%); 
	color: #fff; 
	font-size: 18px; 
	z-index: 10000; 
	text-align: center; 
	background: rgba(0,0,0,0.5); 
	padding: 6px 12px; 
	border-radius: 6px; 
}

/* Ad Overlay Modal */
.single-blog-adblock-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.single-blog-adblock-modal.show {
	display: flex;
	animation: fadeIn 0.3s ease;
}

.single-blog-adblock-modal-inner {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	max-width: 500px;
	width: 90%;
}

.single-blog-adblock-modal-inner h3 {
	margin-bottom: 15px;
	color: #e74c3c;
}

.single-blog-adblock-modal-inner p {
	margin-bottom: 20px;
	color: #666;
}

.single-blog-adblock-modal-inner button {
	background: #3498db;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

/* Monetization Popup */
#monetizationPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
}

.single-blog-fc-monetization-dialog-container {
	width: 100%;
	max-width: 400px;
	margin: 0 20px;
}

.single-blog-fc-monetization-dialog {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.single-blog-fc-dialog-content {
	padding: 30px;
}

.single-blog-fc-header-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: block;
}

.single-blog-fc-dialog-headline-text {
	font-size: 24px;
	text-align: center;
	margin-bottom: 15px;
	color: #2c3e50;
}

.single-blog-fc-dialog-body-text {
	text-align: center;
	color: #666;
	margin-bottom: 10px;
}

.single-blog-fc-single-blog-list-container {
	margin-top: 25px;
}

.single-blog-fc-single-blog-list-item-button {
	display: block;
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	border: none;
	border-radius: 8px;
	background: #3498db;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s;
}

.single-blog-fc-single-blog-list-item-button:hover {
	background: #2980b9;
}

.single-blog-fc-single-blog-list-item-button#single-blog-fcClosePopup {
	background: #95a5a6;
}

.single-blog-fc-single-blog-list-item-button#single-blog-fcClosePopup:hover {
	background: #7f8c8d;
}

/* Ad Slides Modal */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 99997;
	align-items: center;
	justify-content: center;
}

.modal-overlay.active {
	display: flex;
}

.single-blog-ad-modal {
	background: white;
	border-radius: 12px;
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	overflow: hidden;
	position: relative;
}

.ad-header {
	padding: 20px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ad-controls {
	display: flex;
	gap: 10px;
	align-items: center;
}

.control-btn {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #666;
}

.ad-slide {
	padding: 20px;
	display: none;
}

.ad-slide.active {
	display: block;
}

.ad-single-blog-video {
	width: 100%;
	max-height: 400px;
	border-radius: 8px;
}

.ad-image {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}

.ad-title {
	margin: 15px 0 10px;
	font-size: 20px;
}

.ad-text {
	color: #666;
	margin-bottom: 15px;
}

.ad-cta {
	background: #3498db;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.ad-footer {
	padding: 15px 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.countdown {
	font-weight: bold;
	color: #3498db;
}

.progress-bar-container {
	height: 5px;
	background: #eee;
	border-radius: 3px;
	overflow: hidden;
	flex-grow: 1;
	margin: 0 15px;
}

.progress-bar {
	height: 100%;
	background: #3498db;
	width: 0%;
	transition: width 0.3s;
}

.reward-badge {
	background: #2ecc71;
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 12px;
	display: none;
}

/* Utility Classes */
.float-left {
	float: left !important;
}

.float-right {
	float: right !important;
}

.alignnone {
	text-decoration: none;
	color: inherit;
}

.alignnone:hover {
	color: #3498db;
}

.no-single-blog-single-blog-comments {
	color: #666;
	font-style: italic;
	text-align: center;
	padding: 20px;
}

.hidden {
	display: none !important;
}

/* Row and Column Fixes */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col-lg-2, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-10, .col-lg-12,
.col-md-4, .col-sm-4 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
	#single-blog-galleryContent {
		-moz-column-count: 3;
		-moz-column-gap: 0px;
		-webkit-column-count: 3;
		-webkit-column-gap: 0px;
		column-count: 3;
		column-gap: 0px;
	}
}

@media (max-width: 992px) {
	.blog-posts {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 1.5rem;
	}
	
	.single-blog-container {
		flex-direction: column;
	}
	
	.single-blog-title {
		font-size: 30px;
	}
	
	#single-blog-galleryContent {
		-moz-column-count: 2;
		-moz-column-gap: 0px;
		-webkit-column-count: 2;
		-webkit-column-gap: 0px;
		column-count: 2;
		column-gap: 0px;
	}
	
	.col-lg-2 {
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	.col-lg-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	.col-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-lg-8 {
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	.col-lg-10 {
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	.col-lg-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.blog-posts {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.post-title {
		font-size: 1.2rem;
	}
	
	.load-more-btn {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}
	
	.single-blog-header,
	.single-blog-body {
		padding: 25px;
	}
	
	.single-blog-title {
		font-size: 26px;
	}
	
	.single-blog-featured-image {
		height: 300px;
	}
	
	.single-blog-single-blog-comments-section,
	.single-blog-comment-single-blog-form {
		padding: 25px;
	}
	
	.single-blog-comment-box.children {
		margin-left: 30px;
	}
	
	#single-blog-galleryContent {
		-moz-column-count: 1;
		-moz-column-gap: 0px;
		-webkit-column-count: 1;
		-webkit-column-gap: 0px;
		column-count: 1;
		column-gap: 0px;
	}
	
	.single-blog-gallery-item-inline {
		width: 150px;
		height: 100px;
	}
	
	.col-md-4 {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}

@media (max-width: 550px) {
	.single-blog-title {
		font-size: 22px;
	}
	
	.single-blog-single-blog-meta {
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.single-blog-meta-divider {
		display: none;
	}
	
	.single-blog-comment-box .row {
		flex-direction: column;
	}
	
	.single-blog-comment-box .col-lg-2,
	.single-blog-comment-box .col-lg-10 {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.single-blog-comment-box.children {
		margin-left: 20px;
	}
	
	.single-blog-popup {
		width: 95vw;
		height: auto;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
	
	.post-content {
		padding: 1.2rem;
	}
	
	.post-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
}