.doctor-detail-hero {
	overflow: hidden;
	background: #eef7ff var(--doctor-hero-bg) center / cover no-repeat;
}

.doctor-detail-hero__inner {
	display: grid;
	grid-template-columns: minmax(380px, 1fr) minmax(420px, 1.05fr);
	align-items: center;
	min-height: 560px;
	gap: 38px;
}

.doctor-detail-hero__media {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	min-height: 560px;
}

.doctor-detail-hero__media img {
	width: min(440px, 96%);
	max-height: 550px;
	object-fit: contain;
	object-position: center bottom;
}

.doctor-detail-hero__content {
	padding: 54px 0 50px;
}

.doctor-detail-hero__eyebrow {
	position: relative;
	display: inline-block;
	margin: 0 0 20px;
	padding-bottom: 8px;
	color: var(--doctor-detail-blue);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.doctor-detail-hero__eyebrow::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 76px;
	height: 2px;
	background:
		linear-gradient(var(--doctor-detail-blue), var(--doctor-detail-blue)) left center / 34px 2px no-repeat,
		linear-gradient(#c9ddf3, #c9ddf3) left center / 76px 1px no-repeat;
	content: "";
}

.doctor-detail-hero h1 {
	margin: 0 0 12px;
	color: var(--doctor-detail-blue);
	font-size: 48px;
	font-weight: 900;
	line-height: 1.12;
	text-transform: uppercase;
}

.doctor-detail-hero__role {
	margin: 0 0 22px;
	color: #152a4a;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.doctor-detail-hero__desc {
	max-width: 660px;
	margin: 0 0 26px;
	color: #263950;
	font-size: 15px;
	line-height: 1.8;
}

.doctor-detail-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	max-width: 620px;
	margin-bottom: 30px;
}

.doctor-detail-hero__stats div {
	display: grid;
	grid-template-columns: 44px 1fr;
	align-items: center;
	column-gap: 10px;
	min-width: 0;
}

.doctor-detail-hero__stats img {
	grid-row: span 2;
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.doctor-detail-hero__stats b {
	color: var(--doctor-detail-blue);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.15;
}

.doctor-detail-hero__stats small {
	color: #263950;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.doctor-detail-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

@media (max-width: 1024px) {
	.doctor-detail-hero__inner {
		grid-template-columns: 0.9fr 1fr;
		min-height: 480px;
		gap: 26px;
	}

	.doctor-detail-hero__media {
		min-height: 480px;
	}

	.doctor-detail-hero__media img {
		width: min(390px, 96%);
		max-height: 470px;
	}

	.doctor-detail-hero h1 {
		font-size: 40px;
	}
}

@media (max-width: 760px) {
	.doctor-detail-hero {
		background-position: center top;
	}

	.doctor-detail-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 0;
		width: min(var(--container), calc(100% - 28px));
	}

	.doctor-detail-hero__media {
		order: 2;
		min-height: 0;
		margin-top: 8px;
	}

	.doctor-detail-hero__media img {
		width: min(300px, 86%);
		max-height: 330px;
	}

	.doctor-detail-hero__content {
		padding: 28px 0 0;
		text-align: center;
	}

	.doctor-detail-hero__eyebrow::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.doctor-detail-hero h1 {
		margin-bottom: 10px;
		font-size: 30px;
	}

	.doctor-detail-hero__role {
		margin-bottom: 16px;
		font-size: 14px;
	}

	.doctor-detail-hero__desc {
		max-width: 360px;
		margin: 0 auto 18px;
		font-size: 13px;
		line-height: 1.65;
	}

	.doctor-detail-hero__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		max-width: none;
		margin-bottom: 18px;
		text-align: center;
	}

	.doctor-detail-hero__stats div {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-direction: column;
		gap: 5px;
		min-height: 118px;
		padding: 12px 7px;
		border: 1px solid #d7e7f7;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.78);
		box-shadow: 0 8px 18px rgba(9, 58, 116, 0.06);
	}

	.doctor-detail-hero__stats img {
		width: 36px;
		height: 36px;
		flex: 0 0 auto;
	}

	.doctor-detail-hero__stats b {
		font-size: 13px;
	}

	.doctor-detail-hero__stats small {
		font-size: 11px;
		line-height: 1.25;
	}

	.doctor-detail-hero__actions {
		gap: 10px;
	}
}

@media (max-width: 430px) {
	.doctor-detail-hero h1 {
		font-size: 27px;
	}

	.doctor-detail-hero__stats {
		grid-template-columns: 1fr;
	}

	.doctor-detail-hero__stats div {
		display: grid;
		grid-template-columns: 38px 1fr;
		min-height: 0;
		padding: 10px 14px;
		text-align: left;
	}

	.doctor-detail-hero__stats img {
		grid-row: span 2;
	}
}
