/* ==========================================================
   SINGLE POST HERO HEADER STYLES
   Recreates the Elementor banner: bg image + overlay + card
   ========================================================== */

.mb-post-hero {
	position: relative;
	width: 100%;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.mb-post-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.mb-post-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mb-post-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 15, 10, 0.55) 0%, rgba(20, 15, 10, 0.75) 100%);
}

.mb-post-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 60px 20px;
}

.mb-post-hero__card {
	background: #ffffff;
	border-radius: 6px;
	max-width: 760px;
	width: 100%;
	padding: 40px 45px;
	text-align: center;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.mb-post-hero__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #e07a2f; /* orange accent, matches screenshot */
	text-transform: uppercase;
	margin-bottom: 14px;
}

.mb-post-hero__meta a {
	color: #e07a2f;
	text-decoration: none;
}

.mb-post-hero__meta-dot {
	color: #ccc;
}

.mb-post-hero__title {
	font-size: 34px;
	line-height: 1.3;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 18px;
}

.mb-post-hero__breadcrumb {
	font-size: 14px;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
}

.mb-post-hero__breadcrumb a {
	color: #666;
	text-decoration: none;
}

.mb-post-hero__breadcrumb a:hover {
	color: #e07a2f;
}

.mb-post-hero__sep {
	color: #999;
	margin: 0 2px;
}

.mb-post-hero__current {
	color: #333;
	font-weight: 500;
}

/* ==========================================================
   POST CONTENT AREA
   ========================================================== */

.mb-post-content-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 20px;
}

.mb-post-content {
	font-size: 17px;
	line-height: 1.9;
	color: #333;
}

.mb-post-content p {
	margin-bottom: 22px;
	text-align: justify;
}

.mb-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 20px 0;
}

.mb-post-content h2,
.mb-post-content h3 {
	margin-top: 35px;
	margin-bottom: 15px;
	font-weight: 700;
}

.mb-post-content blockquote {
	border-left: 4px solid #e07a2f;
	background: #fdf6ee;
	padding: 15px 20px;
	margin: 25px 0;
	font-style: italic;
	color: #555;
}

.mb-post-tags {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	font-size: 15px;
}

.mb-post-tags a {
	color: #e07a2f;
	text-decoration: none;
	margin-left: 5px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 768px) {
	.mb-post-hero {
		min-height: 320px;
	}
	.mb-post-hero__card {
		padding: 28px 22px;
	}
	.mb-post-hero__title {
		font-size: 24px;
	}
	.mb-post-content {
		font-size: 16px;
	}
}
