.our-team-gutenberg-block {
	width: var(--container-width);
	margin: 0 auto;
	container: our-team/inline-size;
}

.our-team-gutenberg-block > .content {
	display: flex;
	flex-direction: column;
	gap: 5rem;
}
.our-team-gutenberg-block .block-title {
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.111;
}

.our-team-gutenberg-block .staff-container {
	display: flex;
	flex-direction: column;
	gap: 5rem;
}
.our-team-gutenberg-block .doctors {
	width: 100%;
}

.our-team-gutenberg-block .staff-header {
	position: relative;
	width: 100%;
}

.our-team-gutenberg-block .staff-header::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	height: 1px;
	width: 65.807%;
	background-color: var(--primary-blue);
}

.our-team-gutenberg-block .staff-header h3 {
	font-size: 1.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.285;
}

.our-team-gutenberg-block .doc .doc-thumb {
	position: relative;
}
.our-team-gutenberg-block .doc .doc-thumb .picture {
	aspect-ratio: 392/548;
	overflow: hidden;
}
.our-team-gutenberg-block .doc .doc-thumb .picture img {
	scale: 1;
	transition: scale 0.4s ease-in-out;
}
.our-team-gutenberg-block .doc-name {
	text-align: center;
	font-size: 1.75rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.285;
	margin: 0.57em auto 4px;
	height: calc(1.285 * 2 * 1em);
	overflow: hidden;
}
.our-team-gutenberg-block .doc-position {
	text-align: center;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.3;
	color: var(--primary-blue);
}

.our-team-gutenberg-block .doc {
	position: relative;
}
.our-team-gutenberg-block .doc .hoverable {
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.35s ease-in-out;
}

.our-team-gutenberg-block .doc .hoverable::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: var(--primary-blue);
	opacity: 0.8;
}

.our-team-gutenberg-block .doc .hoverable .button-link {
	color: var(--primary-white);
}
.our-team-gutenberg-block .doc .hoverable .doctolib {
	color: var(--primary-white);
	padding: 0 34px 4px;
	position: relative;
}
.our-team-gutenberg-block .doc .hoverable .doctolib::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background-color: var(--primary-white);
	transition: width 0.45s ease-in-out;
}
.our-team-gutenberg-block .doc .hoverable .doctolib:hover::before {
	width: 100%;
}

.our-team-gutenberg-block .doc:hover .hoverable {
	opacity: 1;
	pointer-events: initial;
}
.our-team-gutenberg-block .doc:hover .doc-thumb .picture img {
	scale: 1.1;
}

.our-team-gutenberg-block .assistants {
	/* --_assists-cols: 6;
	display: grid;
	grid-template-columns: repeat(var(--_assists-cols), 1fr);
	gap: 2rem; */
	width: 100%;
}

.our-team-gutenberg-block .assistant {
	display: flex;
	flex-direction: column;
}
.our-team-gutenberg-block .assistant-thumb .picture {
	aspect-ratio: 180/253;
	overflow: hidden;
}
.our-team-gutenberg-block .assistant-thumb .picture img {
	scale: 1;
	transition: scale 0.4s ease-in-out;
}
.our-team-gutenberg-block .assistant-name {
	text-align: center;
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.3;
	margin: 0.8em auto 4px;
}
.our-team-gutenberg-block .assistant-position {
	text-align: center;
	font-size: 1.125rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.111;
	color: var(--primary-blue);
}
.our-team-gutenberg-block .assistant:hover .picture img {
	scale: 1.1;
}

.our-team-gutenberg-block
	.swiper.doctors:not(.swiper-initialized)
	.swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.assistants-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
}

.our-team-gutenberg-block
	.assistants.swiper:not(.swiper-initialized)
	.assistants-navigation {
	display: none;
}

@container our-team (max-width: 700px) {
	.our-team-gutenberg-block .doc-name {
		font-size: 1.25rem;
	}
	.our-team-gutenberg-block .doc-position {
		font-size: 1.125rem;
	}
}
@container our-team (min-width: 700px) {
	.our-team-gutenberg-block .assistants .swiper-wrapper {
		--_assists-cols: 6;
		display: grid;
		grid-template-columns: repeat(var(--_assists-cols), 1fr);
		gap: 2rem;
	}
}
@container our-team (max-width: 800px) {
	.our-team-gutenberg-block .assistants .swiper-wrapper {
		--_assists-cols: 4;
	}
}
