/* ============================================
   FROM KNOWLEDGE TO JUDGEMENT — Custom Styles
   ============================================ */

/* Typography & Global Spacing */
:root {
  --md-text-font: "Crimson Pro", serif;
  --md-code-font: "Fira Code", monospace;
}

.md-typeset {
    font-size: 0.95rem;
    line-height: 1.8; /* Optimized for long-form reading */
}

/* Hero section on landing page */
.hero-block {
  padding: 3rem 0 2rem 0;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  margin-bottom: 2rem;
}

.hero-block h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-block .subtitle {
  font-size: 1.1rem;
  color: var(--md-default-fg-color--light);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Pull quotes */
blockquote {
  border-left: 4px solid var(--md-accent-fg-color);
  background: var(--md-code-bg-color);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-size: 1.05rem;
}

blockquote p {
  margin: 0;
  font-style: italic;
}

/* Figure captions */
.figure-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--md-default-fg-color--light);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Section metadata (author, date) */
.paper-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--md-default-fg-color--light);
  border-top: 1px solid var(--md-default-fg-color--lightest);
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
  padding: 0.75rem 0;
  margin: 1.5rem 0 2.5rem 0;
}

/* Admonition overrides for key definitions */
.md-typeset .admonition.definition,
.md-typeset details.definition {
  border-left-color: #ff6d00;
}

.md-typeset .definition > .admonition-title,
.md-typeset .definition > summary {
  background-color: rgba(255, 109, 0, 0.1);
}

.md-typeset .definition > .admonition-title::before,
.md-typeset .definition > summary::before {
  background-color: #ff6d00;
}

/* Image figures - with added shadow styling */
.md-typeset img {
  border-radius: 4px;
  display: block;
  margin: 1.5rem auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Adds "paper" depth */
}

/* Specific styling for the hero banner to make it prominent */
img[src*="hero-banner"] {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
}

/* Table styling */
.md-typeset table:not([class]) {
  font-size: 0.9rem;
}

.md-typeset table:not([class]) th {
  background-color: var(--md-code-bg-color);
  font-weight: 600;
}

/* Navigation — active section indicator */
.md-nav__item--active > .md-nav__link {
  font-weight: 600;
}

/* Footer copyright */
.md-footer-meta__inner {
  font-size: 0.8rem;
}

/* Print styles */
@media print {
  .md-header,
  .md-footer,
  .md-sidebar,
  .md-tabs {
    display: none;
  }

  .md-content {
    margin: 0;
    padding: 0;
  }

  blockquote {
    border-left: 3px solid #000;
    background: none;
  }
}