.meet-our-doctors {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(5rem, 6vw, 7rem) 0;
	background-color: #fbfbfb;
}

.meet-our-doctors.has-section-bg-image {
	color: var(--color-text);
	--section-title-color: var(--color-text);
	--section-text-color: var(--color-text);
}

.meet-our-doctors.has-section-bg-image .mbm-section-bg__image {
	opacity: 0.3;
}

.meet-our-doctors__container {
	position: relative;
	z-index: 1;
}

.meet-our-doctors__title {
	margin: 0 auto 2.5rem;
	max-width: 40rem;
	text-align: center;
}

.meet-our-doctors__slider {
	position: relative;
	margin: 0 auto;
}

.meet-our-doctors__swiper {
	overflow: hidden;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.meet-our-doctors__swiper:active {
	cursor: grabbing;
}

.meet-our-doctors__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: auto;
	text-align: center;
}

.meet-our-doctors__photo {
	position: relative;
	width: min(100%, 11.5rem);
	aspect-ratio: 1 / 1;
	margin: 0 auto 1.75rem;
	overflow: hidden;
	border: 3px solid var(--color-primary);
	border-radius: 50%;
	background: var(--color-white);
}

.meet-our-doctors__photo picture {
	display: block;
	width: 100%;
	height: 100%;
}

.meet-our-doctors__photo picture img,
.meet-our-doctors__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.meet-our-doctors__text {
	margin: 0 auto;
	text-align: center;
	font-size: 19px;
    font-weight: var(--font-weight-regular);
    font-style: normal;
    line-height: 30px;
	min-height: 150px;
}

.meet-our-doctors__text > *:first-child {
	margin-top: 0;
}

.meet-our-doctors__text > *:last-child {
	margin-bottom: 0;
}

.meet-our-doctors__name {
	margin: 1.5rem 0 0;
	color: var(--color-section-dark-blue);
	font-family: var(--font-family-title);
	font-size: 1.35rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
}

.meet-our-doctors__link,
.meet-our-doctors__link:link,
.meet-our-doctors__link:visited,
.meet-our-doctors__link:active {
	display: inline-block;
	margin-top: 1rem;
	color: var(--color-primary);
	font-family: var(--font-family-title);
	font-size: 0.8rem;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
}

.meet-our-doctors__link:hover {
	color: var(--color-primary);
	opacity: 0.8;
}

.meet-our-doctors__dots {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.75rem;
}

.meet-our-doctors__dots .swiper-pagination-bullet {
	width: 0.55rem;
	height: 0.55rem;
	margin: 0;
	background: #c9cdcf;
	border-radius: 50%;
	opacity: 1;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.meet-our-doctors__dots .swiper-pagination-bullet-active {
	background: var(--color-primary);
	transform: scale(1.1);
}

.meet-our-doctors__logos {
	margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.meet-our-doctors__logos-track {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	width: 100%;
}

.meet-our-doctors__logos-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
}

.meet-our-doctors__logos-group--duplicate {
	display: none;
}

.meet-our-doctors__logo {
	display: flex;
	align-items: center;
	justify-content: center;

}

.meet-our-doctors__logo picture {
	display: flex;
	align-items: center;
	justify-content: center;
}

.meet-our-doctors__logo picture img,
.meet-our-doctors__logo-image {
	display: block;
	width: auto;
	height: auto;
	max-height: 150px;
	object-fit: contain;
}

@media (max-width: 767px) {
	.meet-our-doctors__photo {
		width: min(100%, 9.5rem);
		margin-bottom: 1.35rem;
	}

	.meet-our-doctors__name {
		font-size: 1.2rem;
	}

	.meet-our-doctors__logos-track,
	.meet-our-doctors__logos-group {
		gap: 1.5rem 2rem;
	}

	.meet-our-doctors__logo {
		max-width: 7.5rem;
	}

	.meet-our-doctors__logo-image {
		max-height: 3.5rem;
	}
	.meet-our-doctors__text {
		font-size: 18px;
		line-height: 26px;
	}
}

@media (max-width: 499px) {
	.meet-our-doctors__logos {
		overflow: hidden;
		width: 100%;
		mask-image: linear-gradient(
			90deg,
			transparent 0%,
			#000 8%,
			#000 92%,
			transparent 100%
		);

		.meet-our-doctors__logo-image {
			max-height: 10rem;
		}
	}

	.meet-our-doctors__logos-track {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: max-content;
		animation: meet-our-doctors-logos-marquee 10s linear infinite;
		will-change: transform;
	}

	.meet-our-doctors__logos-group {
		flex-wrap: nowrap;
		flex-shrink: 0;
		gap: 2rem;
	}

	.meet-our-doctors__logos-group--duplicate {
		display: flex;
	}

	.meet-our-doctors__logo {
		flex-shrink: 0;
		max-width: none;
	}
}

@keyframes meet-our-doctors-logos-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.meet-our-doctors__logos-track {
		animation: none;
	}
}
