.faq-contact-links1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-contact-link1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(18,18,18);
  text-decoration: none;
  transition: var(--transition);
}

.faq-contact-link1 i {
  color: var(--primary-color);
  font-size: 13px;
  width: 16px;
}

.faq-contact-link1:hover {
  color: var(--primary-color);
}

/* Stile Pulsanti Social */

.social-btn {
  flex: 1;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff !important;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  color: #fff;
}

/* Griglia Galleria */

.social-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

/* Singola Immagine */

.sg-item {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
}

.sg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* Effetto Hover sull'immagine (Zoom e Scurimento) */

.sg-item:hover img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

/* Cuoricino che appare al passaggio del mouse */

.sg-item::after {
  /*content: '\f004';*/
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sg-item:hover::after {
  opacity: 1;
}

