/* ============================================================
   article.css — Static blog article pages (hollandaca-*)
   Requires shared.css. Used by: hollandaca-*, and similar
   article-layout pages.
   ============================================================ */

/* --- Article layout --------------------------------------- */
.container { max-width: 780px; margin: 0 auto; padding: 0 20px; }

.lead { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }

/* Article headings override */
.article-body h1 { font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 4vw, 32px); font-weight: 700; line-height: 1.25; margin: 32px 0 12px; }
.article-body h2 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.article-body p { margin-bottom: 12px; font-size: 15px; }

/* Standalone h2 override for article pages without .article-body wrapper */
.container h1 { font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 4vw, 32px); font-weight: 700; line-height: 1.25; margin: 32px 0 12px; }
.container h2 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.container p { margin-bottom: 12px; font-size: 15px; }

/* --- Alphabet grid ---------------------------------------- */
.alpha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin: 16px 0;
}
.alpha-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.alpha-card:hover { border-color: rgba(232,96,28,0.4); }
.alpha-card .letter { font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1; }
.alpha-card .name { font-size: 12px; color: var(--muted); margin-top: 2px; }
.alpha-card .pron { font-size: 13px; font-weight: 500; margin-top: 4px; }
.alpha-card .ex { font-size: 12px; color: var(--muted2); margin-top: 2px; font-style: italic; }
.alpha-card.special { border-color: rgba(96,165,250,0.3); }

/* --- Vocabulary table ------------------------------------- */
.tbl { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.tbl th {
  text-align: left;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
.tbl td { padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: var(--surface); }
.tbl .nl { font-weight: 600; font-size: 16px; }
.tbl .ex { color: var(--muted); font-style: italic; font-size: 13px; }
.tbl .warn { color: var(--accent); font-size: 11px; font-weight: 600; }

/* --- Tip / warning boxes ---------------------------------- */
.tip-box {
  background: rgba(96,165,250,0.06);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--muted);
}
.tip-box strong { color: #60a5fa; }

.warn-box {
  background: rgba(232,96,28,0.06);
  border: 1px solid rgba(232,96,28,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--muted);
}
.warn-box strong { color: var(--accent); }

/* --- Article CTA box -------------------------------------- */
.article-cta {
  background: rgba(232,96,28,0.08);
  border: 1px solid rgba(232,96,28,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
  text-align: center;
}
.article-cta h2 { border: none; padding: 0; margin: 0 0 8px; font-family: 'DM Sans', sans-serif; font-size: 18px; }
.article-cta p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
