/**
 * Annuaire dynamique des praticiens — MédiNeupré.
 */

.praticiens-wrapper,
.praticiens-wrapper *,
.praticiens-wrapper *::before,
.praticiens-wrapper *::after {
	box-sizing: border-box;
}

.praticiens-wrapper {
	position: relative;
	isolation: isolate;
	width: 100%;
	margin: 0 auto;
	padding: 34px 40px 42px;
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(
			circle at 12% 4%,
			rgba(255, 255, 255, 0.18) 0%,
			rgba(255, 255, 255, 0) 34%
		),
		radial-gradient(
			circle at 100% 0%,
			rgba(128, 203, 210, 0.24) 0%,
			rgba(128, 203, 210, 0) 36%
		),
		linear-gradient(135deg, #4ea9b8 0%, #7dc9d1 45%, #9edee1 100%);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 30px;
	box-shadow:
		0 28px 70px rgba(0, 38, 58, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.praticiens-wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 40%),
		repeating-linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.012) 0,
			rgba(255, 255, 255, 0.012) 1px,
			transparent 1px,
			transparent 20px
		);
}

.praticiens-header {
	max-width: 760px;
	margin: 0 auto 22px;
	text-align: center;
}

.praticiens-eyebrow {
	margin: 0 0 8px;
	color: var(--mn-color-secondary, #80cbd2);
	font-size: 0.72rem;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.praticiens-titre {
	margin: 0;
	color: #ffffff;
	font-size: clamp(2rem, 3.3vw, 3rem);
	font-weight: 740;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.praticiens-ligne {
	width: 72px;
	height: 3px;
	margin: 15px auto 0;
	background: linear-gradient(90deg, #ffffff 0%, var(--mn-color-secondary, #80cbd2) 100%);
	border-radius: 999px;
}

.praticiens-soustitre {
	max-width: 650px;
	margin: 14px auto 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.98rem;
	line-height: 1.6;
}

.praticiens-filtres {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	max-width: 1040px;
	margin: 0 auto 16px;
}

.praticiens-filtre {
	appearance: none;
	min-height: 36px;
	padding: 7px 15px;
	color: rgba(255, 255, 255, 0.94);
	background: rgba(4, 37, 61, 0.42);
	border: 1px solid rgba(128, 203, 210, 0.48);
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.79rem;
	font-weight: 650;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition:
		color var(--mn-transition-fast, 180ms ease),
		background-color var(--mn-transition-fast, 180ms ease),
		border-color var(--mn-transition-fast, 180ms ease),
		box-shadow var(--mn-transition-fast, 180ms ease),
		transform var(--mn-transition-fast, 180ms ease);
}

.praticiens-filtre:hover,
.praticiens-filtre:focus-visible {
	color: #ffffff;
	background: rgba(128, 203, 210, 0.2);
	border-color: var(--mn-color-secondary, #80cbd2);
	transform: translateY(-1px);
}

.praticiens-filtre.active,
.praticiens-filtre[aria-pressed="true"] {
	color: #04324a;
	background: linear-gradient(135deg, #9cdee2 0%, #68bec8 100%);
	border-color: #9cdee2;
	box-shadow: 0 8px 20px rgba(64, 174, 190, 0.2);
}

.praticiens-filtre:focus-visible {
	outline: 3px solid rgba(128, 203, 210, 0.34);
	outline-offset: 3px;
}

.praticiens-resultats {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.78rem;
	line-height: 1.4;
	text-align: center;
}

.praticiens {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 20px;
	width: 100%;
}

.praticien {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	overflow: hidden;
	color: #17343c;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
	border: 1px solid rgba(128, 203, 210, 0.4);
	border-radius: 19px;
	box-shadow:
		0 16px 32px rgba(0, 18, 32, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition:
		transform var(--mn-transition-standard, 280ms ease),
		box-shadow var(--mn-transition-standard, 280ms ease),
		border-color var(--mn-transition-standard, 280ms ease),
		opacity 180ms ease;
}

.praticien:hover,
.praticien:focus-within {
	border-color: rgba(128, 203, 210, 0.95);
	box-shadow:
		0 22px 44px rgba(0, 18, 32, 0.27),
		0 0 0 1px rgba(128, 203, 210, 0.18);
	transform: translateY(-5px);
}

.praticien.hidden {
	display: none !important;
}

.praticien-image-link {
	position: relative;
	display: block;
	color: inherit;
	text-decoration: none;
}

.praticien-image {
	position: relative;
	height: 228px;
	overflow: hidden;
	background: linear-gradient(145deg, #e8f2f5 0%, #f7fbfc 100%);
}

.praticien-photo,
.praticien-image > img:not(.praticien-badge img) {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	transition:
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 520ms ease;
}

.praticien:hover .praticien-photo,
.praticien:focus-within .praticien-photo,
.praticien:hover .praticien-image > img:not(.praticien-badge img),
.praticien:focus-within .praticien-image > img:not(.praticien-badge img) {
	filter: saturate(1.03) contrast(1.01);
	transform: scale(1.035);
}

.praticien-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 68px;
	pointer-events: none;
	background: linear-gradient(to top, rgba(2, 38, 57, 0.13), transparent);
}

.praticien-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 4px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 88, 111, 0.18);
	border-radius: 50%;
	box-shadow: 0 6px 15px rgba(0, 39, 57, 0.12);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.praticien-badge img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.praticien-placeholder {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at center, rgba(128, 203, 210, 0.2), transparent 54%),
		linear-gradient(145deg, #e8f2f5 0%, #f8fbfc 100%);
}

.praticien-placeholder::before {
	content: "";
	position: absolute;
	width: 150px;
	height: 150px;
	border: 4px solid rgba(0, 88, 111, 0.18);
	border-right-color: rgba(128, 203, 210, 0.7);
	border-radius: 50%;
	transform: rotate(18deg);
}

.praticien-placeholder__head,
.praticien-placeholder__body {
	position: absolute;
	display: block;
	background: #0a6071;
}

.praticien-placeholder__head {
	top: 64px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
}

.praticien-placeholder__body {
	bottom: 34px;
	width: 102px;
	height: 76px;
	border-radius: 52px 52px 15px 15px;
}

.praticien-contenu {
	display: flex;
	min-height: 0;
	flex: 1;
	flex-direction: column;
	padding: 17px 17px 18px;
}

.praticien-titre-link {
	color: inherit;
	text-decoration: none;
}

.praticien h3 {
	margin: 0 0 9px;
	color: #053b52;
	font-size: 1.05rem;
	font-weight: 750;
	line-height: 1.22;
	letter-spacing: -0.018em;
}

.praticien-titre-link:hover h3,
.praticien-titre-link:focus-visible h3 {
	color: var(--mn-color-primary, #00586f);
}

.praticien-titre-link:focus-visible,
.btn-rdv:focus-visible,
.praticien-image-link:focus-visible {
	outline: 3px solid rgba(128, 203, 210, 0.65);
	outline-offset: 3px;
}

.praticien-specialites {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 11px;
}

.specialite {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 10px;
	color: #07506a;
	background: #eff8fa;
	border: 1px solid rgba(0, 88, 111, 0.16);
	border-radius: 999px;
	font-size: 0.69rem;
	font-weight: 650;
	line-height: 1.25;
	text-align: center;
}

.praticien-separateur {
	width: 100%;
	height: 2px;
	margin: 0 0 12px;
	background: linear-gradient(90deg, #0b5368 0%, #80cbd2 68%, transparent 100%);
	border-radius: 999px;
	opacity: 0.75;
}

.description {
	flex: 1;
	margin: 0 0 16px;
	color: #53686f;
	font-size: 0.87rem;
	line-height: 1.55;
}

.description--empty {
	color: #71848a;
	font-style: italic;
}

.praticien-actions {
	display: flex;
	align-items: center;
	margin-top: auto;
}

.btn-rdv {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	padding: 9px 13px;
	color: #ffffff !important;
	background: linear-gradient(135deg, #04415a 0%, #075e73 100%);
	border: 1px solid rgba(0, 88, 111, 0.48);
	border-radius: 10px;
	font-size: 0.77rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0, 63, 80, 0.16);
	transition:
		background-color var(--mn-transition-fast, 180ms ease),
		box-shadow var(--mn-transition-fast, 180ms ease),
		transform var(--mn-transition-fast, 180ms ease);
}

.btn-rdv:hover {
	color: #ffffff !important;
	background: linear-gradient(135deg, #07566d 0%, #0a7284 100%);
	box-shadow: 0 11px 22px rgba(0, 63, 80, 0.22);
	transform: translateY(-1px);
}

.btn-rdv__icon {
	display: block;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.btn-rdv__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.btn-rdv--profile {
	background: #ffffff;
	color: #07506a !important;
	border-color: rgba(0, 88, 111, 0.26);
	box-shadow: none;
}

.btn-rdv--profile:hover {
	color: #053b52 !important;
	background: #eaf7f8;
}

.btn-rdv__arrow {
	font-size: 1rem;
	line-height: 1;
}

.praticiens-message {
	width: min(calc(100% - 32px), 780px);
	margin: 40px auto;
	padding: 24px;
	color: var(--mn-color-text, #17343c);
	background: #ffffff;
	border: 1px solid var(--mn-color-border, rgba(0, 88, 111, 0.15));
	border-radius: 18px;
	box-shadow: var(--mn-shadow-small, 0 6px 20px rgba(0, 63, 80, 0.08));
	text-align: center;
}

@media (max-width: 1120px) {
	.praticiens-wrapper {
		padding-inline: 32px;
	}

	.praticiens {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}

	.praticien-image {
		height: 255px;
	}
}

@media (max-width: 720px) {
	.praticiens-wrapper {
		padding: 28px 18px 28px;
		border-radius: 24px;
	}

	.praticiens-header {
		margin-bottom: 20px;
	}

	.praticiens-soustitre {
		font-size: 0.92rem;
	}

	.praticiens-filtres {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		margin-inline: -4px;
		padding: 4px 4px 10px;
		scrollbar-width: thin;
		scroll-snap-type: x proximity;
	}

	.praticiens-filtre {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.praticiens {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.praticien {
		max-width: 520px;
		margin-inline: auto;
		border-radius: 18px;
	}

	.praticien-image {
		height: min(68vw, 300px);
	}

	.praticien h3 {
		font-size: 1.12rem;
	}

	.description {
		font-size: 0.9rem;
	}
}

@media (max-width: 420px) {
	.praticiens-wrapper {
		padding-inline: 13px;
		border-radius: 20px;
	}

	.praticiens-titre {
		font-size: 2rem;
	}

	.praticiens-filtres {
		margin-bottom: 10px;
	}

	.praticiens-filtre {
		min-height: 34px;
		padding-inline: 13px;
		font-size: 0.75rem;
	}

	.praticien-contenu {
		padding: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.praticiens-wrapper *,
	.praticiens-wrapper *::before,
	.praticiens-wrapper *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}


.praticiens-header {
	display: none;
}

.praticiens-filtres {
	max-width: 1120px;
	margin: 0 auto 18px;
}

.praticiens-resultats {
	display: none;
}

/* Version premium lumineuse — annuaire. */
.praticiens-wrapper {
	padding: 36px 38px 42px;
	color: #07364c;
	background:
		radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 30%),
		radial-gradient(circle at 100% 15%, rgba(128, 203, 210, 0.34) 0%, rgba(128, 203, 210, 0) 34%),
		linear-gradient(145deg, rgba(239, 252, 253, 0.96) 0%, rgba(218, 245, 247, 0.97) 55%, rgba(198, 236, 240, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 30px;
	box-shadow:
		0 30px 74px rgba(1, 36, 55, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.praticiens-wrapper::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 42%),
		repeating-linear-gradient(135deg, rgba(0, 88, 111, 0.015) 0, rgba(0, 88, 111, 0.015) 1px, transparent 1px, transparent 22px);
}

.praticiens-filtres {
	gap: 10px;
	margin-bottom: 28px;
}

.praticiens-filtre {
	min-height: 40px;
	padding: 9px 18px;
	color: #063b54;
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(35, 151, 170, 0.42);
	font-size: 0.8rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.praticiens-filtre:hover,
.praticiens-filtre:focus-visible {
	color: #032f46;
	background: #ffffff;
	border-color: #49b4c2;
	box-shadow: 0 8px 18px rgba(30, 136, 153, 0.12);
}

.praticiens-filtre.active,
.praticiens-filtre[aria-pressed="true"] {
	color: #ffffff;
	background: linear-gradient(135deg, #032f4a 0%, #075f78 100%);
	border-color: #063d58;
	box-shadow: 0 10px 24px rgba(0, 44, 66, 0.2);
}

.praticiens {
	gap: 24px;
}

.praticien {
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.94);
	border-radius: 18px;
	box-shadow:
		0 18px 38px rgba(0, 53, 72, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.praticien:hover,
.praticien:focus-within {
	border-color: rgba(83, 190, 202, 0.8);
	box-shadow:
		0 26px 48px rgba(0, 53, 72, 0.21),
		0 0 0 1px rgba(128, 203, 210, 0.16);
	transform: translateY(-7px);
}

.praticien-image {
	height: 250px;
	background: linear-gradient(145deg, #edf8f9 0%, #ffffff 100%);
}

.praticien-contenu {
	padding: 19px 19px 18px;
}

.praticien h3 {
	font-size: 1.12rem;
	line-height: 1.18;
}

.specialite {
	justify-content: flex-start;
	min-height: auto;
	padding: 0;
	color: #123e54;
	background: transparent;
	border: 0;
	border-radius: 0;
	font-size: 0.74rem;
	font-weight: 650;
	text-align: left;
}

.praticien-separateur {
	width: 34px;
	height: 2px;
	margin-top: 3px;
	background: #69c5ce;
	opacity: 1;
}

.description {
	color: #4e6873;
	font-size: 0.9rem;
	line-height: 1.58;
}

.btn-rdv {
	min-height: 40px;
	color: #07506a !important;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #55bdc8;
	border-radius: 999px;
	box-shadow: none;
}

.btn-rdv:hover {
	color: #ffffff !important;
	background: linear-gradient(135deg, #07566d 0%, #0a7284 100%);
	box-shadow: 0 10px 20px rgba(0, 73, 91, 0.17);
}

@media (max-width: 1120px) {
	.praticiens {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.praticiens-wrapper {
		padding: 20px 14px 24px;
		border-radius: 24px;
	}

	.praticiens-filtres {
		display: grid;
		grid-template-columns: 1fr;
		gap: 7px;
		margin: 0 0 18px;
		padding: 0;
		overflow: visible;
	}

	.praticiens-filtre {
		width: 100%;
		min-height: 38px;
		padding: 8px 12px;
		text-align: center;
	}

	.praticiens {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.praticien {
		max-width: 520px;
		margin-inline: auto;
	}

	.praticien-image {
		height: min(76vw, 340px);
	}
}

@media (max-width: 420px) {
	.praticiens-wrapper {
		padding-inline: 10px;
	}

	.praticien-contenu {
		padding: 16px;
	}
}


/**
 * Uniformisation stricte des cartes sur mobile — v1.7.1.
 * Toutes les cartes occupent exactement la largeur disponible,
 * indépendamment du nom, de la spécialité, de la photo ou du texte.
 */
@media (max-width: 720px) {
	.praticiens-wrapper {
		width: 100%;
		max-width: 100%;
	}

	.praticiens {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		justify-items: stretch;
		align-items: stretch;
		width: 100%;
		max-width: 100%;
	}

	.praticien {
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		margin: 0 !important;
		justify-self: stretch;
		align-self: stretch;
	}

	.praticien-image-link,
	.praticien-image,
	.praticien-contenu,
	.praticien-actions,
	.btn-rdv {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.praticien-image {
		height: auto !important;
		aspect-ratio: 4 / 3;
	}

	.praticien-photo,
	.praticien-image > img:not(.praticien-badge img) {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		object-fit: cover;
	}

	.praticien h3,
	.praticien-specialites,
	.description {
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: normal;
	}
}

@media (max-width: 420px) {
	.praticiens-wrapper {
		padding-right: 10px;
		padding-left: 10px;
	}

	.praticien {
		border-radius: 18px;
	}
}


/**
 * Continuité graphique entre le hero « Annuaire du centre » et le panneau.
 * Les lignes verticales sont plus larges, adoucies et fondues dans le fond.
 */
.praticiens-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	border-radius: inherit;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.22) 7%,
			rgba(128, 203, 210, 0.06) 13%,
			rgba(255, 255, 255, 0) 21%,
			rgba(255, 255, 255, 0) 36%,
			rgba(255, 255, 255, 0.16) 44%,
			rgba(128, 203, 210, 0.05) 51%,
			rgba(255, 255, 255, 0) 60%,
			rgba(255, 255, 255, 0) 74%,
			rgba(255, 255, 255, 0.20) 83%,
			rgba(128, 203, 210, 0.06) 90%,
			rgba(255, 255, 255, 0) 100%
		),
		repeating-linear-gradient(
			90deg,
			rgba(0, 88, 111, 0) 0,
			rgba(0, 88, 111, 0) 7px,
			rgba(0, 88, 111, 0.012) 9px,
			rgba(128, 203, 210, 0.045) 13px,
			rgba(255, 255, 255, 0.24) 17px,
			rgba(128, 203, 210, 0.07) 22px,
			rgba(0, 88, 111, 0.016) 27px,
			rgba(0, 88, 111, 0) 34px,
			rgba(0, 88, 111, 0) 48px
		);
	-webkit-mask-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.98) 0%,
		rgba(0, 0, 0, 0.90) 22%,
		rgba(0, 0, 0, 0.66) 54%,
		rgba(0, 0, 0, 0.34) 82%,
		rgba(0, 0, 0, 0.12) 100%
	);
	mask-image: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.98) 0%,
		rgba(0, 0, 0, 0.90) 22%,
		rgba(0, 0, 0, 0.66) 54%,
		rgba(0, 0, 0, 0.34) 82%,
		rgba(0, 0, 0, 0.12) 100%
	);
	opacity: 0.74;
}

.praticiens-wrapper > * {
	position: relative;
	z-index: 1;
}

@media (max-width: 720px) {
	.praticiens-wrapper::after {
		background:
			linear-gradient(
				90deg,
				rgba(255, 255, 255, 0) 0%,
				rgba(255, 255, 255, 0.20) 18%,
				rgba(128, 203, 210, 0.05) 29%,
				rgba(255, 255, 255, 0) 42%,
				rgba(255, 255, 255, 0) 58%,
				rgba(255, 255, 255, 0.17) 73%,
				rgba(128, 203, 210, 0.05) 84%,
				rgba(255, 255, 255, 0) 100%
			),
			repeating-linear-gradient(
				90deg,
				rgba(0, 88, 111, 0) 0,
				rgba(0, 88, 111, 0) 7px,
				rgba(128, 203, 210, 0.038) 12px,
				rgba(255, 255, 255, 0.19) 16px,
				rgba(128, 203, 210, 0.055) 21px,
				rgba(0, 88, 111, 0) 29px,
				rgba(0, 88, 111, 0) 42px
			);
		opacity: 0.62;
	}
}


/* === Version 2.3.2 : ratio cohérent avec le cadrage et illustrations centrées === */
.praticien-image {
	height: auto;
	aspect-ratio: 7 / 6;
}

.praticien-photo--illustration {
	object-fit: contain !important;
	object-position: 50% 50% !important;
	padding: 10px;
	box-sizing: border-box;
	background: linear-gradient(145deg, #edf8f9 0%, #ffffff 100%);
}

.praticien:hover .praticien-photo--illustration,
.praticien:focus-within .praticien-photo--illustration {
	transform: none !important;
}

@media (max-width: 720px) {
	.praticien-image {
		aspect-ratio: 7 / 6 !important;
	}
}


/* === Version 2.3.5 : cadrage enregistré réellement appliqué aux cartes === */
.praticien-photo[style],
.praticien-image > img[style]:not(.praticien-badge img) {
	will-change: transform;
}

.praticien:hover .praticien-photo[style]:not(.praticien-photo--illustration),
.praticien:focus-within .praticien-photo[style]:not(.praticien-photo--illustration),
.praticien:hover .praticien-image > img[style]:not(.praticien-badge img),
.praticien:focus-within .praticien-image > img[style]:not(.praticien-badge img) {
	filter: saturate(1.03) contrast(1.01);
}

/* === Version 1.2.4 : cartes praticiens plus valorisées, photo plus lisible === */
.praticien {
	border-color: rgba(128, 203, 210, 0.5);
	box-shadow:
		0 18px 36px rgba(0, 24, 40, 0.18),
		0 0 0 1px rgba(255, 255, 255, 0.55),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.praticien:hover,
.praticien:focus-within {
	box-shadow:
		0 24px 48px rgba(0, 24, 40, 0.24),
		0 0 0 1px rgba(128, 203, 210, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.praticien-image {
	height: auto;
	aspect-ratio: 4 / 5 !important;
	padding: 10px 10px 0;
	background: linear-gradient(180deg, rgba(241, 248, 249, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.praticien-photo,
.praticien-image > img:not(.praticien-badge img) {
	height: 100%;
	border: 1px solid rgba(128, 203, 210, 0.36);
	border-radius: 18px 18px 0 0;
	box-shadow: 0 16px 30px rgba(0, 53, 74, 0.14);
}

.praticien-overlay {
	height: 88px;
	background: linear-gradient(to top, rgba(2, 38, 57, 0.18), transparent);
}

.praticien-badge {
	top: 18px;
	left: 18px;
	box-shadow: 0 8px 18px rgba(0, 39, 57, 0.16);
}

@media (max-width: 720px) {
	.praticien-image {
		aspect-ratio: 4 / 5 !important;
	}
}


/* === v1.2.4 : photo non tronquée à la source et encadrement renforcé === */
.praticien-image {
	margin: 8px 8px 0;
	border: 1px solid rgba(0, 88, 111, 0.18);
	border-radius: 14px 14px 10px 10px;
	box-shadow:
		0 12px 28px rgba(0, 49, 67, 0.20),
		0 0 0 3px rgba(255, 255, 255, 0.82),
		inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.praticien:hover .praticien-image,
.praticien:focus-within .praticien-image {
	box-shadow:
		0 17px 34px rgba(0, 49, 67, 0.26),
		0 0 0 3px rgba(255, 255, 255, 0.92),
		0 0 0 4px rgba(128, 203, 210, 0.22),
		inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.praticien-image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(5, 86, 109, 0.12);
	pointer-events: none;
}


/* === Version 1.2.5 : rendu front aligné avec le cadrage portrait administrateur === */
.praticien-image-link {
	padding: 0;
}

.praticien-image {
	height: auto !important;
	aspect-ratio: 4 / 5 !important;
	margin: 10px 10px 0;
	padding: 12px 12px 0;
	border: 1px solid rgba(0, 88, 111, 0.16);
	border-radius: 18px 18px 12px 12px;
	background: linear-gradient(180deg, rgba(244, 250, 251, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
	box-shadow:
		0 14px 30px rgba(0, 49, 67, 0.18),
		0 0 0 3px rgba(255, 255, 255, 0.82),
		inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.praticien-photo,
.praticien-image > img:not(.praticien-badge img) {
	width: 100%;
	height: 100% !important;
	min-height: 0;
	object-fit: cover;
	object-position: 50% 50%;
	border: 1px solid rgba(128, 203, 210, 0.34);
	border-radius: 16px 16px 0 0;
	box-shadow: 0 16px 30px rgba(0, 53, 74, 0.14);
	background: linear-gradient(145deg, #e7f3f5, #ffffff);
}

.praticien-photo--illustration {
	object-fit: contain !important;
	padding: 12px;
}

.praticien:hover .praticien-image,
.praticien:focus-within .praticien-image {
	box-shadow:
		0 18px 36px rgba(0, 49, 67, 0.24),
		0 0 0 3px rgba(255, 255, 255, 0.9),
		0 0 0 1px rgba(128, 203, 210, 0.22) inset;
}

@media (max-width: 720px) {
	.praticien-image {
		aspect-ratio: 4 / 5 !important;
		margin: 8px 8px 0;
		padding: 10px 10px 0;
	}
}
