.navbar__link--gallery {
  position: relative;
  padding-bottom: 0.45rem;
}

.navbar__link--gallery::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.75);
  transform-origin: center;
  animation: null-gallery-pulse 1.35s ease-in-out infinite;
}

@keyframes null-gallery-pulse {
  0%, 100% {
    opacity: 0.25;
    transform: scaleX(0.35);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar__link--gallery::after {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
