.share-report {
  margin: 1rem 0 1.75rem;
  padding: 0;
}

.share-report__inner {
  display: block;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}

.share-report__text h2 {
  margin: 0 0 .25rem;
  font-size: .95rem;
  line-height: 1.2;
}

.share-report__text p {
  margin: 0 0 .65rem;
  opacity: .9;
}

.share-report__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: flex-start;
}

.share-report__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.20);
}

.share-report__icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.share-report__icon:hover,
.share-report__icon:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
  text-decoration: none;
}

.share-report__icon--x {
  background: #000;
}

.share-report__icon--facebook {
  background: #1877f2;
}

.share-report__icon--whatsapp {
  background: #25d366;
  color: #fff;
}

.share-report__icon--copy {
  background: #4b5563;
}

.share-report__icon--copy.is-copied {
  background: #16a34a;
}

.share-report__icon--copy.is-error {
  background: #dc2626;
}
