.hero .hero-share {
  appearance: none;
  border: 0;
  padding: 4px 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.hero .hero-share:hover {
  text-decoration-color: #fff;
}

.hero .hero-share:focus-visible {
  outline: 2px solid #e3bd70;
  outline-offset: 4px;
  border-radius: 4px;
}

.hero .hero-share.is-copied {
  color: #e3bd70;
}


.share-thanks {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 120;
  min-width: 230px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 26px;
  border-radius: 24px;
  color: #173a38;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 60px rgba(8,45,42,.24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%,-46%) scale(.92);
  transition: opacity .2s ease, transform .25s ease, visibility .2s;
  pointer-events: none;
  text-align: center;
}
.share-thanks span {
  color: #a8565c;
  font-size: 42px;
  line-height: 1;
}
.share-thanks b {
  font: 700 19px/1.25 Georgia,serif;
}
.share-thanks.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,-50%) scale(1);
}
