/* Transport Éclair — intégration photos réelles */
.hero-visual {
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 12, 18, .20), rgba(8, 12, 18, .72)),
    url("../images/hero/hero-main.png") center / cover no-repeat;
  border-radius: 34px;
  z-index: 0;
}

.hero-visual > * {
  position: relative;
  z-index: 2;
}

.te-photo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.te-photo-small {
  height: 180px;
}

.card .te-photo,
.panel .te-photo {
  margin-top: 0;
}

@media (max-width: 720px) {
  .te-photo {
    height: 190px;
    border-radius: 18px;
  }

  .hero-visual::before {
    border-radius: 24px;
  }
}
