/*
 * METG Distribution — Custom Styles
 * TailwindCSS loaded via CDN in head.html
 * This file handles overrides and utilities not covered by Tailwind
 */

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Focus states (accessibility) ===== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #ea580c;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== 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;
}

/* ===== Article Prose — Premium Styling ===== */
.article-prose {
  max-width: 68ch;
}

/* Drop cap on first paragraph */
.article-prose > p:first-of-type::first-letter {
  float: left;
  font-size: 3.5em;
  line-height: 0.8;
  font-weight: 700;
  color: #ea580c;
  margin-right: 0.1em;
  margin-top: 0.05em;
  font-family: 'Oswald', ui-sans-serif, system-ui, sans-serif;
}

/* Blockquote premium styling */
.article-prose blockquote {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #14b8a6;
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
}

.article-prose blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.25rem;
  left: 0.75rem;
  font-size: 3rem;
  color: #14b8a6;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.4;
}

/* Table zebra striping */
.article-prose table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.article-prose table tbody tr:hover {
  background-color: #f1f5f9;
}

.article-prose table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.article-prose table th {
  text-align: left;
  font-weight: 600;
}

.article-prose table th:first-child {
  border-radius: 0.75rem 0 0 0;
}

.article-prose table th:last-child {
  border-radius: 0 0.75rem 0 0;
}

/* H2 decorative accent line */
.article-prose h2 {
  position: relative;
}

.article-prose h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, #ea580c, #14b8a6);
  border-radius: 2px;
}

/* Smooth list styling */
.article-prose ul li,
.article-prose ol li {
  padding-left: 0.25rem;
  margin-bottom: 0.4rem;
}

/* Prose images */
.article-prose img {
  border-radius: 0.75rem;
}

/* ===== General Prose fallback ===== */
.prose {
  max-width: 68ch;
}

.prose img {
  border-radius: 0.75rem;
}

.prose table {
  font-size: 0.875rem;
}

.prose table th {
  text-align: left;
  font-weight: 600;
}

/* ===== Selection color ===== */
::selection {
  background-color: #ea580c;
  color: white;
}

/* ===== Print ===== */
@media print {
  header, footer, nav, [data-page="home"] section:last-child,
  #reading-progress {
    display: none !important;
  }
  .prose, .article-prose {
    max-width: 100%;
  }
}
