/* ============================================================
   TAB RETOUR DU SPECIALISTE  (mobile-first)
============================================================ */
.specialiste-section {
  background-color: #efece9;
  padding: 40px 0;
}

.specialiste-blocs {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.specialiste-bloc {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  align-items: flex-start;
}

.specialiste-bloc__edito {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.specialiste-bloc__edito .heading-m {
  color: #0F1B24;
  align-self: stretch;
  /* Mobile/Heading/M */
  font-family: Asul;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.specialiste-bloc__edito .body-m {
  font-family: 'Lexend', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #0f1b24;
}

.specialiste-bloc__image {
  flex: 1;
  width: 100%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  min-width: 0;
}

.specialiste-bloc__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================================
   TAB SPECIALISTE  – Desktop
============================================================ */
@media (min-width: 769px) {
  .specialiste-section {
    background-color: #efece9;
    padding: 60px 0;
  }

  .specialiste-blocs {
    gap: 60px;
  }

  .specialiste-bloc {
    flex-direction: row;
    gap: 40px;
  }

  .specialiste-bloc__edito {
    width: 362px;
  }

  .specialiste-bloc__image {
    height: 510px;
    width: auto;
  }
  .specialiste-bloc {
    display: grid;
    grid-template-columns: 35fr 60fr;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
  }

  .specialiste-bloc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .specialiste-bloc__edito .heading-m {
    font-family: 'Asul', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
    color: #0f1b24;
  }
}
