.single-tags/* ===== BLOG BANNER ===== */
.blog-banner {
	height: 300px;
	background-image: url('https://mdmsolutionsuae.com/wp-content/uploads/2026/03/mdm-blogs-banner.webp');
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.blog-banner {
	height: 300px;
	background-image: url('https://mdmsolutionsuae.com/wp-content/uploads/2026/03/mdm-blogs-banner.webp');
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-banner-title {
	color: #fff !important;
	font-size: 40px;
	text-align: center;
	padding: 0 20px;
}
aside.blog-sidebar {
    padding: 20px;
    /*box-shadow: 0px 10px 10px #00000054;*/
}

/* ===== BLOG LIST ===== */
.blog-wrapper,
.single-wrapper {
	padding: 50px 20px;
}

.blog-container,
.single-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 70% 30%;
	gap: 30px;
}

.blog-item {
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
	padding-bottom: 25px;
}

.blog-title a {
	color: #000;
	text-decoration: none;
}

.blog-excerpt {
	margin: 15px 0;
	line-height: 1.7;
}

.blog-readmore {
	font-weight: 600;
	text-decoration: none;
}
input.wpcf7-form-control.wpcf7-submit {
    margin-top: 20px;
}

/* ===== META ===== */
.single-meta {
	background: #f6f6f6;
	border-bottom: 1px solid #ddd;
}

.single-meta-inner {
	max-width: 1200px;
	margin: auto;
	padding: 15px 20px;
	display: flex;
	gap: 25px;
	font-size: 14px;
}

/* ===== TAGS ===== */
.single-tags {
	/*margin-top: 40px;*/
	padding-top: 20px;
	/*border-top: 1px solid #ddd;*/
}

.single-tags a {
	display: inline-block;
	margin: 5px 8px 0 0;
	padding: 6px 14px;
	background: #f1f1f1;
	border-radius: 20px;
	text-decoration: none;
	font-size: 13px;
}

.single-tags a:hover {
	background: #000;
	color: #fff;
}
.single-sidebar {
    box-shadow: 0px 10px 10px #00000069;
    padding: 20px;
}
.single-meta-container {
    margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
	.blog-container,
	.single-container {
		grid-template-columns: 1fr;
	}

	.blog-banner-title {
		font-size: 28px;
	}
}
/* GRID */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

/* CARD */
.blog-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: all .3s ease;
}

.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.blog-card-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 24px 24px 0 0;
}

/* CONTENT */
.blog-card-content {
	padding: 28px;
}

.blog-card-title a {
	font-size: 22px;
	font-weight: 700;
	color: #0b1f44;
	text-decoration: none;
}

.blog-card-excerpt {
	margin: 15px 0;
	color: #555;
	line-height: 1.6;
}

/* READ MORE */
.blog-readmore {
	color: #18c964;
	font-weight: 600;
	text-decoration: none;
}

.blog-readmore:hover {
	text-decoration: underline;
}

/* LAYOUT */
.blog-container {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 40px;
}

@media (max-width: 991px) {
	.blog-container {
		grid-template-columns: 1fr;
	}
}

