.doctor-hero {
	background: var(--color-surface-light);
	padding: calc(var(--header-height) + 40px) 0 100px;
}

.doctor-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	margin-top: 40px;
	align-items: start;
}

.doctor-hero__name {
	margin: 0 0 16px;
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-bg-alt);
}

.doctor-hero__role {
	margin: 0 0 24px;
	font-size: 15px;
	color: var(--color-muted-warm);
}

.doctor-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 40px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	text-transform: lowercase;
	color: var(--color-bg-alt);
}

.doctor-hero__arrow {
	transition: transform 0.2s ease;
}

.doctor-hero__cta:hover .doctor-hero__arrow {
	transform: translateX(4px);
}

.doctor-hero__bio {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.doctor-hero__bio p {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-muted-warm);
}

.doctor-hero__photo {
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	overflow: hidden;
}

.doctor-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor-hero__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--color-card);
}

.doctor-hero__photo--placeholder span {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: var(--color-muted-warm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Breakpoints: 1440 / 1280 / 1024 / 768 / 380 */

@media (max-width: 1280px) {
	.doctor-hero__name {
		font-size: 34px;
	}
}

@media (max-width: 1024px) {
	.doctor-hero {
		padding-bottom: 72px;
	}

	.doctor-hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.doctor-hero__media {
		order: -1;
		max-width: 360px;
	}
}

@media (max-width: 768px) {
	.doctor-hero__name {
		font-size: 28px;
	}
}