.contact-call-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #087568;
  text-decoration: none;
}

.contact-call-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #087568;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #087568, 0 8px 18px rgba(8, 117, 104, .28);
  transition: transform .18s, background .18s;
}

.contact-call-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-call-link:hover .contact-call-icon,
.contact-call-link:focus-visible .contact-call-icon {
  transform: scale(1.08);
  background: #075f55;
}

.contact-call-link:focus-visible {
  outline: 2px solid #76cbbb;
  outline-offset: 4px;
  border-radius: 7px;
}

.renewal-contact .contact-call-link { justify-self: start; }
.membership-contact .contact-call-link { justify-content: flex-end; }
.shop-dark .contact-call-icon { background: #3fc7b1; color: #102c29; }
