/* hero.desktop.css — mise en page asymétrique (>=1024px) : texte à gauche, photo pleine hauteur qui déborde à droite. */
.hero{
  grid-template-columns: minmax(0, 460px) 1fr;
  grid-template-rows: none;
  align-items: stretch;
  min-height: 88vh;
}

.hero__media{
  order: 2;
  aspect-ratio: auto;
  height: 100%;
}

.hero__content{
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-8) var(--space-8) var(--space-8);
}

.hero__title{ font-size: clamp(2.75rem, 4.2vw, 4.5rem); }
