:root {
  --dob-bg: #07161c;
  --dob-surface: #0b2028;
  --dob-card: #102a33;
  --dob-border: #24434b;
  --dob-text: #ece7da;
  --dob-text-strong: #f5f0e4;
  --dob-text-muted: #a8b2b0;
  --dob-gold: #c3a45d;
  --dob-gold-muted: #8c713e;
  --dob-gold-hover: #d4b86e;
  --dob-live: #6ea986;
  --dob-planned: #7f9dab;
  --dob-warning: #bd7466;
  --dob-header-height: 66px;
  --dob-rail-width: 4rem;
  --dob-panel-width: 13rem;
}

[data-md-color-scheme="dob"] {
  color-scheme: dark;
  --md-primary-fg-color: var(--dob-bg);
  --md-primary-bg-color: var(--dob-text);
  --md-accent-fg-color: var(--dob-gold-hover);
  --md-default-bg-color: var(--dob-bg);
  --md-default-fg-color: var(--dob-text);
  --md-default-fg-color--light: var(--dob-text-muted);
  --md-default-fg-color--lighter: #758583;
  --md-default-fg-color--lightest: var(--dob-border);
  --md-typeset-color: var(--dob-text);
  --md-typeset-a-color: var(--dob-gold);
  --md-code-fg-color: var(--dob-text);
  --md-code-bg-color: var(--dob-card);
  --md-footer-bg-color: var(--dob-surface);
  --md-footer-bg-color--dark: var(--dob-bg);
  --md-typeset-table-color: var(--dob-border);
}

html {
  scrollbar-color: var(--dob-gold-muted) var(--dob-bg);
}

body,
button,
input {
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  background: var(--dob-bg);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--dob-gold-muted) var(--dob-bg);
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: var(--dob-bg);
}

*::-webkit-scrollbar-thumb {
  background: var(--dob-gold-muted);
  border: 2px solid var(--dob-bg);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--dob-gold-hover);
}

::selection {
  color: var(--dob-bg);
  background: var(--dob-gold-hover);
}

:focus-visible {
  outline: 2px solid var(--dob-gold-hover);
  outline-offset: 2px;
}

/* Header */

.md-header {
  height: var(--dob-header-height);
  background: var(--dob-bg);
  border-bottom: 1px solid var(--dob-gold-muted);
  box-shadow: none;
}

.md-header__inner {
  height: var(--dob-header-height);
  gap: 0.7rem;
}

.md-header__button.md-logo {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dob-gold);
  border-radius: 50%;
}

.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  display: none;
}

.md-header__button.md-logo::after {
  content: "D";
  color: var(--dob-gold-hover);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  line-height: 1;
}

.md-header__title {
  height: auto;
  min-width: 11rem;
  margin: 0;
  flex: 1 1 17rem;
  line-height: 1.1;
}

.dob-header-brand {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.75rem;
  white-space: nowrap;
}

.dob-header-name {
  color: var(--dob-gold-hover);
  font-size: 0.8rem;
  font-weight: 650;
}

