.doctor-detail-page {
	--doctor-detail-blue: #064aa7;
	--doctor-detail-blue-dark: #003f9d;
	--doctor-detail-line: #d9e7f7;
	--doctor-detail-soft: #f4f9ff;
	--doctor-detail-text: #172849;
	overflow: visible;
	background: #ffffff;
	color: var(--doctor-detail-text);
}

.doctor-detail-page h1,
.doctor-detail-page h2,
.doctor-detail-page h3,
.doctor-detail-page p {
	letter-spacing: 0;
}

.doctor-detail-section {
	padding: 28px 0;
}

.doctor-detail-title {
	position: relative;
	margin: 0 0 28px;
	color: var(--doctor-detail-blue);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
}

.doctor-detail-title::after {
	display: block;
	width: 68px;
	height: 3px;
	margin: 9px auto 0;
	background:
		linear-gradient(var(--doctor-detail-blue), var(--doctor-detail-blue)) center / 32px 3px no-repeat,
		linear-gradient(#cfdff2, #cfdff2) center / 68px 1px no-repeat;
	content: "";
}

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

.doctor-detail-kicker::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-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 34px;
	border-radius: 7px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.doctor-detail-button:hover,
.doctor-detail-button:focus {
	text-decoration: none;
}

.doctor-detail-button--primary {
	background: linear-gradient(180deg, #0758c6 0%, #003f9d 100%);
	box-shadow: 0 8px 20px rgba(0, 65, 154, 0.24);
	color: #ffffff;
}

.doctor-detail-button--primary:hover,
.doctor-detail-button--primary:focus {
	color: #ffffff;
}

.doctor-detail-button--outline {
	border: 1px solid #0b55df;
	background: #ffffff;
	color: var(--doctor-detail-blue);
}

@media (max-width: 768px) {
	.doctor-detail-section {
		padding: 24px 0;
	}

	.doctor-detail-title {
		margin-bottom: 20px;
		font-size: 21px;
	}

	.doctor-detail-button {
		width: 100%;
		min-height: 44px;
		padding-inline: 16px;
		font-size: 13px;
	}
}
