@charset "UTF-8";
/*
 * Design system Sporthéna — structure Sass reprise du projet KiTéOHM / mdcs (variables,
 * fonctions, mixins, mêmes composants : navigation, tableaux, formulaires, boutons), avec la
 * couleur d'accent officielle #B31B72 (magenta du logo) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Manrope-regular-E_Pw0PR.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Manrope-medium-kwLhv9o.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Manrope-semibold-kXlHD9X.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Manrope-bold-cOVBz45.woff2") format("woff2");
}
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 1.4rem;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1f2933;
  background-color: #fff;
}

h1,
h2,
h3 {
  margin: 0 0 1.6rem;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  position: relative;
  display: grid;
  grid-template: "header" 6.4rem "main" 1fr/1fr;
  width: 100%;
  min-height: 100vh;
}

a {
  color: #b31b72;
  text-decoration: none;
}
a:not(.no-link-style) {
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor calc(100% - 2px), currentColor calc(100% - 1px), transparent 1px);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.15s ease;
}
a:not(.no-link-style):hover {
  background-size: 100% 100%;
}

hr {
  height: 1px;
  margin: 2.4rem 0;
  border: 0;
  border-top: 1px dashed #e5e7eb;
}

*:focus-visible {
  border-radius: 0.6rem;
  box-shadow: 0 1px 12px rgba(179, 27, 114, 0.18);
  outline: 1px solid #b31b72;
}

::selection {
  color: #fff;
  background-color: #b31b72;
}

@media (min-width: 1280px) {
  .page {
    grid-template: "header header" 8rem "navigation main" 1fr/30rem 1fr;
  }
}
.ts-control {
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 8px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.ts-wrapper.multi.has-items .ts-control {
  padding: 5px 8px 2px;
}

.full .ts-control {
  background-color: #fff;
}

.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}

.focus .ts-control {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.ts-control > * {
  display: inline-block;
  vertical-align: initial;
}

.ts-wrapper.multi .ts-control > div {
  background: #1da7ee;
  border: 1px solid #0073bb;
  color: #fff;
  cursor: pointer;
  margin: 0 3px 3px 0;
  overflow: auto;
  padding: 2px 6px;
}

.ts-wrapper.multi .ts-control > div.active {
  background: #92c836;
  border: 1px solid #00578d;
  color: #fff;
}

.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  background: #d2d2d2;
  border: 1px solid #aaa;
  color: #fff;
}

.ts-control > input {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  display: inline-block !important;
  flex: 1 1 auto;
  line-height: inherit !important;
  margin: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  min-height: 0 !important;
  min-width: 7rem;
  padding: 0 !important;
  text-indent: 0 !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.ts-control > input::-ms-clear {
  display: none;
}

.ts-control > input:focus {
  outline: none !important;
}

.has-items .ts-control > input {
  margin: 0 4px !important;
}

.ts-control.rtl {
  text-align: right;
}

.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}

.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}

.disabled .ts-control {
  background-color: #fafafa;
  opacity: 0.5;
}

.input-hidden .ts-control > input {
  left: -10000px;
  opacity: 0;
  position: absolute;
}

.ts-dropdown {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 0 0 3px 3px;
  border-top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  left: 0;
  margin: 0.25rem 0 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}

.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.ts-dropdown .create, .ts-dropdown .no-results, .ts-dropdown .optgroup-header, .ts-dropdown .option {
  padding: 5px 8px;
}

.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.ts-dropdown [data-selectable].option {
  cursor: pointer;
  opacity: 1;
}

.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0;
}

.ts-dropdown .optgroup-header {
  background: #fff;
  color: #303030;
  cursor: default;
}

.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.ts-dropdown .active.create {
  color: #495c68;
}

.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.ts-dropdown .spinner {
  display: inline-block;
  height: 30px;
  margin: 5px 8px;
  width: 30px;
}

.ts-dropdown .spinner:after {
  animation: lds-dual-ring 1.2s linear infinite;
  border-color: #d0d0d0 transparent;
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  content: " ";
  display: block;
  height: 24px;
  margin: 3px;
  width: 24px;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.ts-dropdown-content {
  max-height: 200px;
  overflow: hidden auto;
  scroll-behavior: smooth;
}

.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}

.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}

.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}

.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}

.plugin-clear_button {
  --ts-pr-clear-button:1em;
}

.plugin-clear_button .clear-button {
  background: transparent !important;
  cursor: pointer;
  margin-right: 0 !important;
  opacity: 0;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}

.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(var(--ts-pr-caret), 8px);
}

.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  background: color-mix(#fff, #d0d0d0, 85%);
  border-bottom: 1px solid #d0d0d0;
  border-radius: 3px 3px 0 0;
  padding: 10px 8px;
  position: relative;
}

.ts-wrapper .dropdown-header-close {
  color: #303030;
  font-size: 20px !important;
  line-height: 20px;
  margin-top: -12px;
  opacity: 0.4;
  position: absolute;
  right: 8px;
  top: 50%;
}

.ts-wrapper .dropdown-header-close:hover {
  color: #000;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  border: 1px solid #d0d0d0;
  box-shadow: none;
}

.plugin-dropdown_input .dropdown-input {
  background: transparent;
  border: solid #d0d0d0;
  border-width: 0 0 1px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  display: block;
  padding: 8px;
  width: 100%;
}

.plugin-dropdown_input .items-placeholder {
  border: 0 !important;
  box-shadow: none !important;
  width: 100%;
}

.plugin-dropdown_input.dropdown-active .items-placeholder, .plugin-dropdown_input.has-items .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0;
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0;
}

.ts-wrapper.plugin-remove_button .item {
  align-items: center;
  display: inline-flex;
}

.ts-wrapper.plugin-remove_button .item .remove {
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  padding: 0 6px;
  text-decoration: none;
  vertical-align: middle;
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}

.ts-wrapper.plugin-remove_button .remove-single {
  font-size: 23px;
  position: absolute;
  right: 0;
  top: 0;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #0073bb;
  margin-left: 6px;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #00578d;
}

.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: #aaa;
}

.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}

.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #0073bb;
  margin-right: 6px;
}

.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #00578d;
}

.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: #aaa;
}

:root {
  --ts-pr-clear-button:0px;
  --ts-pr-caret:0px;
  --ts-pr-min:.75rem;
}

.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-control:not(.rtl) {
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-control.rtl {
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}

.ts-wrapper {
  position: relative;
}

.ts-control, .ts-control input, .ts-dropdown {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}

.ts-control, .ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.ts-wrapper.single .ts-control {
  --ts-pr-caret:2rem;
}

.ts-wrapper.single .ts-control:after {
  border-color: gray transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: " ";
  display: block;
  height: 0;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  width: 0;
}

.ts-wrapper.single .ts-control:not(.rtl):after {
  right: 15px;
}

.ts-wrapper.single .ts-control.rtl:after {
  left: 15px;
}

.ts-wrapper.single.dropdown-active .ts-control:after {
  border-color: transparent transparent gray;
  border-width: 0 5px 5px;
  margin-top: -4px;
}

.ts-wrapper.single.input-active .ts-control, .ts-wrapper.single.input-active .ts-control input {
  cursor: text;
}

.ts-wrapper {
  display: flex;
  min-height: 36px;
}

.ts-wrapper.multi.has-items .ts-control {
  padding-left: 5px;
  --ts-pr-min:5px;
}

.ts-wrapper.multi .ts-control [data-value] {
  background-color: color-mix(#1da7ee, #178ee9, 60%);
  background-image: linear-gradient(180deg, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px hsla(0, 0%, 100%, 0.03);
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
}

.ts-wrapper.multi .ts-control [data-value].active {
  background-color: color-mix(#008fd8, #0075cf, 60%);
  background-image: linear-gradient(180deg, #008fd8, #0075cf);
  background-repeat: repeat-x;
}

.ts-wrapper.multi.disabled .ts-control [data-value] {
  background: none;
  box-shadow: none;
  color: #999;
  text-shadow: none;
}

.ts-wrapper.multi.disabled .ts-control [data-value], .ts-wrapper.multi.disabled .ts-control [data-value] .remove {
  border-color: #e6e6e6;
}

.ts-wrapper.multi.disabled .ts-control [data-value] .remove {
  background: none;
}

.ts-wrapper.single .ts-control {
  background-color: color-mix(#fefefe, #f2f2f2, 60%);
  background-image: linear-gradient(180deg, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 hsla(0, 0%, 100%, 0.8);
}

.ts-dropdown.single, .ts-wrapper.single .ts-control {
  border-color: #b8b8b8;
}

.dropdown-active .ts-control {
  border-radius: 3px 3px 0 0;
}

.ts-dropdown .optgroup-header {
  font-size: 0.85em;
  font-weight: 700;
  padding-top: 7px;
}

.ts-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

.ts-dropdown .optgroup:first-child {
  border-top: 0;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
button {
  cursor: pointer;
}

.icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  color: #6b7280;
}
.icon--sm {
  width: 1.4rem;
  height: 1.4rem;
  min-width: 1.4rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  text-align: center;
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  appearance: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.button .icon {
  width: 1.6rem;
  min-width: 1.6rem;
  height: 1.6rem;
}
.button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--xs {
  padding: 0.4rem 1.2rem;
  font-size: 1.2rem;
}
.button--full-width {
  display: flex;
  width: 100%;
}
.button--simple {
  padding: 0;
  border: 0;
}
.button--primary {
  color: #fff;
  background-color: #b31b72;
  border-color: #b31b72;
}
.button--primary .icon {
  color: #fff;
}
.button--primary:hover {
  background-color: #871456;
  border-color: #871456;
}
.button--outline-primary {
  color: #b31b72;
  border-color: #b31b72;
}
.button--outline-primary .icon {
  color: #b31b72;
}
.button--outline-primary:hover {
  color: #871456;
  border-color: #871456;
}
.button--danger {
  color: #fff;
  background-color: #b91c1c;
  border-color: #b91c1c;
}
.button--danger .icon {
  color: #fff;
}
.button--danger:hover {
  background-color: #8d1515;
  border-color: #8d1515;
}
.button--outline-danger {
  color: #b91c1c;
  border-color: #b91c1c;
}
.button--outline-danger .icon {
  color: #b91c1c;
}
.button--outline-danger:hover {
  color: #8d1515;
  border-color: #8d1515;
}

a.button {
  background-image: none;
}

.button--close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #6b7280;
}
.button--close:hover {
  color: #b31b72;
}

.button--burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.4rem;
  width: 2rem;
  height: 2rem;
}
.button--burger span {
  display: block;
  height: 0.2rem;
  background-color: #1f2933;
  border-radius: 1px;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
input,
select,
textarea {
  width: 100%;
  margin: 0;
  font: inherit;
  color: inherit;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

label {
  display: block;
  margin-bottom: 0.8rem;
}
label.required::after {
  content: " *";
  color: #b91c1c;
}

.input__label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: #3f3f46;
}
.input__label.required::after {
  content: " *";
  color: #b91c1c;
}

.input__field {
  display: block;
  width: 100%;
  padding: 1.2rem;
  font-weight: 400;
  background-color: #f7f8fa;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  appearance: none;
}
.input__field::placeholder {
  color: #6b7280;
  opacity: 0.6;
}
.input__field:focus, .input__field:focus-within {
  background-color: #fff;
  border-color: #b31b72;
  box-shadow: 0 1px 12px rgba(179, 27, 114, 0.18);
  outline: none;
}
.input__field[disabled] {
  background-color: #dee2ea;
  border-color: #ced2d9;
  cursor: default;
}

select.input__field {
  padding-right: 3.2rem;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 1.4rem) center, calc(100% - 0.9rem) center;
  background-repeat: no-repeat;
  background-size: 0.5rem 0.5rem, 0.5rem 0.5rem;
}

.input__help,
.input__error {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: #6b7280;
}

.input__error {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
  color: #b91c1c;
}
.input__error .icon {
  width: 1.4rem;
  min-width: 1.4rem;
  height: 1.4rem;
}

.input-checkbox {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}

.input-checkbox__field {
  width: 1.8rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.4rem;
  cursor: pointer;
  appearance: none;
}
.input-checkbox__field:checked {
  background-color: #b31b72;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.99991 11.17L1.82991 6.99997L0.409912 8.40997L5.99991 14L17.9999 1.99997L16.5899 0.589966L5.99991 11.17Z' fill='%23ffffff'/%3E%3C/svg%3E");
  border-color: #b31b72;
}

.input-checkbox__label {
  margin-bottom: 0;
  font-weight: 500;
  color: #3f3f46;
  cursor: pointer;
}

.formContent form {
  padding: 2.4rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
}
.formContent .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.formContent .row > div {
  width: calc(50% - 0.8rem);
}
.formContent .submit {
  margin-top: 0.8rem;
}

@media (max-width: 767px) {
  .formContent .row > div {
    width: 100%;
  }
}
/*
 * Tom Select (repris de mdcs) — surcharge du thème par défaut (assets/styles/vendor/_tom-select.scss)
 * avec les couleurs KiTéOHM, pour que chaque <select> ressemble à .input__field.
 */
