/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F1E9DF;
  --cream-75: rgba(241, 233, 223, 0.75);
  --dark-brown: #483A31;
  --rust: #89553E;
  --body-text: #7B6F65;
  --card-bg: #F4EFE9;
  --code-text: #FCFCFA;
  --code-bg: #2D2A2E;
  --code-tab: #444344;
  --radius: 6px;
  --radius-sm: 3px;
  --content-width: 65ch;
  --border-light: rgba(137, 85, 62, 0.1);
  --border-medium: rgba(137, 85, 62, 0.15);
  --border-strong: rgba(137, 85, 62, 0.2);
}

:root[data-theme="dark"] .article-body img {
  filter: invert(1) hue-rotate(180deg);
}

:root[data-theme="dark"] {
  --cream: #1a1714;
  --cream-75: rgba(26, 23, 20, 0.75);
  --dark-brown: #e8ddd0;
  --rust: #c4836a;
  --body-text: #a89e94;
  --card-bg: #242019;
  --code-text: #FCFCFA;
  --code-bg: #2a2628;
  --code-tab: #3a3839;
  --border-light: rgba(200, 180, 160, 0.1);
  --border-medium: rgba(200, 180, 160, 0.15);
  --border-strong: rgba(200, 180, 160, 0.2);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'National Park', sans-serif;
  background-color: var(--cream);
  color: var(--body-text);
  font-size: 1.125rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--dark-brown);
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  text-wrap: pretty;
}

p, li {
  text-wrap: pretty;
}

/* ===== NAVIGATION ===== */
.nav {
  width: min(var(--content-width), 100% - 2rem);
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  flex-shrink: 0;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-right: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--body-text);
}

.nav-links a:hover {
  color: var(--rust);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--body-text);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.theme-toggle svg {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.theme-toggle:hover {
  color: var(--rust);
}

/* ===== BLOG LIST ===== */
.blog-list {
  width: min(var(--content-width), 100% - 2rem);
  margin: 0 auto 4rem;
  padding-top: 3rem;
}

.blog-list-title {
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2rem);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 2rem;
}

.search-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-shortcut {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fragment Mono', monospace;
  font-size: 0.6875rem;
  color: var(--body-text);
  background: var(--cream);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.125rem 0.375rem;
  pointer-events: none;
  opacity: 0.7;
}

.search-input {
  width: 100%;
  padding: 0.625rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--dark-brown);
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
}

.search-input::placeholder {
  color: var(--body-text);
  opacity: 0.6;
}

.search-input:focus {
  border-color: var(--rust);
}

.no-results {
  color: var(--body-text);
  padding: 0.5rem 0;
  border-bottom: none;
}

.blog-posts {
  list-style: none;
  padding: 0;
}

.blog-posts li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.blog-posts time {
  flex-shrink: 0;
  font-family: 'Fragment Mono', monospace;
  font-size: 0.8125rem;
  color: var(--body-text);
}

.blog-posts a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-brown);
  text-decoration: none;
}

.blog-posts a:hover {
  color: var(--rust);
}

/* ===== PAGINATION ===== */
.pagination {
  width: min(var(--content-width), 100% - 2rem);
  margin: 0 auto 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.pagination .page-info {
  font-size: 0.875rem;
  color: var(--dark-brown);
}

.pagination .next-btn,
.pagination .prev-btn {
  background-color: var(--rust);
  color: var(--cream);
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.pagination .next-btn:hover,
.pagination .prev-btn:hover {
  opacity: 0.85;
}

/* ===== FOOTER ===== */
.footer {
  width: min(var(--content-width), 100% - 2rem);
  margin: auto auto 0;
  flex-shrink: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.footer-copy {
  color: var(--body-text);
}

.footer-sep {
  color: var(--body-text);
  opacity: 0.4;
  margin: 0 0.5rem;
}

.footer a {
  color: var(--body-text);
}

.footer a:hover {
  color: var(--rust);
}

/* ===== ARTICLE CATEGORIES ===== */
.article-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

a.category-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream);
  background-color: var(--rust);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}

.category-tag:hover {
  opacity: 0.85;
}


/* ===== CATEGORIES PAGE ===== */
.category-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-brown);
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}

/* ===== ARTICLE PAGE ===== */
.article-header {
  width: min(var(--content-width), 100% - 2rem);
  margin: 3rem auto 0;
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  border-radius: var(--radius);
  overflow: clip;
}

