/* Home page hero logos (logo1.png + logo2.png) */
.hero-logos{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;

  /* Increase desktop spacing but keep wrap available for small widths */
  gap:6.0rem;

  margin:0 0 18px;

  /* Ensure visibility above hero overlays on mobile */
  position:relative;
  z-index:5;
  width:100%;
}

.hero-logos img{
  height:120px;

  width:auto;
  max-width: 100%;
  object-fit:contain;
  display:block;
  flex:0 0 auto;
}

.hero-logos img:nth-child(2){
  height:78px;
}

/* Extra safety: ensure images never overlap/crop in small heights */
.hero-logos img{ overflow: visible; } 


@media (max-width:768px){
  .hero-logos{
    gap:0.9rem;
    margin-bottom:12px;
    padding:0 6px;
    width:100%;
  }
  .hero-logos img{height:70px;}
  .hero-logos img:nth-child(2){height:56px;}
}

@media (max-width:480px){
  .hero-logos{
    gap:0.7rem;
    margin-bottom:10px;
    padding:0 4px;
    width:100%;
  }
  .hero-logos img{height:62px;}
  .hero-logos img:nth-child(2){height:50px;}
}





