/* Shared split hero for French and English villa pages. */
.rdg-villa-hero .f-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}
.rdg-villa-hero .f-row > .f-item { min-width: 0; }
.rdg-villa-hero .text-wrapper {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 1rem 2rem;
  background: #fff;
  transform: none !important;
}
.rdg-villa-hero .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 0;
}
.rdg-villa-hero .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media (min-width: 992px) {
  .rdg-villa-hero .f-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rdg-villa-hero .image-wrapper { min-height: 650px; }
  .rdg-villa-hero .image-wrapper img {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
  }
  .rdg-villa-hero .text-wrapper { padding: 3rem; }
}
@media (min-width: 1200px) {
  .rdg-villa-hero .text-wrapper { padding: 6rem 3.25rem; }
}
