/* SEZIONE HERO */
.hero-banner {
  background-color: var(--bs-primary);
  height: 353px;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* Titolo */
.h1-hero {
  text-transform: uppercase !important;
  color: white !important;
  font-weight: 400 !important;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Quadrato arancione allineato al bordo del container */
.hero-square {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  background-color: var(--bs-secondary);
  z-index: 1;
  transform: translateX(
    var(--px-vw-5, 5vw)
  ); /* stessa distanza del container */
}

/* SEZIONE PARTNER */
.logos-wrapper {
  display: flex;
  justify-content: start !important;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}

/* RESET DESKTOP: eliminiamo bordi prima di ricostruire */
.logo-flip-box {
  border: none;
  width: 20%;
  height: 140px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px 0 !important;
}

/* Ricostruzione griglia bordi Desktop (5 per riga) */
.logo-flip-box {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.logo-flip-box:nth-child(5n + 1) {
  border-left: 1px solid #000;
}

.logo-flip-box:nth-child(-n + 5) {
  border-top: 1px solid #000;
}

/* Interno */
.logo-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  --pause-start: 75%;
}

.logo-face {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.logo-img {
  max-width: 80%;
  max-height: 90% !important;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1200px) {
  .logo-flip-box {
    width: 25%; /* 4 loghi per riga */
    height: 100px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: none;
    border-top: none;
  }

  /* Prima colonna */
  .logo-flip-box:nth-child(4n + 1) {
    border-left: 1px solid #000;
  }

  /* Prima riga */
  .logo-flip-box:nth-child(-n + 4) {
    border-top: 1px solid #000;
  }
  .logo-flip-box:nth-child(-n + 5) {
    border-top: none !important;
  }
  .logo-flip-box:nth-child(5n + 1) {
    border-left: none !important;
  }

  .logos-wrapper {
    border-top: 1px solid #000;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-flip-box {
    width: 50%; /* 2 loghi per riga */
    height: 120px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: none;
    border-top: none;
  }

  /* Prima colonna */
  .logo-flip-box:nth-child(2n + 1) {
    border-left: 1px solid #000;
  }

  /* Prima riga */
  .logo-flip-box:nth-child(-n + 2) {
    border-top: 1px solid #000;
  }
  .logo-flip-box:nth-child(-n + 5) {
    border-top: none !important;
  }
  .logo-flip-box:nth-child(5n + 1) {
    border-left: none !important;
  }
  .logos-wrapper {
    border-top: 1px solid #000;
  }
}
