/*
 * La Mammina — Custom CSS
 * TailwindCSS est charge via CDN dans head.html
 */

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

/* Line clamp utilities */
.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;
}

/* Focus states accessibilite */
a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Transitions globales */
a, button {
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Selection */
::selection {
  background-color: rgba(220, 38, 38, 0.12);
  color: inherit;
}

/* Article — Lettrine sur le premier paragraphe */
.article-content > p:first-of-type::first-letter {
  float: left;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 3.5em;
  line-height: 0.8;
  padding-right: 0.12em;
  padding-top: 0.07em;
  color: #dc2626;
  font-weight: 700;
}

/* Article — Guillemets sur les blockquotes */
.article-content blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.15em;
  left: 0.3em;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(220, 38, 38, 0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}

.article-content blockquote > p {
  padding-left: 1.2em;
}

/* Article — Listes plus soignees */
.article-content ul > li::marker {
  color: #dc2626;
}

.article-content ol > li::marker {
  color: #dc2626;
  font-weight: 600;
}

/* Print styles */
@media print {
  header, footer, nav {
    display: none !important;
  }
  .prose {
    max-width: 100%;
  }
}