.article-header::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--dark-brown);
  border-radius: var(--radius);
  pointer-events: none;
}

.article-meta {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.article-meta .author-name,
.article-meta .date {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--dark-brown);
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.article-header h1 {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-brown);
  text-align: center;
}

.article-paper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.article-paper .paper-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--dark-brown);
}

.article-paper .paper-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--rust);
  text-decoration: none;
  border: 1px solid var(--rust);
  border-radius: var(--radius);
  padding: 0.4rem 0.9rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.article-paper .paper-link:hover {
  background-color: var(--rust);
  color: var(--cream);
}

/* ===== ARTICLE BODY ===== */
.article-body {
  width: min(var(--content-width), 100% - 2rem);
  margin: 0 auto;
  padding: 3rem 0 4rem;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

.article-body p {
  margin-bottom: 1em;
}

.article-body h2 {
  font-size: clamp(1.375rem, 1.25rem + 0.625vw, 1.75rem);
  font-weight: 700;
  color: var(--dark-brown);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.article-body h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.article-body blockquote {
  padding: 0 0 0 1.75rem;
  margin: 0 0 2.5rem;
  position: relative;
}

.article-body blockquote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background-color: var(--rust);
  border-radius: 4px;
}

.article-body blockquote p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--rust);
  margin-bottom: 0;
  font-weight: 500;
}

.article-body a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body code {
  font-family: 'Fragment Mono', monospace;
  font-size: 0.875em;
  color: var(--dark-brown);
  background-color: var(--card-bg);
  padding: 0.125em 0.375em;
  border-radius: var(--radius-sm);
}

.article-body .code-block {
  margin-bottom: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-body .code-block .code-tab {
  background-color: var(--code-tab);
  padding: 0.5rem 1rem;
  font-family: 'Fragment Mono', monospace;
  font-size: 0.75rem;
  color: var(--code-text);
  opacity: 0.7;
  display: inline-block;
  border-radius: var(--radius) var(--radius) 0 0;
}

.article-body .code-block pre {
  background-color: var(--code-bg);
  padding: 1.5rem;
  margin: 0;
  border-radius: 0;
  overflow-x: auto;
}

.article-body pre {
  background-color: var(--code-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 1.75rem;
}

.article-body pre code,
.highlight pre code {
  font-family: 'Fragment Mono', monospace;
  font-size: 0.8125rem;
  color: var(--code-text);
  background: none;
  padding: 0;
  border-radius: 0;
  line-height: 1.6;
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1em;
}

.article-body li {
  margin-bottom: 0.5em;
}

.article-body strong {
  font-weight: 700;
  color: var(--dark-brown);
}

.article-body img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .article-body img.figure-small {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* figure-default: safe responsive image. Renders at the SVG's intrinsic
   size when the article column is wide enough, scales down on narrower
   viewports. Never overflows the article column. */
.article-body img.figure-default {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
}

.article-body {
  counter-reset: figure table;
}

.article-body .image-caption,
.article-body .table-caption {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--body-text);
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 1.75rem;
}

.article-body .image-caption {
  counter-increment: figure;
}

.article-body .image-caption::before {
  content: "Figure " counter(figure) ": ";
  font-weight: 700;
  font-style: normal;
}

.article-body .table-caption {
  counter-increment: table;
}

.article-body .table-caption::before {
  content: "Table " counter(table) ": ";
  font-weight: 700;
  font-style: normal;
}

/* ===== RELATED POSTS ===== */
.related-posts {
  width: min(var(--content-width), 100% - 2rem);
  margin: 0 auto;
  padding: 0 0 3rem;
  border-top: 1px solid var(--border-medium);
}

.related-posts h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin: 2rem 0 1rem;
}

/* ===== DISCLOSURE TIMELINE ===== */
.timeline {
  margin: 1.5rem 0 2rem;
  padding-left: 0;
  list-style: none;
  border-left: 2px solid var(--border-strong);
}

.timeline li {
  padding: 0.5rem 0 0.5rem 1.25rem;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--body-text);
}

.timeline li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--rust);
  border-radius: 50%;
  position: absolute;
  left: -0.3125rem;
  top: 0.875rem;
}

.timeline .timeline-date {
  font-weight: 700;
  color: var(--dark-brown);
}

/* ===== INFO BOX ===== */
.info-box {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
}

.info-box p {
  font-size: 0.9375rem;
  color: var(--body-text);
  margin-bottom: 0.5rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* ===== COMPARISON DIAGRAM ===== */
.comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0 2.5rem;
}

