.sh-home .sh-experts {
	padding-top: var(--sh-section-y);
}

.sh-home .sh-experts__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 34px;
}

.sh-home .sh-experts__feature {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	min-height: 78px;
	padding: 0 24px;
	border: 1px solid #d8efff;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(23, 56, 88, 0.06);
}

.sh-home .sh-experts__feature > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--sh-primary);
}

.sh-home .sh-experts__feature > span img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.sh-home .sh-experts__feature-title {
	margin: 0 0 5px;
	color: var(--sh-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.sh-home .sh-experts__feature p {
	margin: 0;
	color: #8ca0b3;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
}

.sh-home .sh-experts__doctors {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 18px;
}

.sh-home .sh-experts__slider {
	width: 100%;
	overflow: hidden;
}

.sh-home .sh-experts__doctor-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.sh-home .sh-experts__doctor-list > div {
	flex: 0 1 calc((100% - 40px) / 3);
	max-width: calc((100% - 40px) / 3);
}

.sh-home .sh-experts__doctor-card {
	display: block;
	width: 100%;
	min-height: 64px;
	margin: 0;
	padding: 16px 24px;
	border: 1px solid #cfe8fb;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	font: inherit;
	line-height: inherit;
	text-align: left;
	text-transform: none;
	box-shadow: 0 10px 26px rgba(23, 56, 88, 0.04);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sh-home .sh-experts__doctor-card.is-active,
.sh-home .sh-experts__doctor-card:hover {
	border-color: var(--sh-primary);
	box-shadow: 0 12px 28px rgba(0, 151, 220, 0.12);
}

.sh-home .sh-experts__doctor-name {
	margin: 0;
	color: var(--sh-text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.sh-home .sh-experts__doctor-card p {
	margin: 0 0 5px;
	color: #7691a8;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.sh-home .sh-experts__arrow {
	position: relative;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #b7dff7;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 24px rgba(23, 56, 88, 0.08);
}

.sh-home .sh-experts__arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--sh-primary);
	border-right: 2px solid var(--sh-primary);
	transform: translate(-65%, -50%) rotate(45deg);
}

.sh-home .sh-experts__arrow--prev::before {
	transform: translate(-35%, -50%) rotate(225deg);
}

.sh-home .sh-experts__arrow.swiper-button-disabled {
	opacity: 0.45;
}

.sh-home .sh-experts__detail {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 72px;
	align-items: center;
	width: min(1060px, 100%);
	margin: 48px auto 0;
}

.sh-home .sh-experts__detail[hidden] {
	display: none;
}

.sh-home .sh-experts__portrait {
	position: relative;
	min-height: 430px;
	border-radius: 18px;
	background: #d8e9f7;
	overflow: hidden;
	box-shadow: 0 24px 50px rgba(0, 151, 220, 0.08);
}

.sh-home .sh-experts__portrait img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.sh-home .sh-experts__portrait span {
	position: absolute;
	left: 0;
	bottom: 28px;
	display: grid;
	min-width: 96px;
	padding: 12px 16px;
	border-radius: 0 12px 12px 0;
	background: var(--sh-primary);
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
}

.sh-home .sh-experts__portrait small {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 700;
}

.sh-home .sh-experts__bio-name {
	margin: 0 0 8px;
	color: var(--sh-primary);
	font-size: clamp(30px, 3.2vw, 44px);
	font-weight: 800;
	line-height: 1.15;
}

.sh-home .sh-experts__bio strong {
	display: block;
	margin-bottom: 24px;
	color: #5b7894;
	font-size: 16px;
	font-weight: 700;
}

.sh-home .sh-experts__bio strong.has-workplace {
	margin-bottom: 5px;
}

.sh-home .sh-experts__workplace {
	display: block;
	margin-bottom: 14px;
	color: #5b7894;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

.sh-home .sh-experts__desc {
	max-width: 760px;
	margin: 0 0 26px;
	color: #405c78;
	font-size: 16px;
	line-height: 1.8;
}

.sh-home .sh-experts__desc p {
	display: inline;
	margin: 0;
}

.sh-home .sh-experts__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.sh-home .sh-experts__tags span {
	padding: 9px 18px;
	border: 1px solid #95d8ff;
	border-radius: 8px;
	background: #e7f6ff;
	color: var(--sh-primary);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

@media (max-width: 1024px) {
	.sh-home .sh-experts__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sh-home .sh-experts__detail {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 38px;
	}
}

@media (max-width: 767px) {
	.sh-home .sh-experts {
		padding-top: var(--sh-section-y-mobile);
	}

	.sh-home .sh-experts__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-bottom: 20px;
	}

	.sh-home .sh-experts__feature {
		grid-template-columns: 34px minmax(0, 1fr);
		min-height: 58px;
		padding: 8px 10px;
	}

	.sh-home .sh-experts__feature > span {
		width: 30px;
		height: 30px;
		border-radius: 8px;
	}

	.sh-home .sh-experts__feature > span img {
		width: 18px;
		height: 18px;
	}

	.sh-home .sh-experts__feature-title {
		margin-bottom: 3px;
		font-size: 13px;
	}

	.sh-home .sh-experts__feature p {
		font-size: 11px;
	}

	.sh-home .sh-experts__doctors {
		grid-template-columns: 28px minmax(0, 1fr) 28px;
		gap: 5px;
	}

	.sh-home .sh-experts__doctor-list {
		gap: 6px;
	}

	.sh-home .sh-experts__doctor-list > div {
		flex-basis: calc((100% - 12px) / 3);
		max-width: calc((100% - 12px) / 3);
	}

	.sh-home .sh-experts__arrow {
		width: 28px;
		height: 28px;
	}

	.sh-home .sh-experts__doctor-card {
		min-height: 50px;
		padding: 8px 6px;
	}

	.sh-home .sh-experts__doctor-name {
		font-size: 11px;
	}

	.sh-home .sh-experts__doctor-card p {
		margin-bottom: 3px;
		font-size: 10px;
	}

	.sh-home .sh-experts__detail {
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 20px;
	}

	.sh-home .sh-experts__portrait {
		height: 360px;
		min-height: 0;
		border-radius: 8px 8px 0 0;
	}

	.sh-home .sh-experts__portrait img {
		height: 100%;
		min-height: 0;
		object-fit: contain;
	}

	.sh-home .sh-experts__portrait span {
		bottom: 12px;
		min-width: 68px;
		padding: 7px 10px;
		font-size: 16px;
	}

	.sh-home .sh-experts__bio {
		padding: 14px 0 0;
	}

	.sh-home .sh-experts__bio .sh-eyebrow {
		margin-bottom: 5px;
		font-size: 12px;
	}

	.sh-home .sh-experts__bio-name {
		margin-bottom: 5px;
		font-size: 22px;
	}

	.sh-home .sh-experts__bio strong {
		margin-bottom: 14px;
		font-size: 13px;
	}

	.sh-home .sh-experts__bio strong.has-workplace {
		margin-bottom: 4px;
	}

	.sh-home .sh-experts__workplace {
		margin-bottom: 14px;
		font-size: 12px;
	}

	.sh-home .sh-experts__desc {
		margin-bottom: 18px;
		font-size: 13px;
		line-height: 1.65;
		text-align: justify;
	}

	.sh-home .sh-experts__tags {
		gap: 6px;
		margin-bottom: 18px;
	}

	.sh-home .sh-experts__tags span {
		padding: 6px 8px;
		font-size: 11px;
	}

	.sh-home .sh-experts__bio .sh-button {
		min-height: 36px;
		padding: 0 16px;
		font-size: 13px;
	}
}
