.doctors-team {
	padding: 60px 0 38px;
}

.doctors-team__slider {
	overflow: hidden;
	user-select: none;
	-webkit-user-select: none;
}

.doctors-team__slider .swiper-wrapper {
	align-items: stretch;
}

.doctors-team__slider:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.doctors-team__slider:not(.swiper-initialized) .doctors-card {
	flex: 0 1 calc((100% - 40px) / 3);
}

.doctors-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-width: 0;
	height: auto;
	border: 1px solid var(--doctors-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(9, 58, 116, 0.06);
}

.doctors-card__image {
	width: 100%;
	height: 282px;
	object-fit: cover;
	object-position: center top;
	background: #eef5fb;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
}

.doctors-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 370px;
	padding: 24px 20px 24px;
}

.doctors-card__degree {
	margin: 0 0 8px;
	color: var(--doctors-blue);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25;
	text-transform: uppercase;
}

.doctors-card h2 {
	margin: 0 0 9px;
	color: var(--doctors-blue);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
}

.doctors-card__specialty {
	margin: 0 0 20px;
	color: var(--doctors-blue);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

.doctors-card ul {
	display: grid;
	gap: 13px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.doctors-card li {
	position: relative;
	padding-left: 18px;
	color: #23364f;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
}

.doctors-card li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--doctors-blue);
	content: "";
}

.doctors-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 160px;
	min-height: 44px;
	margin: auto auto 0;
	border: 2px solid #0b55df;
	border-radius: 6px;
	background: #ffffff;
	color: var(--doctors-blue);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.doctors-card__link:hover,
.doctors-card__link:focus {
	background: var(--doctors-blue);
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 1180px) {
	.doctors-team__slider:not(.swiper-initialized) .swiper-wrapper {
		gap: 16px;
	}

	.doctors-card__body {
		padding-inline: 18px;
	}
}

@media (max-width: 1024px) {
	.doctors-team__slider:not(.swiper-initialized) .doctors-card {
		flex-basis: calc((100% - 16px) / 2);
	}
}

@media (max-width: 768px) {
	.doctors-team {
		padding: var(--doctors-mobile-section-space) 0 calc(var(--doctors-mobile-section-space) / 2);
	}

	.doctors-team__slider {
		overflow: visible;
	}

	.doctors-team__slider:not(.swiper-initialized) .swiper-wrapper {
		display: flex;
		gap: 0;
	}

	.doctors-card__image {
		height: 260px;
	}

	.doctors-card__body {
		min-height: 340px;
		padding: 22px 18px 22px;
	}
}

@media (max-width: 420px) {
	.doctors-card__image {
		height: 232px;
	}

	.doctors-card h2 {
		font-size: 19px;
	}

	.doctors-card li {
		font-size: 13px;
	}
}
