.hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero__text {
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image masquée sur mobile */
.hero__image,
.hero__image--full {
  display: none;
}

.hero__image > *,
.hero__image--full > *,
.hero__image .field,
.hero__image--full .field,
.hero__image .field__item,
.hero__image--full .field__item {
  height: 100%;
  width: 100%;
  display: block;
}

.hero__image img,
.hero__image--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Desktop */
@media (min-width: 1000px) {
  .hero__wrapper {
    flex-direction: row;
    min-height: 450px;
  }

  .hero__text {
    max-width: 500px;
    flex-shrink: 0;
    padding: 2rem;
  }

  .hero__image {
    display: block;
    position: absolute;
    right: -135px;
    top: -240px;
    width: 74%;
    height: calc(135% + 80px);
    border-bottom-left-radius: 116px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
  }

  .hero__image--full {
    display: block;
    position: absolute;
    right: -275px;
    top: -310px;
    width: 85%;
    height: calc(140% + 80px);
    border-bottom-left-radius: 116px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
  }
}
