/*
 * Patapizz — Custom CSS
 * TailwindCSS loaded via CDN in head.html
 */

/* Prose styling */
.prose {
  max-width: 65ch;
}

.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left: 3px solid;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: normal;
}

/* Lead paragraph — first p in article body */
.prose > p:first-child {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #4b5563;
}

/* h2 separator line */
.prose > h2 {
  padding-top: 2rem;
  border-top: 1px solid #fdebd6;
}

.prose > h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

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

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

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

/* Global transitions */
a, button {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

/* Aspect ratio */
.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.aspect-\[16\/10\] {
  aspect-ratio: 16/10;
}

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