/* TedWiki — Custom theme overrides */

/* ── Typography: bigger, bolder ── */
:root {
  --md-text-font: "Inter", system-ui, -apple-system, sans-serif;
}

.md-typeset {
  font-size: 0.84rem;
  line-height: 1.7;
}

.md-typeset h1 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.md-typeset h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.md-typeset h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Bold text pops more */
.md-typeset strong {
  font-weight: 700;
  color: var(--md-accent-fg-color);
}

/* ── Dark theme refinements ── */
[data-md-color-scheme="slate"] {
  --md-default-bg-color: #1a1a2e;
  --md-default-fg-color--light: #b8b8cc;
  --md-code-bg-color: #16162a;
}

/* Header bar */
.md-header {
  background: #0f0f1e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Sidebar */
.md-sidebar {
  background: transparent;
}

.md-nav__link {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
}

.md-nav__link--active {
  font-weight: 700;
}

/* Sidebar section titles: uppercase */
.md-nav--primary > .md-nav__list > .md-nav__item > .md-nav__link,
.md-nav--primary > .md-nav__list > .md-nav__item > nav > .md-nav__title {
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ── Content width ── */
.md-grid {
  max-width: 1400px;
}

/* Wider center column on wide screens */
@media screen and (min-width: 76.25em) {
  .md-sidebar--primary {
    width: 11rem;
  }
  .md-sidebar--secondary {
    width: 11rem;
  }
}

/* ── Tables ── */
.md-typeset table:not([class]) {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.md-typeset table:not([class]) th {
  background: rgba(255,255,255,0.06);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.md-typeset table:not([class]) td,
.md-typeset table:not([class]) th {
  padding: 0.75rem 1rem;
}

/* ── Links ── */
.md-typeset a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,171,64,0.3);
  transition: border-color 0.2s;
}

.md-typeset a:hover {
  border-bottom-color: var(--md-accent-fg-color);
}

/* ── Blockquotes ── */
.md-typeset blockquote {
  border-left: 3px solid var(--md-accent-fg-color);
  background: rgba(255,255,255,0.03);
  padding: 0.8rem 1.2rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── Images ── */
.md-typeset img {
  border-radius: 6px;
  max-width: 100%;
  margin: 1rem 0;
}

/* ── Lists ── */
.md-typeset li {
  margin-bottom: 0.3rem;
}

/* ── Footer ── */
.md-footer {
  background: #0f0f1e;
}
