.network-sites-gallery {
  flex: 1;
  background-color: beige;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.network-sites-gallery-card {
  background-color: aliceblue;
  position: relative;
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.network-sites-gallery-card:hover {
  transform: scale(1.03);
}

.network-sites-gallery-card-infos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.network-sites-gallery-card-title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.network-sites-gallery-card-slogan {
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
}