.home-doctors {
	padding: 0 0 var(--section-space);
}

.home-doctors__slider {
	overflow: hidden;
}

.home-doctors__slider:not(.swiper-initialized) .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.doctor-card {
	overflow: hidden;
	min-width: 0;
	height: auto;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #ffffff;
	text-align: center;
}

.doctor-card img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	object-position: center top;
	background: #f5f7fa;
}

.doctor-card__body {
	padding: 11px 10px 16px;
}

.doctor-card p {
	margin: 0 0 3px;
	color: #344967;
	font-size: 13px;
	text-transform: uppercase;
}

.doctor-card h3 {
	margin: 0 0 4px;
	color: #174780;
	font-size: 17px;
	line-height: 1.2;
}

.doctor-card span,
.doctor-card small {
	display: block;
	color: #273647;
	font-size: 12px;
	line-height: 1.45;
}

.doctor-card small {
	margin-top: 4px;
}

.home-doctors__more {
	margin-top: 18px;
	text-align: center;
}

@media (max-width: 980px) {
	.home-doctors__slider:not(.swiper-initialized) .swiper-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 620px) {
	.home-doctors__slider:not(.swiper-initialized) .swiper-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}
