.gallery-grid .gallery-item::after {
  z-index: 4;
  inset: auto 12px 12px;
  padding: 13px 16px;
  border-left: 4px solid var(--brand-gold, #FBB900);
  background: rgba(0, 0, 0, .84);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  opacity: 1;
  transform: none !important;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.gallery-grid .gallery-item:hover::after,
.gallery-grid .gallery-item:focus-visible::after {
  background: var(--brand-gold, #FBB900);
  color: #000;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .38);
  transform: translateY(-3px) !important;
}

@media (max-width: 560px) {
  .gallery-grid .gallery-item::after {
    inset: auto 9px 9px;
    padding: 11px 13px;
    font-size: 14px;
  }
}
