.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}

.album-title {
  text-align: center;
}

.album-card {
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
  overflow: hidden;
}

.album-card img {
  object-fit: cover;
}

.album-card:hover {
  transform: scale(1.03);
}

.album-card img {
  aspect-ratio: 1 / 1; 
  border-radius: 8px;
  width: 100%;
}

.album-title {
  margin-top: 8px;
  font-weight: bold;
}

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
  gap: 10px;
  align-items: center;
}

.foto-box {
  width: 100%;              /* dimensione del quadrato */
  aspect-ratio: 1 / 1;       /* rende il contenitore quadrato */
  transition: transform 0.2s;
}

.foto-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* riempie senza deformare */
}

.foto-box:hover {
  transform: scale(1.03);
}