.comparison-col {
  flex: 1 1 12rem;
  text-align: center;
}

.comparison-col h4 {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.comparison-col .comparison-sub {
  font-size: 0.8125rem;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 1rem;
}

.comparison-col .diagram-box {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  min-height: 11.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.diagram-label {
  font-size: 0.8125rem;
  color: var(--body-text);
}

.diagram-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.diagram-badge.safe {
  background-color: #4a9e6e;
  color: var(--cream);
}

.diagram-badge.danger {
  background-color: #c44;
  color: var(--cream);
}

/* ===== TABLE ===== */
.article-body table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem auto 1.75rem;
  font-size: 0.9em;
  overflow-x: auto;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
}

.article-body th {
  background-color: var(--dark-brown);
  color: var(--cream);
  font-weight: 700;
  padding: 0.625rem 1rem;
  text-align: center;
  border: 2px solid var(--border-strong);
  border-left: none;
}

.article-body th:first-child {
  border-left: 2px solid var(--border-strong);
  border-radius: var(--radius) 0 0 0;
}

.article-body th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.article-body td {
  padding: 0.625rem 1rem;
  border: 2px solid var(--border-medium);
  border-top: none;
  border-left: none;
  color: var(--body-text);
  text-align: center;
}

.article-body td:first-child {
  border-left: 2px solid var(--border-medium);
}

.article-body tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}

.article-body tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.article-body .status-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-body .status-badge.new {
  background-color: #e87040;
  color: var(--cream);
}

.article-body .status-badge.ok {
  background-color: #4a9e6e;
  color: var(--cream);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .blog-posts li {
    flex-direction: column;
    gap: 0.125rem;
    padding: 0.625rem 0;
  }
}

/* ===== SCROLL BUTTONS ===== */
.scroll-btns {
  position: fixed;
  bottom: 2rem;
  right: max(1rem, calc(50% - 38ch));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.scroll-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--dark-brown);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s;
}

.scroll-btn:hover {
  opacity: 0.85;
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
  margin-bottom: 2rem;
}

.toc-toggle {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-brown);
  cursor: pointer;
  transition: background-color 0.2s;
}

.toc-toggle:hover {
  background-color: var(--card-bg);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  border-left: 2px solid var(--border-medium);
  padding-left: 1rem;
}

.toc-list li {
  margin-bottom: 0.375rem;
}

.toc-list li a {
  font-size: 0.875rem;
  color: var(--body-text);
  text-decoration: none;
}

.toc-list li a:hover {
  color: var(--rust);
}

.toc-list .toc-indent {
  padding-left: 1rem;
}

/* Sticky TOC sidebar on wider viewports (>=1200px) — sits to the left of the content column and stays visible while scrolling. Below this, the collapsible inline TOC is used (there isn't enough horizontal room for a sidebar alongside the 65ch column). */
@media (min-width: 1200px) {
  .article-body .toc {
    position: fixed;
    top: 6rem;
    left: max(1rem, calc(50% - 32.5ch - 18rem));
    width: 15rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    margin-bottom: 0;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
  }

  .article-body .toc::before {
    content: "Contents";
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
  }

  .article-body .toc-toggle {
    display: none;
  }

  .article-body .toc-list {
    display: block;
    margin-top: 0;
  }
}

/* ===== CODE COPY BUTTON ===== */
.code-wrapper {
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--code-tab);
  color: var(--code-text);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.625rem;
  font-family: 'Fragment Mono', monospace;
  font-size: 0.6875rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.copy-btn:hover {
  opacity: 1;
}

/* ===== KATEX MATH ===== */
.katex { color: var(--dark-brown); }
.katex-display { color: var(--dark-brown); }

/* ===== TABLE WRAPPER (horizontal scroll for wide tables) ===== */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem auto 1.75rem;
  width: fit-content;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper table {
  margin: 0;
}

/* ===== ROUGE SYNTAX HIGHLIGHTING (Monokai) ===== */
.highlight {
  background-color: var(--code-bg);
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  overflow-x: auto;
}

.highlight pre {
  margin: 0;
}

