/* Accessibility + far-sightedness overrides */

/* Larger base font and generous line height */
:root {
  --md-typeset-font-size: 1.1rem;
}

.md-typeset {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #111111;
}

/* Headings — high contrast, slightly larger */
.md-typeset h1 {
  font-size: 2rem;
  color: #b71c1c;   /* deep red, passes AA on white */
}

.md-typeset h2 {
  font-size: 1.55rem;
  color: #1a1a1a;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.2em;
}

.md-typeset h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
}

/* Body text — near-black for max contrast on white */
.md-typeset p,
.md-typeset li {
  color: #111111;
}

/* Links — dark red, underlined for visibility without relying on color alone */
.md-typeset a {
  color: #c62828;
  text-decoration: underline;
}

.md-typeset a:hover {
  color: #7f0000;
}

/* Nav sidebar — larger text, high contrast */
.md-nav__item .md-nav__link {
  font-size: 0.95rem;
  color: #212121;
}

.md-nav__item--active > .md-nav__link,
.md-nav__link:hover {
  color: #b71c1c;
  font-weight: 600;
}

/* Table — readable borders and alternating rows */
.md-typeset table:not([class]) {
  font-size: 1rem;
  border-collapse: collapse;
  width: 100%;
}

.md-typeset table:not([class]) th {
  background-color: #c62828;
  color: #ffffff;
  padding: 0.65em 1em;
  font-size: 1rem;
}

.md-typeset table:not([class]) td {
  padding: 0.6em 1em;
  color: #111111;
  border-bottom: 1px solid #bdbdbd;
}

.md-typeset table:not([class]) tr:nth-child(even) td {
  background-color: #f5f5f5;
}

/* Code — dark text on light grey, readable */
.md-typeset code {
  font-size: 0.95rem;
  background-color: #f0f0f0;
  color: #1a1a1a;
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Blockquotes (used for category/source metadata) */
.md-typeset blockquote {
  border-left: 4px solid #c62828;
  background-color: #fff8f8;
  padding: 0.5em 1em;
  color: #333333;
  font-size: 1rem;
}

/* Search input */
.md-search__input {
  font-size: 1rem;
}

/* Header bar — ensure contrast on the red primary */
.md-header__title {
  font-size: 1.1rem;
  font-weight: 700;
}
