/* ── La Lézardière — Styles complémentaires ── */

/* Line clamp (fallback navigateurs anciens) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scroll indicator animation */
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.4; transform: translateY(6px); }
}
.animate-scroll-pulse {
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* Focus visible — accessibilité */
:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: 2px;
}

/* Sélection texte */
::selection {
  background: rgba(8, 145, 178, 0.15);
  color: inherit;
}

/* Smooth scroll global */
html {
  scroll-behavior: smooth;
}

/* Print */
@media print {
  header, footer, .no-print { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
