.accordeon-image {
  padding: 50px 0 !important;
}
.accordeon-image .new-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.accordeon-image .description {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 650px;
}
.accordeon-image .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-top: 50px;
}
.accordeon-image .left,
.accordeon-image .right {
  width: 50%;
}
.accordeon-image .right img {
  border-radius: 20px;
}
.accordeon-image div[id^='sect'] {
  text-align: left;
}
.accordeon-image div[id^='sect'] ul,
.accordeon-image div[id^='sect'] p {
  font-family: 'New Garet';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: var(--text);
  text-align: left;
  opacity: 0.9;
}
.accordeon-image div[id^='sect'] > * + * {
  margin-top: 1em;
}
.accordeon-image div[id^='sect'] p strong {
  font-weight: 600;
}
.accordeon-image div[id^='sect'] ul {
  list-style: disc;
  list-style-position: inside;
}

/* ACCORDION ACCESSIBLE */
.accordeon-image .accordion:focus-within {
  border-color: hsl(216deg 94% 43%);
}
.accordeon-image .accordion > * + * {
  border-top: 1px solid hsl(0deg 0% 52%);
}
.accordeon-image .accordion-trigger {
  background: none;
  color: hsl(0deg 0% 13%);
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 1em 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
}
.accordeon-image .accordion-trigger:focus,
.accordeon-image .accordion-trigger:hover {
  background: var(--myrtille700);
}
.accordeon-image .accordion-trigger:focus {
  outline: 4px solid transparent;
}
.accordeon-image .accordion button {
  border-style: none;
}
.accordeon-image .accordion button::-moz-focus-inner {
  border: 0;
}
.accordeon-image .accordion-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  padding: 0.25em;
  outline: none;
  transition: .15s ease;
}
.accordeon-image .accordion-icon {
  border: solid var(--myrtille200);
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}
.accordeon-image .accordion-trigger:focus .accordion-icon,
.accordeon-image .accordion-trigger:hover .accordion-icon {
  border-color: var(--myrtille200);
}
.accordeon-image .accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}
.accordeon-image h3:has(button[aria-expanded="false"]) .accordion-title {
  opacity: 0.7;
}
.accordeon-image .accordion-panel {
  margin: 0;
  padding: 2em 1.5em;
}
/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordeon-image .accordion-panel[hidden] {
  display: none;
}

@media screen and (max-width: 1280px) {
  .accordeon-image .description {
    font-size: 14px;
    line-height: 24px;
  }
  .accordeon-image div[id^='sect'] p {
    font-size: 14px;
    line-height: 24px;
  }
  .accordeon-image .description {
    font-size: 14px;
    line-height: 24px;
  }
  .accordeon-image .content {
    flex-direction: column;
  }
  .accordeon-image .left,
  .accordeon-image .right {
    width: 100%;
  }
  .accordeon-image div[id^='sect'] {
    font-family: 'New Garet';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.04em;
    color: var(--text);
    text-align: left;
    opacity: 0.9;
  }
}