/* Designed & Built By ZACH — shared footer trademark */
.zach-credit,
a.zach-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  line-height: 1.4;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.zach-credit__prefix {
  color: rgba(100, 116, 139, 0.95);
  font-weight: 500;
}

.zach-credit__name {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Dark footer variant */
.zach-credit--dark .zach-credit__prefix {
  color: rgba(255, 255, 255, 0.55);
}

.zach-credit--dark:hover .zach-credit__prefix {
  color: rgba(255, 255, 255, 0.85);
}

/* Light footer variant (default prefix) */
.zach-credit:hover {
  opacity: 1;
}

.zach-credit:hover .zach-credit__name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zach-credit::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(1px) rotate(45deg);
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.zach-credit:hover::after {
  opacity: 1;
  transform: translate(2px, -1px) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .zach-credit,
  .zach-credit::after {
    transition: none;
  }
}
