/* Breadcrumb */
.breadcrumb {
	background-color: transparent;
	padding: 10px 0;
}

.breadcrumb-item a {
	color: var(--primary-color);
	text-decoration: none;
}

/* Article Header */
.article-header {
	margin-bottom: 30px;
}

.article-title {
	color: var(--text-color);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.4;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
	color: var(--light-text);
}

.meta-item {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
}

.meta-item i {
	margin-left: 5px;
	color: var(--primary-color);
}

/* Article Image */
.article-image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Article Summary */
.article-summary {
	background: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border-right: 4px solid var(--primary-color);
}

.summary-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

/* Table of Contents */
.toc {
	background: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.toc-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc-list li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.toc-list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.toc-list a {
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s;
	display: block;
}

.toc-list a:hover {
	color: var(--primary-color);
	transform: translateX(-5px);
}

.toc-list .h3 {
	padding-right: 15px;
	font-size: 0.9rem;
}

/* Article Content */
.article-content {
	background: white;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.article-content h2 {
	color: var(--primary-color);
	font-weight: 600;
	margin: 30px 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-light);
}

.article-content h3 {
	color: var(--text-color);
	font-weight: 600;
	margin: 25px 0 15px;
}

.article-content p {
	margin-bottom: 20px;
}

.article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.article-content blockquote {
	border-right: 4px solid var(--primary-color);
	background-color: rgba(46, 125, 50, 0.05);
	padding: 20px;
	margin: 25px 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
}

/* Share Section */
.share-section {
	background: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	text-align: center;
}

.share-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.share-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.share-btn:hover {
	transform: translateY(-3px);
	color: white;
}

.share-instagram {
	background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.share-telegram {
	background-color: #0088cc;
}

.share-whatsapp {
	background-color: #25D366;
}

.share-twitter {
	background-color: #1DA1F2;
}

.share-facebook {
	background-color: #3b5998;
}

.share-linkedin {
	background-color: #0077b5;
}

/* Tags Section */
.tags-section {
	background: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tags-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	color: white;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
	box-shadow: 0 3px 10px rgba(46, 125, 50, 0.3);
}

.tag:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(46, 125, 50, 0.4);
	color: white;
}

/* Comments Section */
.comments-section {
	background: white;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.comments-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 25px;
}

.comment {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.comment:last-child {
	border-bottom: none;
}

.comment-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.comment-author {
	font-weight: 600;
	color: var(--primary-color);
}

.comment-date {
	color: var(--light-text);
	font-size: 0.85rem;
}

.comment-form {
	margin-top: 30px;
}

.form-control:focus {
	border-color: var(--primary-light);
	box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* Related Articles */
.related-articles {
	margin-bottom: 40px;
}

.related-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 25px;
	text-align: center;
}

.related-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
	margin-bottom: 25px;
}

.related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.related-image {
	height: 180px;
	background-color: #f5f5f5;
	background-size: cover;
	background-position: center;
}

.related-content {
	padding: 20px;
}

.related-card-title {
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.4;
}

.related-card-title a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s;
}

.related-card-title a:hover {
	color: var(--primary-color);
}

.related-date {
	color: var(--light-text);
	font-size: 0.85rem;
}

/* Sidebar */
.sidebar {
	position: sticky;
	top: 100px;
}

.sidebar-widget {
	background: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-light);
}

.banner {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: all 0.3s;
}

.banner:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.banner img {
	width: 100%;
	height: auto;
	display: block;
}

/* In-Article Ad */
.in-article-ad {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 10px;
	padding: 25px;
	margin: 40px 0;
	text-align: center;
	color: white;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ad-title {
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.ad-description {
	margin-bottom: 20px;
	opacity: 0.9;
}

.ad-button {
	background: white;
	color: var(--primary-color);
	border: none;
	padding: 10px 25px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s;
}

.ad-button:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
	.sidebar {
		position: static;
		margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.article-meta {
		gap: 15px;
	}
	
	.article-content {
		padding: 20px;
	}
	
	.share-buttons {
		gap: 8px;
	}
	
	.share-btn {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 576px) {
	.article-title {
		font-size: 1.5rem;
	}
	
	.tags-list {
		gap: 8px;
	}
	
	.tag {
		padding: 6px 12px;
		font-size: 0.8rem;
	}
}


.idebar-recent {
	background: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	margin-bottom: 30px;
}

.sidebar-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-light);
}

.recent-posts {
	list-style: none;
	padding: 0;
}

.recent-post {
	display: flex;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.recent-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.recent-post-img {
	width: 70px;
	height: 70px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	margin-left: 15px;
	flex-shrink: 0;
}

.recent-post-content {
	flex: 1;
}

.recent-post-title {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.recent-post-title a {
	color: var(--text-color);
	text-decoration: none;
}

.recent-post-title a:hover {
	color: var(--primary-color);
}

.recent-post-date {
	font-size: 0.8rem;
	color: var(--light-text);
}