/* Decorative extras for the "Врачи" swiper on service pages — layers on top of .team */

.doctors {
	position: relative;
}

.doctors__number {
	position: absolute;
	z-index: 0;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: rgba(65, 23, 20, 0.15);
	pointer-events: none;
}

.doctors__badge {
	position: absolute;
	top: 8px;
	right: 120px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 16px;
	pointer-events: none;
}

.doctors__badge-icon {
	position: relative;
	width: 64px;
	height: 64px;
	clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
	background: rgba(65, 23, 20, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
}

.doctors__badge-icon::before {
	content: "";
	width: 22px;
	height: 22px;
	border: 1px solid var(--color-muted-warm);
	border-radius: 50%;
}

.doctors__badge-icon::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 1px;
	background: var(--color-muted-warm);
}

.doctors__badge-text {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-muted-warm);
}

.doctors__squares {
	position: absolute;
	bottom: 90px;
	left: 40px;
	z-index: 0;
	display: flex;
	gap: 10px;
	pointer-events: none;
}

.doctors__square {
	width: 24px;
	height: 24px;
}

.doctors__square--fill {
	background: var(--color-accent);
}

.doctors__square--outline {
	border: 1px solid var(--color-muted-warm);
}

@media (max-width: 1280px) {
	.doctors__badge {
		display: none;
	}
}

@media (max-width: 1024px) {
	.doctors__number,
	.doctors__squares {
		display: none;
	}
}
