/**
   ____           _                 
  / ___|___ _ __ | |_ _ __ ___  ___ 
 | |   / _ \ '_ \| __| '__/ _ \/ __|
 | |__|  __/ | | | |_| | |  __/\__ \
  \____\___|_| |_|\__|_|  \___||___/
                                    
*/

.cfsp__link a {
  color: var(--color-secondary) !important;
  transition: all ease-in-out 0.24s;
  &:hover {
    color: var(--color-link) !important;
  }
}

.centers-crapper > div {
  display: grid;
  width: 100%;
  gap: 1rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(288px, 350px));
}

.centre {
  width: 100%;
  display: flex;
  flex-direction: center;
  align-items: center;
  gap: 1rem;

  background-color: var(--color-light-1);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
  border-radius: 24px;
  padding: 24px 6px;
  width: fit-content;
}

.centres {
  width: 100%;

  & > div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

    justify-content: center;
    width: 100%;
  }
}

.centres-normandie-2 > div {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;

  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; */
}

.centre-card-container {
  display: flex;

  min-width: 288px;
  max-width: 350px;
  width: 100%;
  aspect-ratio: 1 / 1;

  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);

  background-size: cover;

  border-radius: 24px;
  padding: 16px 8px;

  color: white;
  text-decoration: none;

  box-shadow: var(--shadow-1, 4px 4px 8px rgba(0, 0, 0, 0.1));

  transition: all 0.24s ease-in-out;

  & p {
    font-size: 0.875rem !important;
  }

  & .centre-card__title {
    font-size: 18px !important;
    font-weight: bold;
    margin-top: 0.75rem;
  }

  &:hover,
  &:focus {
    transform: scale(1.02);
  }
}

.centre-with-my-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  max-width: 100%;
}

.centre-card-wrapper {
  margin-top: 0 !important;
}

.centre-card__stripe {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  place-content: center;
}

.centre-card__logo-wrapper {
  display: grid;
  place-content: center;
}

.centre-card__stripe__info {
  display: flex;
  flex-direction: column;

  & > p {
    margin: 0;
  }
}