.ts-wrapper {
  font-family: inherit;
  font-size: 1.4rem;
}

.ts-wrapper.input__field {
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.ts-wrapper.input__field:focus, .ts-wrapper.input__field:focus-within {
  background: none;
  border: none;
  box-shadow: none;
}

.ts-control,
.ts-wrapper.single .ts-control,
.ts-wrapper.multi .ts-control {
  background: #f7f8fa;
  border-color: #e5e7eb;
  box-shadow: none;
}

.ts-wrapper.single .ts-control:after {
  border-color: #6b7280 transparent transparent;
}

.focus .ts-control,
.ts-wrapper.single.dropdown-active .ts-control {
  background-color: #fff;
  border-color: #b31b72;
  box-shadow: 0 1px 12px rgba(179, 27, 114, 0.18);
}

.ts-dropdown {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 1px 12px rgba(179, 27, 114, 0.18);
}

.ts-dropdown .optgroup-header {
  background: #fff;
  color: #6b7280;
}

.ts-dropdown .active {
  background-color: #f6e4ee;
  color: #1f2933;
}

.ts-dropdown .create,
.ts-dropdown .no-results {
  color: #6b7280;
}

.ts-wrapper.multi .ts-control > div,
.ts-wrapper.multi .ts-control [data-value] {
  background: #f6e4ee;
  background-image: none;
  border-color: #f6e4ee;
  color: #1f2933;
  box-shadow: none;
  text-shadow: none;
  border-radius: 0.3rem;
}

select[aria-invalid=true] + .ts-wrapper .ts-control {
  border-color: #b91c1c;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
.datatable__container {
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.datatable__filters {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.2rem;
  row-gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.datatable__filters .input__field {
  width: auto;
  min-width: 18rem;
}

.datatable__table {
  width: 100%;
  max-width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 0.6rem;
}
.datatable__table thead .datatable__cell {
  font-weight: 600;
  font-size: 1.3rem;
  color: #3f3f46;
  white-space: nowrap;
  background-color: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
}
.datatable__table tbody tr:last-child .datatable__cell {
  border-bottom: 0;
}
.datatable__table tbody tr:hover .datatable__cell {
  background-color: #f7f8fa;
}

.datatable__cell {
  padding: 1.2rem 1.6rem;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.datatable__cell--muted {
  font-style: italic;
  color: #6b7280;
}

.datatable__highlight {
  padding: 0 0.2rem;
  color: #fff;
  background-color: #b31b72;
  border-radius: 0.2rem;
}

.datatable__actions {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
}
.datatable__actions .button--simple .icon {
  width: 1.8rem;
  height: 1.8rem;
}

.datatable__sort-link {
  display: inline-flex;
  align-items: center;
  column-gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}
.datatable__sort-link:hover {
  color: #b31b72;
}

.datatable__sort-arrow {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.35;
  transition: transform 0.15s ease;
}
.datatable__sort-arrow--active {
  opacity: 1;
  color: #b31b72;
}
.datatable__sort-arrow--desc {
  transform: rotate(180deg);
}

.datatable__filters-row .input__field {
  width: 100%;
  min-width: 0;
}

.datatable__filter-date-range {
  display: flex;
  align-items: center;
  column-gap: 0.4rem;
}
.datatable__filter-date-range .input__field {
  min-width: 0;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
.calendrier {
  margin-top: 1.6rem;
}

.calendrier__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.calendrier__titre {
  min-width: 18rem;
  margin: 0;
  font-size: 1.8rem;
  text-align: center;
  text-transform: capitalize;
}

.calendrier__grille {
  overflow-x: auto;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
}

.calendrier__entetes,
.calendrier__semaine {
  display: grid;
  grid-template-columns: repeat(7, minmax(11rem, 1fr));
}

.calendrier__entete {
  padding: 0.8rem 0.96rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
  background-color: #f7f8fa;
  border-bottom: 1px solid #e5e7eb;
}

.calendrier__jour {
  min-height: 9rem;
  padding: 0.64rem;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.calendrier__semaine .calendrier__jour:last-child {
  border-right: 0;
}

.calendrier__jour--hors-mois {
  background-color: #f7f8fa;
}
.calendrier__jour--hors-mois .calendrier__numero {
  color: #6b7280;
}

.calendrier__jour--aujourdhui {
  background-color: #f6e4ee;
}
.calendrier__jour--aujourdhui .calendrier__numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  background-color: #b31b72;
  border-radius: 999px;
}

.calendrier__numero {
  display: block;
  margin-bottom: 0.48rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.calendrier__evenements {
  display: flex;
  flex-direction: column;
  row-gap: 0.32rem;
}

.calendrier__evenement {
  display: block;
  padding: 0.3rem 0.6rem;
  overflow: hidden;
  font-size: 1.1rem;
  color: var(--couleur-club-texte, #fff);
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: var(--couleur-club, #b31b72);
  border-radius: 0.4rem;
}
.calendrier__evenement .calendrier__evenement-horaire,
.calendrier__evenement .calendrier__evenement-libelle {
  color: inherit;
}

a.calendrier__evenement:hover {
  filter: brightness(0.9);
}

.calendrier__evenement-horaire {
  font-weight: 600;
}

.calendrier__evenement-libelle {
  margin-left: 0.4rem;
}

@media (max-width: 767px) {
  .calendrier__jour {
    min-height: 7rem;
  }
}
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
.offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 28rem;
  max-width: 85vw;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.offcanvas--is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 6.4rem;
  padding: 0 1.6rem;
  border-bottom: 1px solid #e5e7eb;
}

.offcanvas__body {
  height: calc(100% - 6.4rem);
  padding: 1.6rem;
  overflow-y: auto;
}

@media (min-width: 1280px) {
  .offcanvas {
    position: static;
    width: 100%;
    max-width: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    border-right: 1px solid #e5e7eb;
  }
  .offcanvas__header {
    display: none;
  }
  .offcanvas__body {
    height: 100%;
    padding: 2.4rem 1.6rem;
  }
}
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: rgba(31, 41, 51, 0.65);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.backdrop--is-visible {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1280px) {
  .backdrop {
    display: none;
  }
}
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__trigger {
  display: inline-flex;
  align-items: center;
  column-gap: 0.8rem;
  padding: 0;
  background: none;
  border: 0;
}

.dropdown__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  font-weight: 600;
  color: #fff;
  background-color: #b31b72;
  border-radius: 50%;
}

.dropdown__menu {
  position: absolute;
  right: 0;
  z-index: 110;
  width: 22rem;
  margin-top: 0.8rem;
  padding: 0.8rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  box-shadow: 0 8px 24px rgba(179, 27, 114, 0.18);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.dropdown__menu--is-visible {
  visibility: visible;
  opacity: 1;
}

.dropdown__menu_item {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  width: 100%;
  padding: 1rem 1.2rem;
  font-weight: 500;
  color: #1f2933;
  background: none;
  border: 0;
  border-radius: 0.6rem;
  text-align: left;
}
.dropdown__menu_item:hover {
  background-color: #f7f8fa;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
.badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2933;
  background-color: #f7f8fa;
  border-radius: 999px;
}
.badge--primary {
  color: #b31b72;
  background-color: #f6e4ee;
}
.badge--success {
  color: #16a34a;
  background-color: #e3f4e9;
}
.badge--danger {
  color: #b91c1c;
  background-color: #f7e4e4;
}
.badge--warning {
  color: #7b4f05;
  background-color: #fef0da;
}
.badge--neutral {
  color: #6b7280;
  background-color: #f7f8fa;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
.flash {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  margin-bottom: 1.6rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 0.6rem;
}

.flash-success {
  color: #0d602b;
  background-color: #e3f4e9;
  border-color: #16a34a;
}

.flash-error {
  color: #8d1515;
  background-color: #f7e4e4;
  border-color: #b91c1c;
}

.card {
  padding: 2rem;
  margin-bottom: 1.6rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
}

/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-area: header;
  width: 100%;
  height: 6.4rem;
  padding: 0 1.6rem;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.header__column {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
}

.header__navigation-trigger {
  display: block;
}

.logo-img {
  height: 3.2rem;
  width: auto;
}
.logo-img--grande {
  height: 5.6rem;
}

.header__logo {
  display: flex;
  align-items: center;
  color: #1f2933;
}

@media (min-width: 768px) {
  .header {
    padding: 0 2.4rem;
  }
}
@media (min-width: 1280px) {
  .header {
    height: 8rem;
    padding: 0 3.2rem;
  }
  .header__navigation-trigger {
    display: none;
  }
}
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
.navigation {
  grid-area: navigation;
  width: 100%;
}

.navigation__title {
  display: block;
  padding: 1.6rem 1.2rem 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}
.navigation__title:first-child {
  padding-top: 0;
}

.navigation__item {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  width: 100%;
  padding: 1.2rem 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #1f2933;
  background-image: none;
  border-radius: 0.6rem;
}
.navigation__item .icon {
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
}
.navigation__item[aria-current], .navigation__item:hover {
  background-color: #f6e4ee;
}
.navigation__item[aria-current] .icon, .navigation__item:hover .icon {
  color: #b31b72;
}

@media (min-width: 1280px) {
  .navigation {
    position: sticky;
    top: 8rem;
    height: calc(100vh - 8rem);
  }
}
/*
 * Variables reprises de la structure du projet KiTéOHM / mdcs (mêmes noms), avec la couleur
 * d'accent officielle Sporthéna (#B31B72, le magenta du logo — voir le dossier LOGO/ à la racine
 * du repo, couleur extraite du fichier SPORTHENA_LOGO_COUL.png) et un fond blanc. Compilé par
 * symfonycasts/sass-bundle (Dart Sass autonome, sans Node), intégré nativement à AssetMapper.
 */
/* Couleurs */
/* Rouge distinct du primaire (coral) pour ne pas confondre "danger" et "marque" */
/* Typographies */
/* Breakpoints */
/* Layout */
/* Espacements */
/* Autres */
/**
 * Construit un espacement (en rem) basé sur un multiplicateur.
 * ex: space(2) => 1.6rem
 */
/**
 * Obtient la largeur minimale d'un breakpoint.
 */
/**
 * Génère une règle @font-face pour chaque épaisseur fournie.
 *
 * @include font-face('Manrope', '../fonts/Manrope', (400: regular, 500: medium, 600: semibold, 700: bold));
 */
/**
 * Génère des media queries basées sur les breakpoints définis dans $breakpoints.
 *
 * @include breakpoint(md) { ... } => @media (min-width: 768px) { ... }
 */
.main {
  grid-area: main;
  width: 100%;
  padding: 1.6rem;
}

.main__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.main__title span {
  font-weight: 500;
  color: #b31b72;
}

.main__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .main {
    padding: 2.4rem;
  }
}
@media (min-width: 1280px) {
  .main {
    padding: 3.2rem 4rem;
  }
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
