.animated-caption {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  font-size: 1rem;
  color: #444;
}

.animated-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.animated-caption:hover {
  color: #1976d2;
  font-weight: bold;
}

@media (max-width: 600px) {
  .animated-caption {
    font-size: 0.95rem;
    text-align: center;
  }
}