.product-card-link {
  display: block;
  min-width: 0;
  outline: 0;
}

.product-card-link .product-card {
  height: 100%;
  transition: transform .2s ease, filter .2s ease;
}

.product-arrow {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(17, 35, 29, .18);
  transition: transform .2s ease, background .2s ease;
}

.product-card-link:hover .product-card,
.product-card-link:focus-visible .product-card {
  filter: brightness(1.06);
}

.product-card-link:hover .product-arrow,
.product-card-link:focus-visible .product-arrow {
  transform: translate(3px, -3px);
  background: #fff;
}

.product-card-link:focus-visible {
  box-shadow: inset 0 0 0 3px var(--gold);
}

@media (max-width: 640px) {
  .product-arrow { right: 24px; bottom: 22px; width: 46px; height: 46px; }
}
