.wall-brand-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Rende la griglia responsive */
  gap: 0px;
  justify-items: center;
  align-items: center;
  padding: 0px;
}

.wall-brand-grid-container > div {
  border: 1px solid black;
  padding: 10px;
  align-items: center;
}
.btn-cta-2 {
  display: block;
  margin-top: 16px;
  padding: 10px;
  text-align: center;
  background: #bb0214;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px
}

.btn-cta-2:hover { background: #8a0018; color: #fff;}

.wall-brand-card {
  display: block;
  width: 100px;
  height: 100px; 
  overflow: hidden;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.wall-brand-card:hover {
  transform: scale(1.10); 
}


.wall-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  padding: 0.2em; 
  background-color: #fff;
}
