/* Custom styling — focused on readability + Romanian typography */

:root {
  --hook-color: #d62828;
  --soft-bg: #f8f9fa;
  --accent: #003049;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter",
               "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern";
  text-rendering: optimizeLegibility;
}

/* Hooks — large dramatic numbers */
.hook-big {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--hook-color);
  margin: 0.5rem 0;
}

.hook-label {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.hook-card {
  padding: 2rem;
  background: var(--soft-bg);
  border-radius: 12px;
  margin: 1rem 0;
  border-left: 6px solid var(--hook-color);
}

/* Callouts more elegant */
.callout {
  border-radius: 8px;
}

/* Quote styling */
blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.25rem;
  font-style: italic;
  color: #444;
  margin: 1.5rem 0;
}

/* Tables more breath */
table {
  font-size: 0.95rem;
}
th {
  background: var(--soft-bg);
}

/* Image full width + rounded */
.figure img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Verdict pills */
.verdict {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.verdict-kept { background: #d4edda; color: #155724; }
.verdict-inprog { background: #fff3cd; color: #856404; }
.verdict-nomention { background: #e2e3e5; color: #383d41; }
.verdict-contradicted { background: #f8d7da; color: #721c24; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--soft-bg);
  border-radius: 12px;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Period markers */
.period-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e9ecef;
  color: #495057;
  font-size: 0.85rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* Smooth code blocks */
pre {
  border-radius: 8px;
  font-size: 0.9rem;
}
