/* HOME PHOTO FIX ONLY - affects homepage only */
.hero.image-fix-safe,
.hero { overflow: hidden; }

.hero-visual.image-hero-card {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 22px;
}

.hero-visual.image-hero-card img,
.hero-photo-fix {
  width: 100%;
  height: 100%;
  max-height: 476px;
  display: block;
  object-fit: contain;
  object-position: center center;
  border-radius: 26px;
  background: rgba(8,18,41,.22);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

/* if later the second homepage panel becomes a real image, keep it safe too */
.image-panel img,
.image-panel picture img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .hero-visual.image-hero-card {
    min-height: auto;
    padding: 14px;
  }

  .hero-visual.image-hero-card img,
  .hero-photo-fix {
    height: auto;
    max-height: 420px;
  }
}