.highlight .hll { background-color: #49483e }
.highlight .c   { color: #75715e }           /* Comment */
.highlight .err { color: #f92672 }           /* Error */
.highlight .k   { color: #66d9ef }           /* Keyword */
.highlight .l   { color: #ae81ff }           /* Literal */
.highlight .n   { color: #f8f8f2 }           /* Name */
.highlight .o   { color: #f92672 }           /* Operator */
.highlight .p   { color: #f8f8f2 }           /* Punctuation */
.highlight .cm  { color: #75715e }           /* Comment.Multiline */
.highlight .cp  { color: #75715e }           /* Comment.Preproc */
.highlight .c1  { color: #75715e }           /* Comment.Single */
.highlight .cs  { color: #75715e }           /* Comment.Special */
.highlight .gd  { color: #f92672 }           /* Generic.Deleted */
.highlight .ge  { font-style: italic }       /* Generic.Emph */
.highlight .gi  { color: #a6e22e }           /* Generic.Inserted */
.highlight .gs  { font-weight: bold }        /* Generic.Strong */
.highlight .gu  { color: #75715e }           /* Generic.Subheading */
.highlight .kc  { color: #66d9ef }           /* Keyword.Constant */
.highlight .kd  { color: #66d9ef }           /* Keyword.Declaration */
.highlight .kn  { color: #f92672 }           /* Keyword.Namespace */
.highlight .kp  { color: #66d9ef }           /* Keyword.Pseudo */
.highlight .kr  { color: #66d9ef }           /* Keyword.Reserved */
.highlight .kt  { color: #66d9ef }           /* Keyword.Type */
.highlight .ld  { color: #e6db74 }           /* Literal.Date */
.highlight .m   { color: #ae81ff }           /* Literal.Number */
.highlight .s   { color: #e6db74 }           /* Literal.String */
.highlight .na  { color: #a6e22e }           /* Name.Attribute */
.highlight .nb  { color: #f8f8f2 }           /* Name.Builtin */
.highlight .nc  { color: #a6e22e }           /* Name.Class */
.highlight .no  { color: #66d9ef }           /* Name.Constant */
.highlight .nd  { color: #a6e22e }           /* Name.Decorator */
.highlight .ni  { color: #f8f8f2 }           /* Name.Entity */
.highlight .ne  { color: #a6e22e }           /* Name.Exception */
.highlight .nf  { color: #a6e22e }           /* Name.Function */
.highlight .nl  { color: #f8f8f2 }           /* Name.Label */
.highlight .nn  { color: #f8f8f2 }           /* Name.Namespace */
.highlight .nx  { color: #a6e22e }           /* Name.Other */
.highlight .py  { color: #f8f8f2 }           /* Name.Property */
.highlight .nt  { color: #f92672 }           /* Name.Tag */
.highlight .nv  { color: #f8f8f2 }           /* Name.Variable */
.highlight .ow  { color: #f92672 }           /* Operator.Word */
.highlight .w   { color: #f8f8f2 }           /* Text.Whitespace */
.highlight .mf  { color: #ae81ff }           /* Literal.Number.Float */
.highlight .mh  { color: #ae81ff }           /* Literal.Number.Hex */
.highlight .mi  { color: #ae81ff }           /* Literal.Number.Integer */
.highlight .mo  { color: #ae81ff }           /* Literal.Number.Oct */
.highlight .sb  { color: #e6db74 }           /* Literal.String.Backtick */
.highlight .sc  { color: #e6db74 }           /* Literal.String.Char */
.highlight .sd  { color: #e6db74 }           /* Literal.String.Doc */
.highlight .s2  { color: #e6db74 }           /* Literal.String.Double */
.highlight .se  { color: #ae81ff }           /* Literal.String.Escape */
.highlight .sh  { color: #e6db74 }           /* Literal.String.Heredoc */
.highlight .si  { color: #e6db74 }           /* Literal.String.Interpol */
.highlight .sx  { color: #e6db74 }           /* Literal.String.Other */
.highlight .sr  { color: #e6db74 }           /* Literal.String.Regex */
.highlight .s1  { color: #e6db74 }           /* Literal.String.Single */
.highlight .ss  { color: #e6db74 }           /* Literal.String.Symbol */
.highlight .bp  { color: #f8f8f2 }           /* Name.Builtin.Pseudo */
.highlight .vc  { color: #f8f8f2 }           /* Name.Variable.Class */
.highlight .vg  { color: #f8f8f2 }           /* Name.Variable.Global */
.highlight .vi  { color: #f8f8f2 }           /* Name.Variable.Instance */
.highlight .il  { color: #ae81ff }           /* Literal.Number.Integer.Long */
