/**
 * Small additions on top of the compiled Tailwind utilities in style.css —
 * classes needed for real <img> photos (the original used SVG placeholders,
 * which never needed object-fit) and print handling.
 */

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media print {
  header,
  footer,
  .no-print {
    display: none !important;
  }
}
