.arrow-link { 
  font-weight: bold;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.arrow-link:hover {
  text-decoration: underline;
}

.arrow-link .arrows {
  color: #FF2400 !important; 
  display: inline-block;
  animation: arrowMove 1.2s infinite;
  font-weight: bold;
}

@keyframes arrowMove {
  0%   { transform: translateX(0); opacity: 0.3; }
  50%  { transform: translateX(6px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.3; }
}