.contact-copy-button {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  padding: 2px;
  margin: 0 0 0 6px;
  border: 0;
  color: inherit;
  background: transparent;
  vertical-align: middle;
  cursor: pointer;
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease;
}

.contact-copy-button img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.contact-copy-button:hover,
.contact-copy-button:focus-visible,
.contact-copy-button.is-copied {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-copy-button:focus-visible {
  outline: 2px solid rgba(157, 95, 18, .42);
  outline-offset: 2px;
}

.contact-copy-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 200;
  width: max-content;
  max-width: calc(100vw - 32px);
  min-width: 180px;
  padding: 11px 16px;
  border: 1px solid rgba(207, 134, 31, .42);
  color: #fff;
  background: rgba(32, 42, 50, .94);
  box-shadow: 0 12px 30px rgba(32, 42, 50, .2);
  font: 600 .72rem/1.2 "Chakra Petch", "Noto Sans SC", sans-serif;
  letter-spacing: .08em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.88);
  transition: opacity .2s ease, transform .2s ease;
}

.contact-copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .contact-copy-toast {
    transition: none;
  }
}
