/**
 * com_cvmtherapeutes — feuille de style site
 *
 * Les variables reprennent celles du template vitamed lorsqu'elles existent,
 * avec une valeur de repli pour rester lisible sous un autre template.
 */

.com-cvmtherapeutes {
	--cvm-teal: var(--vm-teal, #009fbb);
	--cvm-teal-dark: var(--vm-teal-dark, #007d94);
	--cvm-orange: var(--vm-orange, #de843a);
	--cvm-text: var(--vm-text, #333);
	--cvm-bg-soft: var(--vm-bg-soft, #f2f2f2);
	--cvm-radius: var(--vm-radius, 6px);
	--cvm-shadow: var(--vm-shadow, 0 2px 12px rgba(0, 0, 0, .08));
	color: var(--cvm-text);
}

/* Aucun soulignement, dans aucun etat : la distinction se fait a la couleur.
   Le contour de focus reste, sinon la navigation au clavier devient aveugle. */
.com-cvmtherapeutes a,
.com-cvmtherapeutes a:hover,
.com-cvmtherapeutes a:focus,
.com-cvmtherapeutes a:active,
.mod-cvmtherapeutes a,
.mod-cvmtherapeutes a:hover,
.mod-cvmtherapeutes a:focus,
.mod-cvmtherapeutes a:active {
	text-decoration: none;
}

.com-cvmtherapeutes a:focus-visible,
.mod-cvmtherapeutes a:focus-visible {
	outline: 2px solid var(--cvm-teal, #009fbb);
	outline-offset: 2px;
	border-radius: 2px;
}

/* ---------- Grille de la liste ---------- */

/* auto-fit : deux colonnes sur ordinateur, une seule des que la place manque.
   min(30rem, 100%) : sur un ecran plus etroit que 30rem, la colonne suit la
   largeur disponible au lieu de deborder. */
.cvm-therapeutes__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
	gap: 1.5rem;
	align-items: start;
	margin-top: 1.5rem;
}

/* ---------- Fiche ---------- */

/* Carte : bandeau d'identite, contenu, bouton. La rangee du milieu absorbe la
   hauteur disponible, donc les boutons s'alignent d'une carte a l'autre. */
.cvm-therapeute {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 1.25rem;
	padding: 1.5rem;
	border: 1px solid var(--cvm-bg-soft);
	border-radius: var(--cvm-radius);
	height: 100%;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.cvm-therapeute:hover {
	border-color: color-mix(in srgb, var(--cvm-teal) 35%, transparent);
	box-shadow: var(--cvm-shadow);
}

/* Photo et identite cote a cote. */
.cvm-therapeute__header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--cvm-bg-soft);
}

/* aspect-ratio plutot qu'une hauteur fixe : quand max-width reduit la photo
   sur petit ecran, elle reste ronde au lieu de devenir ovale. */
.cvm-therapeute__header .cvm-therapeute__photo {
	flex: none;
	width: 10rem;
	max-width: 40%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0;
}

.cvm-therapeute__header .cvm-ident {
	min-width: 0;
}

.cvm-therapeute__header .cvm-therapeute__name {
	margin: 0 0 .15rem;
}

.cvm-therapeute__header .cvm-therapeute__role {
	margin: 0 0 .5rem;
}

.cvm-therapeute__main {
	min-width: 0;
}

/* La fiche detaillee garde ses deux colonnes : le texte y est long et une
   ligne pleine largeur serait penible a lire. */
.cvm-therapeute--single {
	grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
	grid-template-rows: auto;
	align-items: start;
	border: 0;
	padding: 1.5rem 0;
	gap: 1.5rem 2rem;
}

.cvm-therapeute--single:hover {
	box-shadow: none;
}

.cvm-therapeute__aside {
	text-align: center;
}

/* Sur la fiche, le nom et la fonction sont centres : une liste calee a gauche
   sous eux se voit. Chaque ligne se centre donc a son tour. */
.cvm-therapeute__aside .cvm-contact {
	align-items: center;
	text-align: center;
}

/* Le nom est remonte en titre de page : la colonne enchaine donc la photo et
   la fonction. C'est le nom qui portait cet ecart, la fonction le reprend. */
.cvm-therapeute--single .cvm-therapeute__role {
	margin-top: .8rem;
}

@media (max-width: 40rem) {
	.cvm-therapeute--single {
		grid-template-columns: minmax(0, 1fr);
	}

	.cvm-therapeute__header {
		flex-direction: column;
		text-align: center;
	}

	.cvm-therapeute__header .cvm-contact {
		align-items: center;
	}
}

.cvm-therapeute__photo {
	max-width: 200px;
	height: auto;
	border-radius: 50%;
	box-shadow: var(--cvm-shadow);
}

.cvm-therapeute__name {
	color: var(--cvm-teal);
	font-size: 1.35rem;
	margin: .6rem 0 .2rem;
}

.cvm-therapeute__name a {
	color: inherit;
}

.cvm-therapeute__name a:hover,
.cvm-therapeute__name a:focus {
	color: var(--cvm-orange);
}

.cvm-therapeute__role {
	font-style: italic;
	margin: 0 0 .5rem;
}

/* ---------- Coordonnées ---------- */

.cvm-contact {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: inline-flex;
	flex-direction: column;
	gap: .25rem;
	text-align: left;
}

.cvm-contact__item {
	display: flex;
	align-items: center;
	gap: .5rem;
	line-height: 1.5;
}

.cvm-contact__item a {
	color: var(--cvm-teal-dark);
}

.cvm-contact__item a:hover,
.cvm-contact__item a:focus {
	color: var(--cvm-orange);
}

.cvm-icon {
	flex: none;
	color: var(--cvm-teal);
}

/* ---------- Boutons ---------- */

.cvm-btn {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .45rem 1.1rem;
	background: var(--cvm-orange);
	color: #fff;
	border: 1px solid var(--cvm-orange);
	border-radius: var(--cvm-radius);
	text-decoration: none;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: .5px;
	line-height: 1.4;
}

.cvm-btn:hover,
.cvm-btn:focus {
	background: var(--cvm-teal);
	border-color: var(--cvm-teal);
	color: #fff;
}

.cvm-btn .cvm-icon {
	color: currentColor;
}

.cvm-btn--ghost {
	background: transparent;
	border-color: var(--cvm-teal);
	color: var(--cvm-teal-dark);
	text-transform: none;
	letter-spacing: 0;
}

.cvm-btn--ghost:hover,
.cvm-btn--ghost:focus {
	background: var(--cvm-teal);
	border-color: var(--cvm-teal);
	color: #fff;
}

/* Bouton pleine largeur en pied de carte.
   text-align + text-wrap balance : quand le libelle passe sur deux lignes
   (petits ecrans), elles restent centrees et de longueurs comparables. */
.cvm-btn--block {
	width: 100%;
	justify-content: center;
	padding: .7rem 1.2rem;
	font-weight: bold;
	text-align: center;
	text-wrap: balance;
	transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}

.cvm-btn--block:hover,
.cvm-btn--block:focus-visible {
	transform: translateY(-1px);
}

/* L'icone decale le libelle, surtout quand il se replie : on s'en passe. */
.cvm-btn--block .cvm-icon {
	display: none;
}

/* ---------- Therapies ---------- */

.cvm-therapies {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

/* Deux colonnes de therapies uniquement sur la fiche detaillee : dans la
   grille, chaque carte est deja etroite. */
.cvm-therapeute--single .cvm-therapies {
	columns: 2;
	column-gap: 2rem;
}

.cvm-therapies li {
	break-inside: avoid;
	padding-left: 1rem;
	position: relative;
}

.cvm-therapies li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .55em;
	width: .4rem;
	height: .4rem;
	border-radius: 50%;
	background: var(--cvm-teal);
}

.cvm-agrements {
	font-weight: bold;
	margin: 0 0 1rem;
}

/* ---------- Presence ---------- */

.cvm-presence {
	background: var(--cvm-bg-soft);
	border-radius: var(--cvm-radius);
	padding: 1rem 1.2rem;
	margin: 1rem 0;
}

.cvm-presence__title {
	margin: 0 0 .5rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cvm-presence__today {
	margin: 0 0 .5rem;
}

.cvm-presence__unknown {
	margin: 0;
	color: #666;
	font-style: italic;
}

.cvm-badge {
	display: inline-block;
	padding: .15rem .6rem;
	border-radius: 999px;
	font-size: .8rem;
	color: #fff;
}

.cvm-badge--in {
	background: #2e7d32;
}

.cvm-badge--out {
	background: #757575;
}

.cvm-presence__table {
	width: 100%;
	border-collapse: collapse;
}

.cvm-presence__table th {
	text-align: left;
	font-weight: bold;
	padding: .25rem .8rem .25rem 0;
	white-space: nowrap;
	vertical-align: top;
}

.cvm-presence__table td {
	padding: .25rem 0;
}

.cvm-presence__room::before,
.cvm-presence__note::before {
	content: ' · ';
}

.cvm-presence__note {
	font-style: italic;
}

.cvm-presence__absences-title {
	margin: .8rem 0 .2rem;
	font-weight: bold;
}

.cvm-presence__absences {
	margin: 0;
	padding-left: 1.2rem;
}

/* ---------- Partage ---------- */

.cvm-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .6rem;
	margin: 1.5rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--cvm-bg-soft);
}

.cvm-share__label {
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--cvm-text);
}

.cvm-share__list {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cvm-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid var(--cvm-bg-soft);
	border-radius: 50%;
	background: #fff;
	color: var(--cvm-teal-dark);
	cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.cvm-share__btn:hover,
.cvm-share__btn:focus-visible {
	background: var(--cvm-teal);
	border-color: var(--cvm-teal);
	color: #fff;
}

.cvm-share__feedback {
	font-size: .85rem;
	color: var(--cvm-teal-dark);
}

.cvm-share__dialog {
	border: 0;
	border-radius: var(--cvm-radius);
	box-shadow: var(--cvm-shadow);
	padding: 1.5rem;
	text-align: center;
	max-width: 22rem;
}

.cvm-share__dialog::backdrop {
	background: rgba(0, 0, 0, .5);
}

.cvm-share__dialog-title {
	font-weight: bold;
	margin: 0 0 .8rem;
}

.cvm-share__qr svg {
	width: 100%;
	max-width: 15rem;
	height: auto;
}

.cvm-share__dialog-url {
	font-size: .8rem;
	word-break: break-all;
	color: #666;
	margin: .8rem 0;
}

/* ---------- Module « thérapeutes présents » ---------- */

.mod-cvmtherapeutes {
	--cvm-teal: var(--vm-teal, #009fbb);
	--cvm-teal-dark: var(--vm-teal-dark, #007d94);
	--cvm-bg-soft: var(--vm-bg-soft, #f2f2f2);
	--cvm-radius: var(--vm-radius, 6px);
	/* Les positions du template n'ont pas de conteneur : on s'aligne
	   nous-memes sur la largeur de contenu du site. */
	max-width: var(--vm-content-width, 1300px);
	margin: 0 auto;
	padding: 1.5rem 16px;
}

.mod-cvmtherapeutes__title {
	margin: 0 0 .8rem;
	color: var(--cvm-teal);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mod-cvmtherapeutes__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mod-cvmtherapeutes__item {
	display: flex;
	align-items: center;
	gap: .8rem;
	flex: 1 1 16rem;
	max-width: 24rem;
	padding: .6rem .9rem;
	background: var(--cvm-bg-soft);
	border-radius: var(--cvm-radius);
}

.mod-cvmtherapeutes__photo {
	width: 3.2rem;
	height: 3.2rem;
	flex: none;
	object-fit: cover;
	border-radius: 50%;
}

.mod-cvmtherapeutes__body {
	min-width: 0;
}

.mod-cvmtherapeutes__name {
	display: block;
	font-weight: bold;
	line-height: 1.3;
}

.mod-cvmtherapeutes__name a {
	color: var(--cvm-teal-dark);
}

.mod-cvmtherapeutes__name a:hover,
.mod-cvmtherapeutes__name a:focus {
	color: var(--cvm-teal);
}

.mod-cvmtherapeutes__role,
.mod-cvmtherapeutes__hours {
	display: block;
	font-size: .85em;
	line-height: 1.35;
}

.mod-cvmtherapeutes__role {
	font-style: italic;
	color: #666;
}

.mod-cvmtherapeutes__slot + .mod-cvmtherapeutes__slot::before {
	content: ' · ';
}

.mod-cvmtherapeutes__empty {
	margin: 0;
	color: #666;
	font-style: italic;
}

/* ---------- Formulaire d'edition ---------- */

.cvm-edit {
	--cvm-champ-bord: #d8dee1;
	--cvm-carte-bord: #e5eaec;
	--cvm-libelle: #41525a;
	--cvm-secondaire: #7d8b91;
	max-width: 64rem;
	margin: 0 auto;
}

.cvm-edit__head {
	margin-bottom: 2rem;
}

.cvm-edit__eyebrow {
	margin: 0 0 .3rem;
	font-size: .78rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--cvm-teal);
}

.cvm-edit__title {
	margin: 0 0 .5rem;
	color: var(--cvm-text);
}

.cvm-edit__intro {
	margin: 0;
	color: var(--cvm-secondaire);
}

/* ---------- Cartes de section ---------- */

.cvm-card {
	background: #fff;
	border: 1px solid var(--cvm-carte-bord);
	border-radius: calc(var(--cvm-radius) * 2);
	padding: 1.75rem 2rem 1.5rem;
	margin: 0 0 1.25rem;
	box-shadow: 0 1px 2px rgba(16, 36, 44, .04);
}

/* Le filet colore tient lieu de puce : le titre reste court et lisible. */
.cvm-card__title {
	display: flex;
	align-items: center;
	gap: .65rem;
	margin: 0;
	font-size: .82rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--cvm-teal-dark);
}

.cvm-card__title::before {
	content: '';
	flex: none;
	width: 1.5rem;
	height: 2px;
	border-radius: 2px;
	background: var(--cvm-teal);
}

.cvm-card__hint {
	margin: .55rem 0 1.6rem;
	color: var(--cvm-secondaire);
	font-size: .88rem;
	line-height: 1.55;
}

.cvm-card--manager {
	border-color: color-mix(in srgb, var(--cvm-orange) 40%, transparent);
	background: color-mix(in srgb, var(--cvm-orange) 4%, #fff);
}

.cvm-card--manager .cvm-card__title {
	color: var(--cvm-orange);
}

.cvm-card--manager .cvm-card__title::before {
	background: var(--cvm-orange);
}

/* ---------- Champs ---------- */

.cvm-form {
	accent-color: var(--cvm-teal);
}

.cvm-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 1.75rem;
}

.cvm-form .control-group {
	margin-bottom: 1.35rem;
}

.cvm-form .control-label label,
.cvm-form .control-label legend {
	display: block;
	margin-bottom: .4rem;
	font-weight: bold;
	font-size: .85rem;
	color: var(--cvm-libelle);
}

.cvm-form .control-label .star,
.cvm-form label .required {
	color: var(--cvm-orange);
}

.cvm-form input[type=text],
.cvm-form input[type=email],
.cvm-form input[type=url],
.cvm-form input[type=tel],
.cvm-form input[type=number],
.cvm-form input[type=date],
.cvm-form input[type=time],
.cvm-form select,
.cvm-form textarea {
	width: 100%;
	padding: .6rem .8rem;
	border: 1px solid var(--cvm-champ-bord);
	border-radius: var(--cvm-radius);
	background: #fff;
	font: inherit;
	color: var(--cvm-text);
	transition: border-color .15s ease, box-shadow .15s ease;
}

.cvm-form input::placeholder,
.cvm-form textarea::placeholder {
	color: #a9b4b9;
}

.cvm-form input:focus,
.cvm-form select:focus,
.cvm-form textarea:focus {
	outline: none;
	border-color: var(--cvm-teal);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cvm-teal) 18%, transparent);
}

.cvm-form textarea {
	min-height: 4.5rem;
	line-height: 1.55;
	resize: vertical;
}

/* Texte d'aide sous le champ. */
.cvm-form .form-text,
.cvm-form .field-description,
.cvm-form small {
	display: block;
	margin-top: .35rem;
	font-size: .8rem;
	line-height: 1.45;
	color: var(--cvm-secondaire);
}

/* L'editeur riche suffit : personne n'a a basculer en HTML depuis le site. */
.cvm-form .toggle-editor {
	display: none;
}

.cvm-form .tox-tinymce {
	border-radius: var(--cvm-radius) !important;
	border-color: var(--cvm-champ-bord) !important;
}

/* Agrements : une pastille par case, l'etat coche se lit d'un coup d'oeil. */
.cvm-form fieldset.checkboxes {
	border: 0;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.cvm-form fieldset.checkboxes .form-check {
	display: flex;
	align-items: center;
	gap: .45rem;
	margin: 0;
	padding: .45rem .9rem;
	border: 1px solid var(--cvm-champ-bord);
	border-radius: 999px;
	background: #fff;
	transition: border-color .15s ease, background-color .15s ease;
}

.cvm-form fieldset.checkboxes .form-check:has(input:checked) {
	border-color: var(--cvm-teal);
	background: color-mix(in srgb, var(--cvm-teal) 8%, #fff);
}

.cvm-form fieldset.checkboxes .form-check:has(input:focus-visible) {
	outline: 2px solid var(--cvm-teal);
	outline-offset: 2px;
}

.cvm-form fieldset.checkboxes input {
	margin: 0;
}

.cvm-form fieldset.checkboxes label {
	margin: 0;
	font-weight: normal;
	font-size: .9rem;
	cursor: pointer;
}

/* ---------- Photo ---------- */

.cvm-identity {
	display: grid;
	grid-template-columns: 11rem minmax(0, 1fr);
	gap: 0 2rem;
	align-items: start;
}

.cvm-photo {
	margin: 0;
}

.cvm-photo__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 11rem;
	height: 11rem;
	overflow: hidden;
	border: 1px solid var(--cvm-carte-bord);
	border-radius: calc(var(--cvm-radius) * 2);
	background: var(--cvm-bg-soft);
}

.cvm-photo__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cvm-photo__frame svg {
	width: 3.5rem;
	height: 3.5rem;
	color: #c3cdd1;
}

/* Le champ natif est illisible : le libelle sert de bouton, l'input reste
   accessible au clavier mais hors du flux visuel. */
.cvm-photo__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	width: 11rem;
	margin-top: .65rem;
	padding: .5rem .6rem;
	border: 1px solid var(--cvm-teal);
	border-radius: var(--cvm-radius);
	background: #fff;
	color: var(--cvm-teal-dark);
	font-size: .72rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .04em;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .15s ease;
}

.cvm-photo__button:hover {
	background: color-mix(in srgb, var(--cvm-teal) 8%, #fff);
}

.cvm-photo__button:has(input:focus-visible) {
	outline: 2px solid var(--cvm-teal);
	outline-offset: 2px;
}

.cvm-photo__button input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cvm-photo__hint {
	width: 11rem;
	margin: .5rem 0 0;
	font-size: .76rem;
	line-height: 1.4;
	color: var(--cvm-secondaire);
}

.cvm-photo__hint--file {
	color: var(--cvm-teal-dark);
	font-weight: bold;
	overflow-wrap: anywhere;
}

/* ---------- Sous-formulaires (créneaux, exceptions) ---------- */

.cvm-subform {
	margin-bottom: 1.75rem;
}

.cvm-subform > .control-group {
	margin-bottom: 0;
}

.cvm-subform .table-responsive {
	overflow-x: auto;
	border: 1px solid var(--cvm-carte-bord);
	border-radius: calc(var(--cvm-radius) * 1.5);
	background: #fff;
}

.cvm-subform table {
	width: 100%;
	min-width: 40rem;
	margin: 0;
	border-collapse: collapse;
}

/* Les bordures viennent du conteneur : celles de Bootstrap feraient double. */
.cvm-subform table,
.cvm-subform th,
.cvm-subform td {
	border: 0;
}

.cvm-subform thead th {
	padding: .7rem .75rem;
	background: #f6f9fa;
	border-bottom: 1px solid var(--cvm-carte-bord);
	text-align: left;
	font-size: .72rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--cvm-secondaire);
	white-space: nowrap;
}

/* L'infobulle n'a pas de style sur le site : elle s'afficherait en clair sous
   l'en-tete. L'information est reprise dans le chapeau de la section. */
.cvm-subform th [role=tooltip],
.cvm-subform th [class^='icon-info'] {
	display: none;
}

.cvm-subform tbody td {
	padding: .5rem .75rem;
	vertical-align: middle;
}

.cvm-subform tbody tr + tr td {
	border-top: 1px solid #eef2f4;
}

.cvm-subform tbody tr:hover {
	background: #fbfdfd;
}

.cvm-subform td .control-group {
	margin: 0;
}

.cvm-subform td .control-label {
	display: none;
}

/* La ligne « aucune donnee » occupe toute la largeur : elle ne doit pas heriter
   du cadrage de la colonne des boutons. */
.cvm-subform th:last-child,
.cvm-subform tbody tr:not(.cvm-subform__empty) td:last-child {
	width: 5.5rem;
	white-space: nowrap;
	text-align: right;
}

.cvm-subform .btn-group {
	display: inline-flex;
	gap: .3rem;
}

.cvm-subform .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 1px solid var(--cvm-champ-bord);
	border-radius: var(--cvm-radius);
	background: #fff;
	color: var(--cvm-secondaire);
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.cvm-subform .btn:hover {
	border-color: var(--cvm-teal);
	color: var(--cvm-teal-dark);
	background: color-mix(in srgb, var(--cvm-teal) 8%, #fff);
}

.cvm-subform .group-add {
	border-color: color-mix(in srgb, var(--cvm-teal) 35%, #fff);
	color: var(--cvm-teal-dark);
}

.cvm-subform .group-remove:hover {
	border-color: #d1483c;
	color: #b3261e;
	background: #fdf3f2;
}

/* L'ordre des absences n'a pas de sens : elles sont triees par date. La
   poignee de deplacement n'aurait rien a deplacer. */
.cvm-subform .group-move {
	display: none;
}

/* Le site ne charge pas la police d'icones de l'administration : les glyphes
   sont dessines ici, sinon les boutons resteraient vides. */
.cvm-subform .btn > span[class^='icon-'] {
	display: block;
	width: 1rem;
	height: 1rem;
	background-color: currentColor;
	-webkit-mask: center / contain no-repeat;
	mask: center / contain no-repeat;
}

.cvm-subform .btn > span.icon-plus {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7 1.5h2V7h5.5v2H9v5.5H7V9H1.5V7H7z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M7 1.5h2V7h5.5v2H9v5.5H7V9H1.5V7H7z'/%3E%3C/svg%3E");
}

.cvm-subform .btn > span.icon-minus {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 7h13v2h-13z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 7h13v2h-13z'/%3E%3C/svg%3E");
}

.cvm-subform .btn > span.icon-arrows-alt {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg%3E%3Ccircle cx='6' cy='3' r='1.4'/%3E%3Ccircle cx='6' cy='8' r='1.4'/%3E%3Ccircle cx='6' cy='13' r='1.4'/%3E%3Ccircle cx='11' cy='3' r='1.4'/%3E%3Ccircle cx='11' cy='8' r='1.4'/%3E%3Ccircle cx='11' cy='13' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg%3E%3Ccircle cx='6' cy='3' r='1.4'/%3E%3Ccircle cx='6' cy='8' r='1.4'/%3E%3Ccircle cx='6' cy='13' r='1.4'/%3E%3Ccircle cx='11' cy='3' r='1.4'/%3E%3Ccircle cx='11' cy='8' r='1.4'/%3E%3Ccircle cx='11' cy='13' r='1.4'/%3E%3C/g%3E%3C/svg%3E");
}

/* Ligne posee par edit-form.js quand le tableau ne contient rien. */
.cvm-subform__empty td {
	padding: 1.15rem .75rem;
	text-align: center;
	color: var(--cvm-secondaire);
	font-size: .88rem;
}

/* ---------- Disponibilite publique d'une salle ---------- */

/* Un calendrier n'a pas besoin de toute la largeur du texte : au-dela, les
   journees s'etirent en bandes et la lecture par semaine se perd. */
.cvm-dispo {
	--cvm-dispo-libre: var(--cvm-teal, #009fbb);
	--cvm-dispo-prise: #c7ced1;
	max-width: 46rem;
	margin: 1.5rem auto 2rem;
}

/* ---- Barre de navigation ---- */

.cvm-dispo__barre {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: .75rem;
}

.cvm-dispo__mois {
	margin: 0;
	min-width: 11rem;
	text-align: center;
	font-size: 1.05rem;
	font-weight: bold;
	color: var(--cvm-teal-dark, #007d94);
	text-transform: capitalize;
}

.cvm-dispo__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 1px solid var(--cvm-carte-bord, #e5eaec);
	border-radius: 50%;
	background: #fff;
	color: var(--cvm-teal-dark, #007d94);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color .15s ease, background-color .15s ease;
}

.cvm-dispo__nav:hover:not(:disabled) {
	border-color: var(--cvm-teal, #009fbb);
	background: color-mix(in srgb, var(--cvm-teal, #009fbb) 8%, #fff);
}

.cvm-dispo__nav:disabled {
	opacity: .35;
	cursor: default;
}

/* ---- Grille du mois ---- */

.cvm-mois__entete,
.cvm-mois__jours {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.cvm-mois__entete {
	margin-bottom: 4px;
	font-size: .74rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #8b979d;
	text-align: center;
}

.cvm-mois__entete abbr {
	text-decoration: none;
}

.cvm-jour {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	padding: .4rem .35rem .45rem;
	border: 1px solid #eef2f3;
	border-radius: 6px;
	background: #fff;
	min-height: 3.4rem;
}

.cvm-jour--vide {
	border-color: transparent;
	background: none;
}

.cvm-jour__numero {
	font-size: .8rem;
	font-weight: bold;
	color: #5f6b70;
	text-align: right;
	line-height: 1;
}

/* Les trois sections de location, empilees comme dans la journee. */
.cvm-jour__sections {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: auto;
}

.cvm-jour__section {
	display: block;
	height: .4rem;
	border-radius: 2px;
	background: #e8edef;
}

.cvm-jour__section.est-libre {
	background: var(--cvm-dispo-libre);
}

/* Journee passee : lisible mais visiblement hors sujet. */
.cvm-jour--passe {
	background: #fafbfb;
	border-color: #f2f5f6;
}

.cvm-jour--passe .cvm-jour__numero {
	color: #b8c2c6;
}

.cvm-jour--passe .cvm-jour__section {
	background: #f0f3f4;
}

.cvm-jour--complet {
	background: #fbfcfc;
}

/* Jour de fermeture : rien a proposer, et cela doit se voir autrement qu'un
   creneau occupe. */
.cvm-jour--ferme {
	background: repeating-linear-gradient(
		-45deg,
		#fafbfb,
		#fafbfb 5px,
		#f2f5f6 5px,
		#f2f5f6 10px
	);
	border-color: #eef2f3;
}

.cvm-jour--ferme .cvm-jour__numero {
	color: #c3cdd1;
}

.cvm-jour--ferme .cvm-jour__sections {
	visibility: hidden;
}

/* ---- Legende ---- */

.cvm-dispo__legende {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem 1.75rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	font-size: .82rem;
	color: #6b7a80;
}

.cvm-dispo__legende li {
	display: flex;
	align-items: center;
	gap: .45rem;
}

.cvm-jour__sections--legende {
	flex-direction: column;
	width: 1rem;
	margin: 0;
}

.cvm-dispo__cle .cvm-jour__section {
	width: 1rem;
}

.cvm-dispo__heures {
	color: #a2acb1;
}

.cvm-dispo__fenetres {
	margin-top: 1rem;
	padding: .75rem 1rem;
	border-radius: 8px;
	border: 1px solid color-mix(in srgb, var(--cvm-orange, #de843a) 25%, #fff);
	background: color-mix(in srgb, var(--cvm-orange, #de843a) 7%, #fff);
	font-size: .88rem;
}

.cvm-dispo__fenetres-titre {
	margin: 0 0 .3rem;
	font-weight: bold;
	color: var(--cvm-orange, #de843a);
}

.cvm-dispo__fenetres ul {
	margin: 0;
	padding-left: 1.1rem;
	color: #5f6b70;
}

.cvm-dispo__note {
	margin: 1rem 0 0;
	font-weight: bold;
	color: var(--cvm-teal-dark, #007d94);
}

@media (max-width: 40rem) {
	.cvm-jour {
		min-height: 2.9rem;
		padding: .3rem .25rem .35rem;
	}

	.cvm-jour__numero {
		font-size: .72rem;
	}

	.cvm-dispo__legende {
		gap: .4rem 1rem;
	}
}

/* ---------- Grille de reservation des salles ---------- */

/* Ce bloc sert aussi en administration, ou les variables du site n'existent
   pas : chaque valeur porte donc son repli. */
.cvm-planning {
	--cvm-p-bord: var(--cvm-carte-bord, #e5eaec);
	--cvm-p-accent: var(--cvm-salle-couleur, #0f9d8f);
	--cvm-p-texte: var(--cvm-secondaire, #7d8b91);
	margin: 0 0 1rem;
}

.cvm-salle {
	border: 1px solid var(--cvm-p-bord);
	border-radius: 10px;
	margin-bottom: .6rem;
	background: #fff;
}

.cvm-salle__titre {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .75rem 1rem;
	cursor: pointer;
	list-style: none;
	font-size: .92rem;
	font-weight: bold;
}

.cvm-salle__titre::-webkit-details-marker {
	display: none;
}

/* Chevron pilote par l'etat d'ouverture du <details>. */
.cvm-salle__titre::after {
	content: '';
	width: .5rem;
	height: .5rem;
	margin-left: auto;
	border-right: 2px solid var(--cvm-p-texte);
	border-bottom: 2px solid var(--cvm-p-texte);
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform .15s ease;
}

.cvm-salle[open] > .cvm-salle__titre::after {
	transform: rotate(-135deg) translate(-2px, -2px);
}

.cvm-salle__puce {
	flex: none;
	width: .7rem;
	height: .7rem;
	border-radius: 50%;
}

.cvm-salle__nom {
	flex: none;
}

.cvm-salle__compte {
	margin-left: .5rem;
	font-size: .78rem;
	font-weight: normal;
	color: var(--cvm-p-texte);
}

.cvm-salle__corps {
	padding: 0 1rem 1rem;
	overflow-x: auto;
}

.cvm-planning__grille {
	width: 100%;
	border-collapse: separate;
	border-spacing: 3px;
	table-layout: fixed;
	min-width: 26rem;
}

.cvm-planning__grille th {
	font-size: .72rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--cvm-p-texte);
	padding: 0;
	text-align: center;
	background: none;
	border: 0;
}

/* En table-layout fixe, la largeur d'une colonne se decide sur la premiere
   rangee : c'est l'en-tete qui la porte. */
.cvm-planning__coin {
	width: 8.5rem;
}

/* Le titre de cette colonne n'est utile qu'aux lecteurs d'ecran. Le template
   du site ne fournit pas d'utilitaire pour cela. */
.cvm-planning__coin > span {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Colonne des creneaux : l'intitule et son horaire tiennent sur deux lignes
   serrees, avec une respiration avant la premiere case. */
.cvm-planning__grille tbody th {
	padding: .15rem 1.1rem .15rem 0;
	text-align: left;
	white-space: nowrap;
	text-transform: none;
	letter-spacing: 0;
	font-size: .85rem;
	color: var(--cvm-text, #333);
	line-height: 1.25;
	vertical-align: middle;
}

.cvm-planning__heures {
	display: block;
	font-size: .7rem;
	font-weight: normal;
	letter-spacing: .01em;
	color: var(--cvm-p-texte);
}

.cvm-planning__grille thead th abbr {
	text-decoration: none;
	cursor: help;
}

/* La journee entiere est une formule a part : elle se detache des sections. */
.cvm-planning__ligne--jour td {
	padding-bottom: .4rem;
}

.cvm-planning__ligne--jour .cvm-case {
	height: 2.1rem;
}

.cvm-planning__ligne--jour th {
	font-weight: bold;
}

.cvm-planning__grille td {
	padding: 0;
	border: 0;
	background: none;
}

.cvm-case {
	display: block;
	width: 100%;
	height: 2.4rem;
	padding: 0;
	border: 1px solid var(--cvm-p-bord);
	border-radius: 5px;
	background: #fbfdfd;
	cursor: pointer;
	font: inherit;
	font-size: .68rem;
	line-height: 1;
	color: #fff;
	transition: background-color .1s ease, border-color .1s ease;
}

.cvm-case:hover {
	border-color: var(--cvm-p-accent);
	background: color-mix(in srgb, var(--cvm-p-accent) 12%, #fff);
}

.cvm-case[aria-pressed='true'] {
	background: var(--cvm-p-accent);
	border-color: var(--cvm-p-accent);
}

.cvm-case:focus-visible {
	outline: 2px solid var(--cvm-p-accent);
	outline-offset: 1px;
}

/* Case tenue par un autre therapeute : hachures, non selectionnable, mais
   cliquable pour ouvrir le contact. */
.cvm-case--prise {
	cursor: help;
	color: #6b7a80;
	border-color: #dfe5e7;
	background: repeating-linear-gradient(
		-45deg,
		#f1f4f5,
		#f1f4f5 4px,
		#e6ebed 4px,
		#e6ebed 8px
	);
}

.cvm-case--prise:hover {
	border-color: #c3cdd1;
	background: repeating-linear-gradient(
		-45deg,
		#eaeff1,
		#eaeff1 4px,
		#dee5e7 4px,
		#dee5e7 8px
	);
}

.cvm-planning__libre {
	margin-top: 1rem;
	padding: .75rem 1rem;
	border-radius: 8px;
	background: color-mix(in srgb, var(--cvm-orange, #de843a) 7%, #fff);
	border: 1px solid color-mix(in srgb, var(--cvm-orange, #de843a) 25%, #fff);
	font-size: .85rem;
}

.cvm-planning__libre-titre {
	margin: 0 0 .35rem;
	font-weight: bold;
	color: var(--cvm-orange, #de843a);
}

.cvm-planning__libre ul {
	margin: 0;
	padding-left: 1.1rem;
	color: #5f6b70;
}

.cvm-planning__contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem 1rem;
	margin-top: .75rem;
	padding: .75rem 1rem;
	border: 1px solid var(--cvm-p-bord);
	border-left: 3px solid var(--cvm-teal, #009fbb);
	border-radius: 8px;
	background: #f7fbfc;
	font-size: .88rem;
}

/* display:flex l'emporterait sur la regle par defaut de [hidden]. */
.cvm-planning__contact[hidden] {
	display: none;
}

.cvm-planning__contact-texte {
	margin: 0;
	font-weight: bold;
}

.cvm-planning__contact-lien {
	color: var(--cvm-teal-dark, #007d94);
	font-weight: bold;
}

.cvm-planning__vide {
	margin: 0;
	color: var(--cvm-p-texte);
	font-style: italic;
}

/* ---------- Les deux modes de reservation, cote a cote ---------- */

/* En dessous de deux colonnes confortables, l'empilement reste plus lisible
   qu'une paire de grilles serrees. */
/* Etroit : les deux modes s'empilent, rien a aligner. */
.cvm-reservations__titre {
	margin: 0 0 .35rem;
	font-size: .95rem;
	font-weight: bold;
	color: var(--cvm-libelle, #41525a);
}

.cvm-reservations__aide {
	margin: 0 0 .85rem;
	font-size: .82rem;
	line-height: 1.45;
	color: var(--cvm-secondaire, #7d8b91);
}

.cvm-reservations__corps {
	min-width: 0;
	margin-bottom: 1.5rem;
}

/* Le libelle et l'aide d'origine feraient doublon. */
.cvm-reservations .control-label,
.cvm-reservations .hide-aware-inline-help,
.cvm-reservations .controls > .form-text {
	display: none;
}

/* Large : trois rangees communes — titre, explication, tableau — pour que les
   deux colonnes demarrent a la meme hauteur quelle que soit la longueur des
   phrases. Les blocs de mode s'effacent et chaque enfant est place a la main :
   laisses au placement automatique, ils se rangeraient a la file. */
@media (min-width: 62rem) {
	.cvm-reservations {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto 1fr;
		column-gap: 2rem;
		align-items: start;
	}

	.cvm-reservations__mode {
		display: contents;
	}

	.cvm-reservations__mode:first-child > * {
		grid-column: 1;
	}

	.cvm-reservations__mode:last-child > * {
		grid-column: 2;
	}

	.cvm-reservations__titre {
		grid-row: 1;
	}

	.cvm-reservations__aide {
		grid-row: 2;
	}

	.cvm-reservations__corps {
		grid-row: 3;
	}
}

/* Les marges propres a chaque bloc decaleraient le haut des deux cadres : la
   rangee de la grille suffit a les espacer. */
.cvm-reservations .cvm-planning,
.cvm-reservations .cvm-dates {
	max-width: none;
	margin-top: 0;
	margin-bottom: 0;
}

.cvm-reservations .control-group {
	margin-bottom: 0;
}

/* L'explication se lit avant le tableau, pas apres : Joomla la place en
   dernier, l'ordre visuel la remonte. */
.cvm-subform .controls {
	display: flex;
	flex-direction: column;
}

.cvm-subform .controls > .hide-aware-inline-help,
.cvm-subform .controls > .form-text {
	order: -1;
	display: block;
	margin: 0 0 .85rem;
}

.cvm-subform .controls .form-text {
	margin: 0;
}

/* ---------- Reservation de dates precises ---------- */

.cvm-dates {
	--cvm-p-bord: var(--cvm-carte-bord, #e5eaec);
	--cvm-p-texte: var(--cvm-secondaire, #7d8b91);
	max-width: 46rem;
	margin: 1rem 0 0;
	padding: 1rem 1.1rem 1.2rem;
	border: 1px solid var(--cvm-p-bord);
	border-radius: 10px;
	background: #fff;
}

.cvm-dates__barre {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .6rem;
	margin-bottom: .9rem;
}

.cvm-dates__salle-label {
	margin: 0;
	font-size: .85rem;
	font-weight: bold;
	color: var(--cvm-libelle, #41525a);
}

.cvm-dates__salle {
	width: auto;
	min-width: 14rem;
	padding: .4rem .6rem;
	border: 1px solid var(--cvm-champ-bord, #d8dee1);
	border-radius: 6px;
	font: inherit;
	background: #fff;
}

.cvm-dates__compte {
	margin-left: auto;
	font-size: .82rem;
	color: var(--cvm-p-texte);
}

.cvm-dates__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: .6rem;
}

.cvm-dates__mois {
	margin: 0;
	min-width: 10rem;
	text-align: center;
	font-weight: bold;
	color: var(--cvm-teal-dark, #007d94);
	text-transform: capitalize;
}

.cvm-jour--reservable {
	min-height: 3.6rem;
}

/* Pastilles cliquables : une par section de location. */
.cvm-jour__section--bouton {
	width: 100%;
	padding: 0;
	border: 0;
	cursor: pointer;
	transition: background-color .12s ease;
}

/* Les etats valent pour les cases comme pour les pastilles de la legende ;
   ils sont limites au calendrier de reservation, ou « libre » veut dire
   « disponible a la selection » et non « libre a la location ». */
.cvm-dates .cvm-jour__section.est-libre {
	background: #e8edef;
}

.cvm-dates .cvm-jour__section--bouton.est-libre:hover {
	background: color-mix(in srgb, var(--cvm-teal, #009fbb) 35%, #fff);
}

.cvm-dates .cvm-jour__section.est-choisie {
	background: var(--cvm-teal, #009fbb);
}

.cvm-dates .cvm-jour__section.est-mienne {
	background: color-mix(in srgb, var(--cvm-teal, #009fbb) 35%, #fff);
}

.cvm-dates .cvm-jour__section.est-prise {
	background: repeating-linear-gradient(-45deg, #eef2f3, #eef2f3 3px, #e2e8ea 3px, #e2e8ea 6px);
}

.cvm-dates .cvm-jour__section.est-fermee {
	background: #f7f9fa;
}

.cvm-jour__section--bouton.est-mienne {
	cursor: default;
}

.cvm-jour__section--bouton.est-prise,
.cvm-jour__section--bouton.est-fermee {
	cursor: not-allowed;
}

.cvm-dates__legende {
	margin: .9rem 0 0;
	font-size: .8rem;
	color: var(--cvm-p-texte);
}

.cvm-dates__cles,
.cvm-dates__etats {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem 1.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cvm-dates__etats {
	margin-top: .5rem;
	padding-top: .5rem;
	border-top: 1px solid var(--cvm-p-bord);
}

.cvm-dates__cles li,
.cvm-dates__etats li {
	display: flex;
	align-items: center;
	gap: .45rem;
}

/* Miniature d'une journee : c'est la position de la barre allumee qui dit de
   quel creneau il s'agit. */
.cvm-dates__mini {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 1.1rem;
	padding: 2px;
	border: 1px solid #eef2f3;
	border-radius: 3px;
	background: #fff;
}

.cvm-dates__mini i {
	display: block;
	height: .28rem;
	border-radius: 1px;
	background: #e8edef;
}

.cvm-dates__mini i.est-libre {
	background: var(--cvm-teal, #009fbb);
}

.cvm-dates__etats .cvm-jour__section {
	width: 1.4rem;
	height: .5rem;
	flex: none;
}

/* ---------- Barre d'action ---------- */

.cvm-edit__bar {
	position: sticky;
	bottom: 0;
	z-index: 5;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	align-items: center;
	margin-top: 1.5rem;
	padding: 1.9rem 0 1.25rem;
	background: linear-gradient(to top, #fff 0, #fff 74%, rgba(255, 255, 255, 0) 100%);
}

.cvm-edit__bar .cvm-btn {
	cursor: pointer;
	font: inherit;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: .5px;
	font-weight: bold;
}

.cvm-edit__bar .cvm-btn--block {
	width: auto;
	min-width: 14rem;
}

/* Pied de fiche : retour a gauche, action principale a droite. */
.cvm-therapeute__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem 1rem;
	margin-top: 2.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--cvm-carte-bord, #e5eaec);
}

.cvm-retour {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .5rem 1.1rem .5rem .85rem;
	border: 1px solid #dfe5e8;
	border-radius: 999px;
	background: #fff;
	color: var(--cvm-teal-dark);
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.cvm-retour:hover,
.cvm-retour:focus-visible {
	background: var(--cvm-teal);
	border-color: var(--cvm-teal);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 159, 187, .25);
}

.cvm-retour__fleche {
	flex: none;
	transition: transform .15s ease;
}

.cvm-retour:hover .cvm-retour__fleche,
.cvm-retour:focus-visible .cvm-retour__fleche {
	transform: translateX(-3px);
}

@media (prefers-reduced-motion: reduce) {
	.cvm-retour,
	.cvm-retour__fleche {
		transition: none;
	}
}

@media (max-width: 48rem) {
	.cvm-grid {
		grid-template-columns: 1fr;
	}

	.cvm-identity {
		grid-template-columns: 1fr;
		gap: 1.5rem 0;
	}

	.cvm-card {
		padding: 1.35rem 1.25rem 1.1rem;
	}

	.cvm-edit__bar {
		flex-direction: column;
		align-items: stretch;
	}

	.cvm-edit__bar .cvm-btn--block {
		width: 100%;
	}
}

/* ---------- Divers ---------- */

.cvm-therapeutes__pagination {
	margin-top: 1.5rem;
}

@media (max-width: 640px) {
	.cvm-therapies {
		columns: 1;
	}

	.cvm-therapeute__aside {
		max-width: none;
	}
}

/* ---------- Impression ---------- */

@media print {
	.cvm-share,
	.cvm-actions,
	.cvm-therapeute__footer,
	.cvm-therapeute__more {
		display: none;
	}

	.cvm-therapeute {
		border-bottom: 0;
		page-break-inside: avoid;
	}

	.cvm-presence {
		background: none;
		border: 1px solid #ccc;
	}

	.cvm-therapies {
		columns: 2;
	}
}
