/*
  Soft blink effect for corporate usage
  - Text never disappears
  - Smooth and subtle animation
  - User-friendly and SEO-safe
*/

.blink {
  color: #DD3522;
  animation: blinkSoft 3s ease-in-out infinite;
}

@keyframes blinkSoft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

/* Optional: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .blink {
    animation: none;
  }
}