/* Social share — Tailwind-like cards */
.ftd-social-social-wrapper {
  margin: 1.25rem 0.25rem;
  font-size: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.ftd-social-social-sharing {
  padding: 0.625rem 0.875rem;
  margin: 0;
  border-radius: 0.75rem;
  flex: 1;
  min-width: 120px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 1px 2px 0 rgb(15 23 42 / 0.05);
}

.ftd-social-social-sharing:hover {
  transform: translateY(-2px);
  border: none;
  box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.1), 0 4px 6px -4px rgb(15 23 42 / 0.08);
}

@media only screen and (max-width: 600px) {
  .ftd-social-social-sharing {
    display: inline-block;
    min-width: auto;
  }
}

.ftd-social-social-sharing svg {
  position: relative;
  top: 0.15em;
  display: inline-block;
}

.ftd-social-social-facebook {
  fill: #fff;
  background-color: #1877f2;
}

.ftd-social-social-twitter {
  fill: #fff;
  background-color: #0f172a;
}

.ftd-social-social-whatsapp {
  fill: #fff;
  background-color: #22c55e;
}

.ftd-social-social-telegram {
  fill: #fff;
  background-color: #0284c7;
}

.ftd-social-social-more {
  fill: #fff;
  background-color: #475569;
}
