/*
 * Subtle footer credit treatment.
 * This should not compete with Wema's Request Consultation CTA.
 */

.wema-footer-credit-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #f5f1eb !important;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: center;
  text-decoration: none !important;
  border-bottom: 2px solid #b78b4a;
  padding: 2px 2px 4px;
  transition:
    color .18s ease,
    border-color .18s ease,
    text-shadow .18s ease;
}

.wema-footer-credit-link strong,
.wema-footer-credit-link b {
  color: #ffffff !important;
}

.wema-footer-credit-link::after {
  content: "↗";
  color: #d7b36d;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.wema-footer-credit-link:hover,
.wema-footer-credit-link:focus-visible {
  color: #ffffff !important;
  border-color: #d7b36d;
  text-shadow: 0 0 14px rgba(215, 179, 109, .32);
  outline: none;
}

.wema-footer-credit-link:focus-visible {
  outline: 2px solid rgba(215, 179, 109, .8);
  outline-offset: 5px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .wema-footer-credit-link {
    max-width: calc(100% - 32px);
    flex-wrap: wrap;
    margin-inline: auto;
    font-size: .82rem;
  }
}
