/* Blog Article Styles */

.blog-article {
	background: #f5f5f5;
	min-height: 100vh;
	padding: 60px 0;
}

.article-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-meta {
	margin-bottom: 20px;
}

.article-date {
	color: #6c757d;
	font-size: 0.9rem;
	margin-right: 15px;
}

.article-category {
	background: #424242;
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.article-title {
	color: #212529;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.article-tagline {
	color: #6c757d;
	font-size: 1.4rem;
	margin: 0;
}

.article-content {
	color: #333333;
	font-size: 1.15rem;
	line-height: 1.8;
}

.article-content h2 {
	color: #212529;
	font-size: 1.8rem;
	margin-top: 40px;
	margin-bottom: 20px;
	font-weight: 600;
}

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

.article-content strong {
	color: #212529;
}

.article-content em {
	color: #555555;
}

.section-divider {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 40px 0;
}

.cta-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin: 30px 0;
	flex-wrap: wrap;
}

.cta-buttons .btn {
	min-width: 180px;
}

.cta-buttons .btn i {
	margin-right: 8px;
}

.article-closing {
	text-align: center;
	font-size: 1.2rem;
	margin-top: 30px;
}

.article-quote {
	background: #e9ecef;
	border-left: 4px solid #007bff;
	padding: 25px 30px;
	margin: 30px 0;
	font-style: italic;
	font-size: 1.2rem;
	color: #333333;
	border-radius: 0 8px 8px 0;
}

.article-signoff {
	text-align: center;
	font-size: 1.3rem;
	margin-top: 30px;
	color: #212529;
}

.article-tags {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 40px;
	flex-wrap: wrap;
}

.article-tags .tag {
	background: #e9ecef;
	color: #6c757d;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
}

.article-footer {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-bio {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.author-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}

.author-info h4 {
	color: #212529;
	margin-bottom: 5px;
}

.author-info p {
	color: #6c757d;
	margin: 0;
	font-size: 0.95rem;
}

.share-buttons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.share-buttons span {
	color: #6c757d;
}

.share-link {
	color: #6c757d;
	font-size: 1.4rem;
	transition: color 0.3s ease;
}

.share-link:hover {
	color: #007bff;
	text-decoration: none;
}

/* Blog Index Styles */
.blog-index {
	background: #f5f5f5;
	min-height: 100vh;
	padding: 60px 0;
}

.blog-header {
	text-align: center;
	margin-bottom: 50px;
}

.blog-header h1 {
	color: #212529;
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.blog-header p {
	color: #6c757d;
	font-size: 1.1rem;
}

.blog-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 30px;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-body {
	padding: 25px;
}

.blog-card-meta {
	margin-bottom: 12px;
}

.blog-card-date {
	color: #6c757d;
	font-size: 0.85rem;
}

.blog-card-title {
	color: #212529;
	font-size: 1.3rem;
	margin-bottom: 12px;
	line-height: 1.4;
}

.blog-card-title a {
	color: inherit;
	text-decoration: none;
}

.blog-card-title a:hover {
	color: #007bff;
}

.blog-card-excerpt {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.6;
}

.blog-card-link {
	display: inline-block;
	margin-top: 15px;
	color: #007bff;
	text-decoration: none;
	font-weight: 500;
}

.blog-card-link:hover {
	color: #0056b3;
	text-decoration: none;
}

.blog-card-link i {
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.blog-card-link:hover i {
	transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
	.article-title {
		font-size: 2rem;
	}
	
	.article-tagline {
		font-size: 1.1rem;
	}
	
	.article-content {
		font-size: 1.05rem;
	}
	
	.author-bio {
		flex-direction: column;
		text-align: center;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-buttons .btn {
		width: 100%;
		max-width: 250px;
	}
}
