/* Blog Styles for Fleetfinity */

/* Blog Header Section */
.blog-header-section {
	position: relative;
	padding: 160px 0 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
}

.blog-header-section h1 {
	color: #ffffff;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.blog-header-section p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	font-family: 'Poppins', sans-serif;
}

/* Breadcrumb */
.blog-breadcrumb {
	padding: 120px 0 20px;
	background: #f8f9fa;
}

.breadcrumb-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
}

.breadcrumb-list li {
	color: #666;
}

.breadcrumb-list li a {
	color: #667eea;
	text-decoration: none;
}

.breadcrumb-list li a:hover {
	text-decoration: underline;
}

.breadcrumb-list li + li::before {
	content: "›";
	margin-right: 8px;
	color: #999;
}

/* Blog Listing Section */
.blog-listing-section {
	padding: 60px 0 80px;
}

/* Blog Post Card */
.blog-post-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post-content {
	padding: 30px;
}

.blog-post-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	font-size: 13px;
	color: #888;
	font-family: 'Poppins', sans-serif;
}

.blog-post-meta i {
	margin-right: 5px;
}

.blog-post-card h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.4;
	font-family: 'Poppins', sans-serif;
}

.blog-post-card h2 a {
	color: #39436f;
	text-decoration: none;
	transition: color 0.2s;
}

.blog-post-card h2 a:hover {
	color: #667eea;
}

.blog-post-card p {
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.blog-read-more {
	color: #667eea;
	font-weight: 500;
	text-decoration: none;
	font-size: 15px;
	font-family: 'Poppins', sans-serif;
	transition: color 0.2s;
}

.blog-read-more:hover {
	color: #764ba2;
}

.blog-read-more i {
	margin-left: 5px;
	transition: transform 0.2s;
}

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

/* Blog Article Section */
.blog-article-section {
	padding: 40px 0 80px;
}

.blog-article-content {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 40px;
}

.blog-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 25px;
	font-size: 13px;
	color: #888;
	font-family: 'Poppins', sans-serif;
}

.blog-article-meta i {
	margin-right: 5px;
}

.blog-article-content h1 {
	font-size: 32px;
	font-weight: 700;
	color: #39436f;
	margin-bottom: 20px;
	line-height: 1.3;
	font-family: 'Poppins', sans-serif;
}

.blog-intro {
	font-size: 17px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.blog-article-content p {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.blog-article-content h2 {
	font-size: 24px;
	font-weight: 600;
	color: #39436f;
	margin-top: 40px;
	margin-bottom: 15px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	font-family: 'Poppins', sans-serif;
}

.blog-article-content h2:first-of-type {
	border-top: none;
	padding-top: 0;
}

.blog-article-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: #39436f;
	margin-top: 25px;
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
}

.blog-article-content ul,
.blog-article-content ol {
	margin-bottom: 20px;
	padding-left: 25px;
}

.blog-article-content li {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 5px;
	font-family: 'Poppins', sans-serif;
}

.blog-article-content a {
	color: #667eea;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}

.blog-article-content a:hover {
	border-bottom-color: #667eea;
}

/* Table of Contents */
.blog-toc {
	background: #f8f9fb;
	border-radius: 8px;
	padding: 25px 30px;
	margin: 30px 0;
	border-left: 4px solid #667eea;
}

.blog-toc h3 {
	font-size: 16px;
	font-weight: 600;
	color: #39436f;
	margin-top: 0;
	margin-bottom: 12px;
}

.blog-toc ol {
	margin-bottom: 0;
	padding-left: 20px;
}

.blog-toc li {
	font-size: 14px;
	margin-bottom: 6px;
}

.blog-toc a {
	color: #667eea;
}

/* Blog CTA Box */
.blog-cta-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
	text-align: center;
}

.blog-cta-box h4 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
}

.blog-cta-box p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	margin-bottom: 20px;
}

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

/* Sidebar */
.blog-sidebar {
	position: sticky;
	top: 100px;
}

.sidebar-widget {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 25px;
	margin-bottom: 25px;
}

.sidebar-widget h4 {
	font-size: 18px;
	font-weight: 600;
	color: #39436f;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.sidebar-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-links li {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f0f0f0;
}

.sidebar-links li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.sidebar-links a {
	color: #555;
	font-size: 14px;
	text-decoration: none;
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	transition: color 0.2s;
}

.sidebar-links a:hover {
	color: #667eea;
}

.sidebar-cta {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sidebar-cta h4 {
	color: #ffffff;
}

.sidebar-cta p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
	font-family: 'Poppins', sans-serif;
}

.sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sidebar-tags a {
	display: inline-block;
	padding: 5px 14px;
	background: #f0f2f8;
	border-radius: 20px;
	font-size: 13px;
	color: #555;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
	transition: background 0.2s, color 0.2s;
}

.sidebar-tags a:hover {
	background: #667eea;
	color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
	.blog-header-section {
		padding: 130px 0 40px;
	}

	.blog-header-section h1 {
		font-size: 32px;
	}

	.blog-article-content {
		padding: 25px;
	}

	.blog-article-content h1 {
		font-size: 26px;
	}

	.blog-sidebar {
		position: static;
		margin-top: 40px;
	}

	.blog-breadcrumb {
		padding: 100px 0 15px;
	}
}

@media (max-width: 576px) {
	.blog-header-section h1 {
		font-size: 26px;
	}

	.blog-header-section p {
		font-size: 15px;
	}

	.blog-article-content {
		padding: 20px;
	}

	.blog-article-content h1 {
		font-size: 22px;
	}

	.blog-article-content h2 {
		font-size: 20px;
	}

	.blog-article-meta {
		flex-direction: column;
		gap: 8px;
	}

	.blog-cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}
