/* bannersocial.css — by Lomazzi Federico */

#bannersocial-box {
  display: flex;
  gap: 20px;
  padding: 20px 10px;
  justify-content: center;
  align-items: center;

  margin: 0 auto;
  max-width: 450px;

  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.bs-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bs-icon img {
  width: 26px;
  height: 26px;
}

.bs-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.bs-icon:active {
  transform: scale(0.92);
}
