  /***  css des patterns Contact  ***/

  .largeur_100{
    margin-top: 20px;
    padding: 10px;
    width: 97%;
    border-radius: 10px;
    border: 0px solid var(--accent-color);
  }
  .taille_300{
    margin-top: -5px;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: 0px solid var(--accent-color);
  }
 
  .bordur_accent{
    color: black;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
  }
  .bouton_bordur_accent{
    color: var(--accent-color);
    background-color: white;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    margin-top: 20px;
    padding: 15px 30px;
  }
  .bouton_fond_accent{
    color: white;
    background-color: color-mix(in srgb, var(--accent-color) 70%, white);
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    padding: 15px 30px;
  }

  .fond_couleur_accent {
    padding: 20px;
    background-color: var(--accent-color);
  }

  .fond_couleur_accent .couleur_accent{
    color: var(--accent-color);
  }
  .fond_accent_claire{
    background: color-mix(in srgb, var(--accent-color) 70%, white);
    padding: 20px;
    color: white;
  }
  .scroll_wrapper {
  position: relative;
  }
  
  .scroll_fleche {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color) 70%, white);
    color: white;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }
  
  .scroll_fleche_gauche { left: 5px; }
  .scroll_fleche_droite { right: 5px; }

  @media screen and (max-width: 900px) {

  /* Colonnes externes */
  .wp-block-columns:has(.fond_couleur_accent_ecriture_blanc) {
    flex-direction: column;
  }
 
  .wp-block-columns:has(> .wp-block-column.fond_couleur_accent_ecriture_blanc) {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
 
  .wp-block-column.fond_couleur_accent_ecriture_blanc {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    min-width: 0;
    box-sizing: border-box;
  }

 
  .fond_accent_claire .wp-block-columns {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
 
  .fond_accent_claire .wp-block-columns::-webkit-scrollbar {
    display: none;
  }
 
  .fond_accent_claire .wp-block-column {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    scroll-snap-align: start;
  }

  .scroll_fleche {
    display: flex; 
  }

  }

  @media screen and (max-width: 480px) {
   
  .fond_accent_claire .wp-block-column {
    flex: 0 0 100%;
    min-width: 100%;
  }

}