.gsc-sharing{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:24px 0 8px;
  padding:0;
  border:0;
  background:transparent;
}

.gsc-sharing__buttons{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.gsc-share-btn{
  width:42px;
  height:42px;
  padding:0;
  border:0;
  background:transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  text-decoration:none !important;
  box-shadow:none;
  transition:transform .16s ease, opacity .16s ease;
}

.gsc-share-btn:hover,
.gsc-share-btn:focus-visible{
  transform:translateY(-1px) scale(1.03);
  opacity:.96;
}

.gsc-share-btn:focus-visible{
  outline:2px solid #df7fb0;
  outline-offset:3px;
  border-radius:999px;
}

.gsc-share-btn__icon-img{
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
  border-radius:999px;
}

.gsc-share-btn svg{
  width:20px;
  height:20px;
  fill:currentColor;
}

.gsc-share-btn--native{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid #ecdff1;
  background:#fff;
  color:#d74f92;
  box-shadow:0 6px 18px rgba(45,31,60,.05);
}

.gsc-share-btn--native:hover,
.gsc-share-btn--native:focus-visible{
  background:#fff8fc;
}

.gsc-sharing__feedback{
  font-size:12px;
  color:#6f6a78;
  min-height:16px;
  width:100%;
  margin-top:4px;
}

/* El botón de compartir nativo solo se muestra en móvil */
.gsc-share-btn--native{
  display:none;
}

@media (max-width: 767px){
  .gsc-sharing{
    margin:20px 0 8px;
  }

  .gsc-sharing.has-native-share .gsc-share-btn--native{
    display:inline-flex;
  }
}
