.contact-symbol-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 168px;
  height: 216px;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.contact-symbol-face {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform .25s ease;
}

.contact-symbol-mark {
  position: absolute;
  inset: 0;
  background: var(--ink);
  -webkit-mask: url('/assets/images/site-person-symbol.png') center / contain no-repeat;
  mask: url('/assets/images/site-person-symbol.png') center / contain no-repeat;
  transition: background-color .25s ease;
}

.contact-symbol-text {
  position: absolute;
  z-index: 1;
  top: 77%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .025em;
  white-space: nowrap;
}

.contact-symbol-link:hover .contact-symbol-face,
.contact-symbol-link:focus-visible .contact-symbol-face {
  transform: translateY(-5px) rotate(-3deg) scale(1.035);
}

.contact-symbol-link:hover .contact-symbol-mark,
.contact-symbol-link:focus-visible .contact-symbol-mark {
  background: var(--blue);
}

.closing .contact-symbol-link,
.home-faq .contact-symbol-link {
  margin-inline: auto;
}

@media (max-width: 680px) {
  .contact-symbol-link {
    width: 132px;
    height: 170px;
  }

  .contact-symbol-text {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-symbol-face,
  .contact-symbol-mark { transition: none; }
  .contact-symbol-link:hover .contact-symbol-face,
  .contact-symbol-link:focus-visible .contact-symbol-face { transform: none; }
}