.dob-header-tagline {
  overflow: hidden;
  color: var(--dob-text-muted);
  font-size: 0.58rem;
  font-weight: 500;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.dob-header-search-toggle {
  display: none;
}

.dob-header-version {
  padding: 0.24rem 0.48rem;
  color: var(--dob-gold);
  border: 1px solid var(--dob-border);
  font-size: 0.56rem;
  font-weight: 600;
  white-space: nowrap;
}

.md-header__source {
  width: auto;
  max-width: 2.3rem;
  margin: 0;
}

.md-source {
  padding-left: 0.15rem;
}

.md-source__repository,
.md-source__facts {
  display: none;
}

/* Search overlay */

.md-search__form {
  height: 40px;
  background: var(--dob-surface);
  border: 1px solid var(--dob-border);
  border-radius: 2px;
}

.md-search__form:hover,
.md-search__input:focus {
  border-color: var(--dob-gold-muted);
}

.md-search__input,
.md-search__input::placeholder {
  color: var(--dob-text-muted);
}

.md-search__output,
.md-search-result__meta {
  background: var(--dob-surface);
}

.md-search-result__item {
  border-bottom: 1px solid var(--dob-border);
}

.md-search-result__link:hover {
  background: var(--dob-card);
}

.md-search-result__article--document .md-search-result__title {
  color: var(--dob-gold-hover);
}

/* Atlas navigation */

.dob-atlas-mobile {
  display: none;
}

.dob-atlas-nav svg {
  fill: currentcolor;
}

.dob-atlas-desktop {
  display: grid;
  width: calc(var(--dob-rail-width) + var(--dob-panel-width));
  grid-template-columns: var(--dob-rail-width) var(--dob-panel-width);
}

.dob-atlas-rail {
  display: flex;
  box-sizing: border-box;
  width: var(--dob-rail-width);
  padding: 0.9rem 0;
  align-items: center;
  flex-direction: column;
  gap: 0.32rem;
  background: var(--dob-surface);
  border-right: 1px solid var(--dob-border);
}

.dob-atlas-rail__item {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--dob-text-muted);
  background: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.dob-atlas-rail__item svg {
  width: 19px;
  height: 19px;
}

.dob-atlas-rail__item:hover,
.dob-atlas-rail__item:focus-visible {
  color: var(--dob-gold-hover);
  background: var(--dob-card);
}

.dob-atlas-rail__item.is-current,
.dob-atlas-rail__item[aria-expanded="true"] {
  color: var(--dob-bg);
  background: var(--dob-gold-hover);
  box-shadow: inset 0 0 0 1px var(--dob-gold);
}

.dob-atlas-panels {
  width: var(--dob-panel-width);
  min-width: 0;
  background: var(--dob-surface);
}

.dob-atlas-panel {
  box-sizing: border-box;
  width: 100%;
  padding: 0.9rem 0.8rem 1.3rem;
}

.dob-atlas-panel[hidden] {
  display: none;
}

.dob-atlas-panel__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.15rem 0 0.85rem;
  border-bottom: 1px solid var(--dob-border);
}

.dob-atlas-panel__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--dob-gold);
  border: 1px solid var(--dob-border);
}

.dob-atlas-panel__icon svg {
  width: 17px;
  height: 17px;
}

.dob-atlas-panel__header div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dob-atlas-panel__header small {
  color: var(--dob-gold-muted);
  font-size: 0.52rem;
}

.dob-atlas-panel__header strong {
  overflow: hidden;
  color: var(--dob-text-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dob-atlas-panel__header button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--dob-text-muted);
  background: transparent;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
}

.dob-atlas-panel__header button:hover,
.dob-atlas-panel__header button:focus-visible {
  color: var(--dob-gold-hover);
  background: var(--dob-card);
}

.dob-atlas-panel__list,
.dob-atlas-panel__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dob-atlas-panel__list {
  padding-top: 0.55rem;
}

.dob-atlas-panel__list a {
  display: flex;
  min-height: 38px;
  padding: 0.45rem 0.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--dob-text-muted);
  border-bottom: 1px solid color-mix(in srgb, var(--dob-border) 70%, transparent);
  font-size: 0.68rem;
  text-decoration: none;
  transition: color 140ms ease, background-color 140ms ease, padding-left 140ms ease;
}

.dob-atlas-panel__list a svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.dob-atlas-panel__list a:hover,
.dob-atlas-panel__list a:focus-visible,
.dob-atlas-panel__list a[aria-current="page"] {
  padding-left: 0.55rem;
  color: var(--dob-gold-hover);
  background: var(--dob-card);
}

.dob-atlas-panel__list a[aria-current="page"] {
  box-shadow: inset 2px 0 var(--dob-gold);
}

/* Document layout */

.md-main__inner {
  margin-top: 1.25rem;
}

.md-content {
  min-width: 0;
}

.md-content__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 1.35rem 3.5rem;
}

.md-typeset {
  color: var(--dob-text);
  font-size: 0.79rem;
  line-height: 1.7;
}

.md-typeset h1,
.md-typeset h2,
.md-typeset h3,
.md-typeset h4 {
  color: var(--dob-text);
  font-weight: 600;
  letter-spacing: 0;
}

.md-typeset h1,
.md-typeset h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.md-typeset h1 {
  margin: 0 0 1.35rem;
  font-size: 2.05rem;
  line-height: 1.2;
}

.md-typeset h2 {
  margin-top: 2.3rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--dob-border);
  color: var(--dob-gold-hover);
  font-size: 1.36rem;
}

