.accordeon-block {
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 0 50px -15px var(--enzomichaud-color-secondary-40);
    margin-top: 16px;
}

.accordeon-titre {
    cursor: pointer;
    padding: 12px 22px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    color: var(--enzomichaud-color-dark-sec);
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(269deg, var(--enzomichaud-color-main) 13.29%, var(--enzomichaud-color-dark-sec) 88.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
  
  .accordeon-titre svg {
    transition: all 0.6s ease-in-out;
    min-width: 36px;
    min-height: 36px;
  }
  
  .accordeon-titre svg:hover {
    opacity: 0.8;
  }
  
  .active-accordion svg {
    transform: rotate(180deg);
    opacity: 0.6;
  }
  
  .active-accordion svg:hover {
    opacity: 0.6;
  }
  
  .accordeon-description {
    padding: 0px 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
  }
  
  .accordeon-description p {
    font-size: 1rem;
    padding-bottom: 20px;
    color: rgb(0 0 0 / 81%);
    margin-bottom: 0 !important;
  }
  
  .active-accordion {
    cursor: unset;
  }
  
  .accordeon-description a {
    font-weight: 500;
    font-size: 13px;
    line-height: 22px;
    color: #ffffff;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgb(245 245 247 / 25%);
    transition: border-bottom .2s;
    margin: 24px 6px 0 0;
    text-transform: uppercase;
  }
  
  .accordeon-description a::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: currentColor;
    mask-image: url(../img/icons/right-arrow.svg);
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../img/icons/right-arrow.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    transition: all .2s;
  }
  
  .accordeon-description a:hover {
    color: #ffffff;
    border-color: #fff;
  }
  
  .accordeon-description a:hover::after {
    transform: translateX(25%);
  }