/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on their specificity.
 *
 * Consider organizing separate files for maintainability.
 */

/* News slideshow slide-in animations */
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(2rem); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-2rem); }
  to   { opacity: 1; transform: translateX(0); }
}
.slide-in-right { animation: slide-in-right 0.25s ease-out; }
.slide-in-left  { animation: slide-in-left  0.25s ease-out; }