.md-typeset h3 {
  color: var(--dob-gold);
  font-size: 0.98rem;
}

.md-typeset h4 {
  color: var(--dob-text-strong);
}

.md-typeset p,
.md-typeset > ul,
.md-typeset > ol {
  max-width: 82ch;
}

.md-typeset a {
  color: var(--dob-gold);
  text-decoration-color: transparent;
  text-underline-offset: 0.16em;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}

.md-typeset a:hover,
.md-typeset a:focus {
  color: var(--dob-gold-hover);
  text-decoration-color: currentcolor;
}

.md-typeset strong {
  color: var(--dob-text-strong);
}

.md-typeset hr {
  border-bottom-color: var(--dob-border);
}

.md-typeset code {
  border: 1px solid var(--dob-border);
  border-radius: 2px;
  color: var(--dob-gold-hover);
}

.md-typeset pre > code {
  color: var(--dob-text);
}

.md-typeset .highlight,
.md-typeset pre {
  border-radius: 2px;
}

.md-clipboard:hover,
.md-clipboard:focus {
  color: var(--dob-gold-hover);
}

.md-typeset table:not([class]) {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--dob-border);
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}

.md-typeset table:not([class]) th {
  padding: 0.7rem 0.8rem;
  background: var(--dob-surface);
  color: var(--dob-gold-hover);
  border-bottom: 1px solid var(--dob-gold-muted);
}

.md-typeset table:not([class]) td {
  padding: 0.62rem 0.8rem;
  border-top: 1px solid var(--dob-border);
}

.md-typeset table:not([class]) tr:nth-child(even) td {
  background: color-mix(in srgb, var(--dob-surface) 45%, transparent);
}

.md-typeset table:not([class]) tr:hover td {
  background: color-mix(in srgb, var(--dob-card) 70%, transparent);
}

.md-typeset .admonition,
.md-typeset details {
  border: 1px solid var(--dob-border);
  border-left-width: 3px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--dob-card) 78%, transparent);
  color: var(--dob-text);
  box-shadow: none;
}

.md-typeset .admonition-title,
.md-typeset summary {
  background: var(--dob-surface);
  color: var(--dob-text);
}

.md-typeset .admonition.success {
  border-color: var(--dob-live);
}

.md-typeset .success > .admonition-title::before {
  background-color: var(--dob-live);
}

.md-typeset .admonition.info {
  border-color: var(--dob-planned);
}

.md-typeset .info > .admonition-title::before {
  background-color: var(--dob-planned);
}

.md-typeset .admonition.warning {
  border-color: var(--dob-gold);
}

.md-typeset .warning > .admonition-title::before {
  background-color: var(--dob-gold);
}

.md-typeset .admonition.danger,
.md-typeset .admonition.failure {
  border-color: var(--dob-warning);
}

.version-strip {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}

.version-strip span {
  padding: 0.35rem 0.65rem;
  color: var(--dob-text-muted);
  background: var(--dob-card);
  border: 1px solid var(--dob-border);
  border-radius: 2px;
  font-weight: 600;
}

.md-sidebar--secondary {
  color: var(--dob-text-muted);
}

.md-sidebar--secondary .md-nav__title {
  color: var(--dob-text-strong);
  background: transparent;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
}

.md-sidebar--secondary .md-nav__link {
  padding: 0.28rem 0.45rem;
  color: var(--dob-text-muted);
  border-left: 1px solid transparent;
  font-size: 0.64rem;
}

.md-sidebar--secondary .md-nav__link:hover,
.md-sidebar--secondary .md-nav__link--active {
  color: var(--dob-gold-hover);
  border-left-color: var(--dob-gold);
}

/* Atlas home */

.dob-home {
  min-width: 0;
}

.dob-home .md-content__inner {
  max-width: 72rem;
  padding-top: 0.8rem;
}

.dob-atlas-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10rem;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 0 2.2rem;
  border-bottom: 1px solid var(--dob-border);
}

.dob-atlas-kicker {
  margin: 0;
  color: var(--dob-gold);
  font-size: 0.61rem;
  font-weight: 650;
  text-transform: uppercase;
}

.md-typeset .dob-atlas-hero h1 {
  max-width: 19ch;
  margin: 0.65rem 0 0.85rem;
  color: var(--dob-text-strong);
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 1.16;
}

