
/* ================= HERO ROOT ================= */
.dr1057herofaq {
	position: relative;
	padding: 80px 20px;

	min-height: 60vh;   /* responsive height instead of fixed */
	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;
	isolation: isolate;
}

/* ================= BACKGROUND WRAPPER ================= */
.dr1057herofaq-bgwrap {
	position: absolute;
	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	z-index: 1;
}

/* ================= IMAGE (NO CROPPING) ================= */
.dr1057herofaq-bg {
	width: 100%;
	height: auto;          /* 🔥 key fix */
	max-width: 100%;

	object-fit: contain;

	/* prevents weird scaling */
	display: block;

	max-height: 100%;
}

/* ================= BACKGROUND BASE ================= */
.dr1057herofaq::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 20%, #0a1a3a, #05070f 70%);
	z-index: 0;
}

/* ================= OVERLAY ================= */
.dr1057herofaq-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;

	background:
		radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.65)),
		linear-gradient(90deg, rgba(5,10,25,0.6), rgba(5,10,25,0.3));
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
	.dr1057herofaq {
		min-height: 50vh;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.dr1057herofaq {
		min-height: 40vh;
		padding: 60px 10px;
	}
}