.blog-detail-hero-section {
	height: 200px;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.blog-detail-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.blog-detail-hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.blog-detail-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}
.blog-detail-hero-content p {
	text-align: center;
	font-size: 20px;
	color: white;
}
.blog-detail-hero-content button {
	background-color: red;
	color: white;
	padding: 8px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

/* Responsive  */
@media (max-width: 992px) {
	.blog-detail-hero-section {
		height: auto;
		background-size: cover;
	}

	.blog-detail-hero-content-title {
		font-size: 32px;
	}
	.blog-detail-hero-content {
		padding: 30px 21px;
	}

	.blog-detail-hero-content p {
		font-size: 18px;
		margin: 10px 0;
		text-align: center;
	}

	.blog-detail-hero-content button {
		font-size: 16px;
		padding: 10px 25px;
	}
}

@media (max-width: 576px) {
	.blog-detail-hero-content-title {
		font-size: 24px;
	}

	.blog-detail-hero-content p {
		font-size: 16px;
	}

	.blog-detail-hero-content button {
		width: 100%;
		max-width: 280px;
		padding: 10px;
	}
}

/* Responsive  */
/* -----------------------------------------------------------------  */

.blog-content-section-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 60px 15px;
}

.blog-content-section-left {
	flex: 2;
}

.blog-content-section-left a button {
	background-color: #ff0201;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	margin-bottom: 20px;
	transition: background-color 0.3s;
}
.blog-content-section-left a button:hover {
	background-color: #cc0000;
}

.main-blog-title {
	font-size: 36px;
	font-weight: 700;
	color: #04245c;
	margin-bottom: 20px;
}

.blogs-card-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
}

.blog-btn {
	display: inline-block;
	text-decoration: none;
	background-color: transparent;
	border: 1px solid #ff0201;
	color: #04245c;
	padding: 6px 12px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.blog-btn:hover {
	background-color: #ff0201;
	color: #fff;
}

.separator {
	color: #04245c;
	margin: 0 6px;
}

.blog-content-section-left img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	margin-bottom: 25px;
	border-radius: 12px;
}

.blog-content-section-left p {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

.blog-content-section-right {
	flex: 1;
	position: relative;
}

.sticky-sidebar {
	/* position: sticky; */
	top: 100px;
	margin-bottom: 40px;
	background-color: #f9f9f9;
	border-left: 4px solid #04245c;
	padding: 20px;
	border-radius: 10px;
}

.sticky-sidebar h2,
.sidebar-related-articles h2 {
	color: #04245c;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.sticky-sidebar ul,
.sidebar-related-articles ul {
	padding-left: 20px;
	list-style-type: square;
}

.sticky-sidebar ul li,
.sidebar-related-articles ul li {
	margin-bottom: 10px;
	color: #04245c;
	font-size: 15px;
	cursor: pointer;
	transition: color 0.3s;
}
.sticky-sidebar ul li:hover,
.sidebar-related-articles ul li:hover {
	color: #ff0201;
}

.sidebar-related-articles {
	background-color: #fff;
	border-left: 4px solid #04245c;
	padding: 20px;
	border-radius: 10px;
}

.blog-sidebar .widget {
	margin-bottom: 40px;
	padding: 20px;
	background-color: #fff;
	border-left: 4px solid #04245c;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.widget-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Services */
.service-list {
	list-style: none;
	padding-left: 0;
}
.service-list li {
	margin-bottom: 10px;
}
.service-list li a {
	text-decoration: none;
	color: #04245c;
	transition: 0.3s;
}
.service-list li a:hover {
	color: #ff0201;
}
.service-icon {
	margin-right: 8px;
	color: #ff0201;
}

/* Recent Blogs */
.sidebar-thumb {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 6px;
}
.rc-post-item .content {
	flex: 1;
}
.rc-post-item .date {
	font-size: 12px;
	color: #888;
	display: block;
	margin-bottom: 5px;
}
.rc-post-item .title {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 500;
}
.rc-post-item .title a {
	text-decoration: none;
	color: #04245c;
}
.rc-post-item .title a:hover {
	color: #ff0201;
}

/* Categories and Tags */
.category-list,
.tag-list {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.category-list li,
.tag-list li {
	width: 100%;
}
.category-list li a {
	color: #04245c;
	text-decoration: none;
	transition: 0.3s;
}
.category-list li a:hover {
	color: #ff0201;
}

.tag-list li a {
	padding: 5px 10px;
	background-color: #f1f1f1;
	color: #04245c;
	font-size: 13px;
	border-radius: 20px;
	text-decoration: none;
	transition: 0.3s;
}
.tag-list li a:hover {
	background-color: #ff0201;
	color: #fff;
}

@media (max-width: 768px) {
	.blog-content-section-container {
		flex-direction: column;
	}
}