.dob-atlas-hero__copy > p:last-child {
  max-width: 47rem;
  margin: 0;
  color: var(--dob-text-muted);
  font-size: 0.9rem;
}

.dob-atlas-mark {
  display: grid;
  width: 10rem;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  color: var(--dob-gold);
  border: 1px solid var(--dob-gold-muted);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px var(--dob-bg), inset 0 0 0 9px var(--dob-border);
}

.dob-atlas-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.dob-atlas-mark small {
  margin-top: 0.45rem;
  color: var(--dob-text-muted);
  font-size: 0.48rem;
}

.dob-atlas-launcher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin: 1.4rem 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--dob-gold-muted);
  background: linear-gradient(115deg, var(--dob-surface), transparent);
  box-shadow: inset 3px 0 0 var(--dob-gold);
}

.md-typeset .dob-atlas-launcher h2 {
  margin: 0.28rem 0 0.25rem;
  padding: 0;
  color: var(--dob-text-strong);
  border: 0;
  font-size: 1.1rem;
}

.dob-atlas-launcher p:last-child {
  margin: 0;
  color: var(--dob-text-muted);
  font-size: 0.72rem;
}

.md-typeset .dob-atlas-launcher > a {
  display: inline-flex;
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--dob-bg);
  background: var(--dob-gold);
  font-size: 0.62rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 140ms ease, transform 140ms ease;
}

.md-typeset .dob-atlas-launcher > a:hover,
.md-typeset .dob-atlas-launcher > a:focus-visible {
  color: var(--dob-bg);
  background: var(--dob-gold-hover);
  transform: translateY(-1px);
}

.dob-atlas-journeys {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--dob-border);
}

.md-typeset .dob-atlas-journeys > a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-width: 0;
  padding: 1rem 0.85rem;
  column-gap: 0.65rem;
  color: var(--dob-text);
  text-decoration: none;
  transition: color 140ms ease, background-color 140ms ease;
}

.md-typeset .dob-atlas-journeys > a + a {
  border-left: 1px solid var(--dob-border);
}

.md-typeset .dob-atlas-journeys > a:hover,
.md-typeset .dob-atlas-journeys > a:focus-visible {
  color: var(--dob-gold-hover);
  background: var(--dob-surface);
}

.dob-atlas-journeys > a > span {
  grid-row: span 2;
  color: var(--dob-gold-muted);
  font-size: 0.65rem;
}

.dob-atlas-journeys strong {
  overflow: hidden;
  color: inherit;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dob-atlas-journeys small {
  overflow: hidden;
  color: var(--dob-text-muted);
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dob-atlas-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 2.2rem;
  padding: 2.3rem 0;
}

.dob-atlas-feature {
  padding-right: 2.2rem;
  border-right: 1px solid var(--dob-border);
}

.md-typeset .dob-atlas-feature h2 {
  max-width: 22ch;
  margin: 0.6rem 0 0.7rem;
  padding: 0;
  color: var(--dob-text-strong);
  border: 0;
  font-size: 1.48rem;
  line-height: 1.25;
}

.dob-atlas-feature > p:not(.dob-atlas-kicker) {
  max-width: 52ch;
  color: var(--dob-text-muted);
}

.md-typeset .dob-atlas-feature > a,
.md-typeset .dob-atlas-update > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--dob-gold);
  font-size: 0.62rem;
  font-weight: 650;
  text-decoration: none;
}

.dob-atlas-index {
  display: flex;
  flex-direction: column;
}

.md-typeset .dob-atlas-index > a {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) auto;
  min-height: 3.3rem;
  padding: 0.65rem 0;
  align-items: center;
  gap: 0.75rem;
  color: var(--dob-text);
  border-bottom: 1px solid var(--dob-border);
  text-decoration: none;
  transition: color 140ms ease, padding-left 140ms ease;
}

.md-typeset .dob-atlas-index > a:hover,
.md-typeset .dob-atlas-index > a:focus-visible {
  padding-left: 0.35rem;
  color: var(--dob-gold-hover);
}

.dob-atlas-index__code {
  color: var(--dob-gold-muted);
  font-family: Consolas, monospace;
  font-size: 0.58rem;
}

.dob-atlas-index > a > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.dob-atlas-index strong {
  color: inherit;
  font-size: 0.74rem;
}

.dob-atlas-index small {
  overflow: hidden;
  color: var(--dob-text-muted);
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dob-atlas-index i {
  color: var(--dob-gold);
  font-style: normal;
}

.dob-atlas-update {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--dob-border);
}

.md-typeset .dob-atlas-update h2 {
  margin: 0.28rem 0 0;
  padding: 0;
  color: var(--dob-text-strong);
  border: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
}

.dob-atlas-update > p {
  margin: 0;
  color: var(--dob-text-muted);
  font-size: 0.7rem;
}

/* Footer and utilities */

.dob-footer {
  border-top: 1px solid var(--dob-border);
  background: var(--dob-bg);
}

.dob-footer__inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--dob-text-muted);
  font-size: 0.62rem;
}

.dob-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dob-footer__brand::before {
  content: "D";
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  color: var(--dob-gold);
  border: 1px solid var(--dob-gold-muted);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.dob-footer nav {
  display: flex;
  gap: 1rem;
}

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

.dob-footer a:hover,
.dob-footer a:focus {
  color: var(--dob-gold-hover);
}

.md-top {
  color: var(--dob-gold);
  background: var(--dob-surface);
  border: 1px solid var(--dob-border);
  border-radius: 2px;
  box-shadow: none;
}

/* Desktop */

@media screen and (min-width: 76.25em) {
  .md-grid {
    max-width: 96rem;
  }

  .md-sidebar--primary {
    width: var(--dob-rail-width);
    transition: width 180ms ease;
  }

  .dob-atlas-nav > .md-nav__title {
    display: none;
  }

  .md-header .md-search {
    width: min(27vw, 21rem);
    min-width: 13rem;
    margin: 0;
    flex: 0 1 21rem;
  }

  body.dob-atlas-nav-open .md-sidebar--primary {
    width: calc(var(--dob-rail-width) + var(--dob-panel-width));
  }

  .md-sidebar--primary .md-sidebar__scrollwrap {
    margin: 0;
    overflow-x: hidden;
  }

  .md-sidebar--primary .md-sidebar__inner {
    padding: 0;
  }

  .md-sidebar--secondary {
    width: 10.5rem;
  }

  .dob-home .md-content__inner {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Tablet and mobile */

@media screen and (max-width: 76.234375em) {
  .dob-atlas-desktop {
    display: none;
  }

  .dob-atlas-mobile {
    display: block;
  }

  .md-nav--primary .md-nav__title[for="__drawer"] {
    height: 5.2rem;
    padding-top: 3.25rem;
    color: var(--dob-gold-hover);
    background: var(--dob-surface);
  }

  .md-nav--primary .md-nav__title .md-logo {
    top: 0.7rem;
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dob-gold);
    border-radius: 50%;
  }

  .md-nav--primary .md-nav__title .md-logo img,
  .md-nav--primary .md-nav__title .md-logo svg {
    display: none;
  }

  .md-nav--primary .md-nav__title .md-logo::after {
    content: "D";
    color: var(--dob-gold-hover);
    font-family: Georgia, "Times New Roman", serif;
  }

  .md-sidebar--primary {
    width: 17rem;
    background: var(--dob-surface);
  }

  [dir="ltr"] .md-sidebar--primary {
    left: 0;
    transform: translateX(-100%);
  }

  [dir="ltr"] [data-md-toggle="drawer"]:checked ~ .md-container .md-sidebar--primary {
    transform: translateX(0);
  }

  .dob-atlas-mobile__list,
  .dob-atlas-mobile__list ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .dob-atlas-mobile__list {
    padding: 0.65rem;
  }

  .dob-atlas-mobile__list > li > a,
  .dob-atlas-mobile summary {
    display: grid;
    grid-template-columns: 1.4rem minmax(0, 1fr) auto;
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    align-items: center;
    gap: 0.55rem;
    color: var(--dob-text-muted);
    border-bottom: 1px solid var(--dob-border);
    cursor: pointer;
    font-size: 0.69rem;
    list-style: none;
    text-decoration: none;
  }

  .dob-atlas-mobile summary::-webkit-details-marker {
    display: none;
  }

  .dob-atlas-mobile__list > li > a svg,
  .dob-atlas-mobile summary svg {
    width: 18px;
    height: 18px;
  }

  .dob-atlas-mobile summary svg:last-child {
    width: 15px;
    height: 15px;
    transition: transform 140ms ease;
  }

  .dob-atlas-mobile details[open] > summary svg:last-child {
    transform: rotate(180deg);
  }

  .dob-atlas-mobile__list > li > a:hover,
  .dob-atlas-mobile__list > li > a:focus-visible,
  .dob-atlas-mobile summary:hover,
  .dob-atlas-mobile summary:focus-visible,
  .dob-atlas-mobile [aria-current="page"] {
    color: var(--dob-gold-hover);
    background: var(--dob-card);
  }

  .dob-atlas-mobile details ul {
    padding: 0.25rem 0 0.55rem 2.05rem;
  }

  .dob-atlas-mobile details li a {
    display: block;
    padding: 0.42rem 0.55rem;
    color: var(--dob-text-muted);
    border-left: 1px solid var(--dob-border);
    font-size: 0.66rem;
    text-decoration: none;
  }

  .dob-atlas-mobile details li a:hover,
  .dob-atlas-mobile details li a:focus-visible,
  .dob-atlas-mobile details li a[aria-current="page"] {
    color: var(--dob-gold-hover);
    border-left-color: var(--dob-gold);
  }

  .md-content__inner,
  .dob-home .md-content__inner {
    max-width: none;
  }
}

@media screen and (max-width: 59.984375em) {
  .dob-header-tagline,
  .dob-header-version,
  .md-header__source {
    display: none;
  }

  .dob-header-search-toggle {
    display: inline-flex;
  }

  .md-header__button.md-logo {
    display: none;
  }

  .md-header__title {
    min-width: 0;
  }

  .dob-header-name {
    font-size: 0.76rem;
  }

  .md-content__inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .dob-atlas-hero {
    grid-template-columns: minmax(0, 1fr) 7.5rem;
    gap: 1.5rem;
  }

  .dob-atlas-mark {
    width: 7.5rem;
  }

  .md-typeset .dob-atlas-hero h1 {
    font-size: 2.05rem;
  }

  .dob-atlas-content {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.9fr);
    gap: 1.4rem;
  }

  .dob-atlas-feature {
    padding-right: 1.4rem;
  }

  .dob-atlas-update {
    grid-template-columns: 1fr auto;
  }

  .dob-atlas-update > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .md-typeset__table,
  .md-typeset__scrollwrap {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }

  .md-typeset__table {
    display: block;
    overflow-x: auto;
  }
}

@media screen and (max-width: 44.984375em) {
  .md-main__inner {
    margin-top: 0.65rem;
  }

  .md-content__inner,
  .dob-home .md-content__inner {
    padding: 0.6rem 0.85rem 2.5rem;
  }

  .md-typeset {
    font-size: 0.75rem;
  }

  .md-typeset h1 {
    font-size: 1.65rem;
  }

  .md-typeset h2 {
    font-size: 1.16rem;
  }

  .dob-atlas-hero {
    grid-template-columns: 1fr;
    padding: 1.4rem 0 1.6rem;
  }

  .dob-atlas-mark {
    display: none;
  }

  .md-typeset .dob-atlas-hero h1 {
    max-width: none;
    font-size: 1.8rem;
  }

  .dob-atlas-hero__copy > p:last-child {
    font-size: 0.8rem;
  }

  .dob-atlas-journeys {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dob-atlas-launcher {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.1rem;
  }

  .md-typeset .dob-atlas-launcher > a {
    width: 100%;
  }

  .md-typeset .dob-atlas-journeys > a:nth-child(3) {
    border-left: 0;
  }

  .md-typeset .dob-atlas-journeys > a:nth-child(n + 3) {
    border-top: 1px solid var(--dob-border);
  }

  .dob-atlas-content {
    grid-template-columns: 1fr;
    padding: 1.7rem 0;
  }

  .dob-atlas-feature {
    padding: 0 0 1.7rem;
    border-right: 0;
    border-bottom: 1px solid var(--dob-border);
  }

  .dob-atlas-update {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dob-atlas-update > p,
  .dob-atlas-update > a {
    grid-column: auto;
    grid-row: auto;
  }

  .md-typeset table:not([class]) {
    min-width: 34rem;
  }

  .dob-footer__inner {
    padding: 0.75rem 0;
    align-items: flex-start;
    flex-direction: column;
  }
}
