/* ================================================================
   Dark Souls 3 - Ash, Silver, Ember Theme
   Loaded by every /darksouls3/ page after styles.css.
   Silver chrome with First Flame ember for header, headings, and links.
   Signature colours: #EA551E First Flame ember, #d8d8d8 ash silver.
   ================================================================ */

:root {
  --ds3-primary: #8a8a8a;            /* muted mauve-grey (chrome) */
  --ds3-primary-bright: #b0b0b0;     /* hover/highlight */
  --ds3-primary-dim: rgba(138, 138, 138, 0.22);
  --ds3-primary-soft: rgba(138, 138, 138, 0.10);
  --ds3-secondary: #d8d8d8;          /* pale silver */
  --ds3-secondary-bright: #f2f2f2;   /* pale parchment accent */
  --ds3-secondary-dim: rgba(242, 242, 242, 0.16);
  --ds3-heading: #EA551E;            /* First Flame ember */
  --ds3-heading-bright: #EA551E;
  --ds3-heading-dim: rgba(234, 85, 30, 0.16);
  --ds3-heading-border: rgba(234, 85, 30, 0.50);
  --ds3-ergo: #EA551E;               /* First Flame ember */
  --ds3-ergo-bright: #EA551E;
  --ds3-ergo-dim: rgba(234, 85, 30, 0.16);
  --ds3-ergo-border: rgba(234, 85, 30, 0.50);
  --ds3-warning: #c9a23a;            /* amber for warning boxes */
  --ds3-warning-dim: rgba(201, 162, 58, 0.14);
  --ds3-deep: #0c0c0c;
  --ds3-bg-dark: #121212;
  --ds3-bg-card: #1a1a1a;
  --ds3-bg-elev: #242424;
  --ds3-border: rgba(138, 138, 138, 0.28);
  --ds3-border-strong: rgba(242, 242, 242, 0.22);
  --ds3-text: #f0ebe8;
  --ds3-text-dim: rgba(240, 235, 232, 0.90);
  --ds3-text-faint: rgba(240, 235, 232, 0.62);
}

/* ----------------------------------------------------------------
   Page background.
   Checklist pages only; profile/tracker pages keep the site default.
   ---------------------------------------------------------------- */
body[class*="ds3-"]:not(.profile-page):not(.profile-page-content) {
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(234, 85, 30, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 110%, rgba(234, 85, 30, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 110%, rgba(138, 138, 138, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, #121212 0%, #101010 55%, #050505 100%) !important;
  background-attachment: fixed !important;
  color: var(--ds3-text);
}
body[class*="ds3-"] .container { background: transparent !important; }
body[class*="ds3-"] .site-header { border-bottom-color: var(--ds3-border-strong) !important; }

body[class*="ds3-"] .site-footer-new {
  background: #000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

/* Header chrome uses First Flame ember. */
body[class*="ds3-"] .site-header-new {
  --game-color: #EA551E;
}
body[class*="ds3-"] .site-header-new .header-game-outline {
  --game-color: #EA551E;
  color: #fff !important;
  text-shadow: none !important;
}
body[class*="ds3-"] .site-header-new .header-game-outline:hover {
  color: #fff !important;
}
body[class*="ds3-"] .site-header-new .header-tracker-tab,
body[class*="ds3-"] .site-header-new .header-tracker-pill {
  --game-color: #EA551E;
  color: #fff !important;
  text-shadow: none !important;
}
body[class*="ds3-"] .site-header-new .header-tracker-tab:hover,
body[class*="ds3-"] .site-header-new .header-tracker-pill:hover {
  color: #fff8f3 !important;
}
body[class*="ds3-"] .site-header-new .header-game-icon {
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  margin: 0 !important;
  border: 0 !important;
}
body[class*="ds3-"] .site-header-new .header-section-icon {
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  margin: 0 4px 0 0 !important;
  border: 0 !important;
}
body[class*="ds3-"] .site-header-new .header-dropdown-item-icon {
  display: inline-block !important;
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  margin: 0 !important;
  border: 0 !important;
}
body[class*="ds3-"] .site-header-new .header-pill-icon {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  margin: 0 !important;
  border: 0 !important;
}
body[class*="ds3-"] header:not(.site-header-new) .hub-quick-link img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain !important;
  margin: 0 !important;
  border: 0 !important;
}

/* Page <header> defaults to align-items: center which would centre the
   warning box, intro paragraphs and other prose blocks.  Stretch the
   children so they fill the column; the H1 keeps text-align: center. */
body[class*="ds3-"] header:not(.site-header-new) {
  align-items: stretch;
}
body[class*="ds3-"] header:not(.site-header-new) h1,
body[class*="ds3-"] .container > header h1 {
  color: var(--ds3-heading) !important;
  text-shadow: 0 0 28px rgba(234, 85, 30, 0.45);
}
body[class*="ds3-"] .breadcrumbs a { color: var(--ds3-ergo) !important; text-decoration: none; }
body[class*="ds3-"] .breadcrumbs a:hover { text-decoration: underline; color: var(--ds3-ergo-bright) !important; }

/* ----------------------------------------------------------------
   .article-content cascade reset
   ---------------------------------------------------------------- */
body[class*="ds3-"] .article-content {
  font-size: inherit;
  line-height: inherit;
  color: var(--ds3-text);
  overflow-x: visible;
}
body[class*="ds3-"] .article-content img:not(.checklist-icon):not(.ds3-item-link-icon):not(.ds3-lamp-link-icon):not(.ds3-nearest-lamp-icon):not(.header-game-icon):not(.header-section-icon):not(.header-dropdown-item-icon):not(.header-pill-icon) {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  max-width: 100%;
  height: auto;
}
body[class*="ds3-"] .article-content img.ds3-item-link-icon,
body[class*="ds3-"] .article-content img.ds3-lamp-link-icon,
body[class*="ds3-"] .article-content img.ds3-nearest-lamp-icon {
  display: inline;
  width: 1.05em;
  height: 1.05em;
  max-width: 1.05em;
  max-height: 1.05em;
  object-fit: contain;
  margin: 0 0.28em 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  vertical-align: -0.18em;
  position: relative;
  top: 0;
}
body[class*="ds3-"] .article-content a.hub-checklist-item,
body[class*="ds3-"] .article-content a.hub-checklist-item-main,
body[class*="ds3-"] .article-content a.hub-location-card,
body[class*="ds3-"] .article-content a.hub-quick-link,
body[class*="ds3-"] .article-content a.hub-highlight-single,
body[class*="ds3-"] .article-content a.ds3-location-nav-card {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
body[class*="ds3-"] .article-content > p,
body[class*="ds3-"] .page-intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ds3-text-dim);
  margin: 0 0 12px 0;
}
body[class*="ds3-"] .article-content p a,
body[class*="ds3-"] .article-content li a,
body[class*="ds3-"] .page-intro a {
  color: var(--ds3-ergo);
  text-decoration: underline;
  text-decoration-color: var(--ds3-ergo);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  font-weight: 600;
}
body[class*="ds3-"] .article-content p a:hover,
body[class*="ds3-"] .article-content li a:hover,
body[class*="ds3-"] .page-intro a:hover {
  color: var(--ds3-ergo-bright);
  text-decoration-color: var(--ds3-ergo-bright);
  text-decoration-thickness: 2px;
}
body[class*="ds3-"] .article-content > h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ds3-heading);
  margin: 28px 0 12px 0;
  line-height: 1.35;
  letter-spacing: -0.2px;
  border-bottom: none;
  padding-bottom: 0;
}
body[class*="ds3-"] .article-content .region-stat {
  color: var(--ds3-secondary-bright);
  font-weight: 700;
}
body[class*="ds3-"] .article-content > h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ds3-secondary-bright);
  margin: 22px 0 10px 0;
  line-height: 1.4;
}
body[class*="ds3-"] .article-content > p strong,
body[class*="ds3-"] .article-content > ul strong,
body[class*="ds3-"] .article-content > ul li strong,
body[class*="ds3-"] .article-content > ol strong {
  color: var(--ds3-text);
}
body[class*="ds3-"] .article-content table strong,
body[class*="ds3-"] .article-content .item-info strong,
body[class*="ds3-"] .article-content .description-cell strong { color: inherit; }

/* Bullet lists in intro / info copy: tight spacing, custom crimson markers,
   no wasted left gutter. */
body[class*="ds3-"] .article-content > ul,
body[class*="ds3-"] .article-content > ol {
  margin: 4px 0 16px 0;
  padding-left: 4px;
  list-style: none;
}
body[class*="ds3-"] .article-content > ul > li,
body[class*="ds3-"] .article-content > ol > li {
  position: relative;
  margin: 0 0 6px 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ds3-text-dim);
}
body[class*="ds3-"] .article-content > ul > li::marker {
  content: none;
}
body[class*="ds3-"] .article-content > ul > li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds3-heading);
  box-shadow: 0 0 6px rgba(234, 85, 30, 0.45);
}
body[class*="ds3-"] .article-content > ol {
  counter-reset: ds3-ol;
}
body[class*="ds3-"] .article-content > ol > li {
  counter-increment: ds3-ol;
}
body[class*="ds3-"] .article-content > ol > li::before {
  content: counter(ds3-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ds3-heading);
  font-weight: 700;
  font-size: 13px;
}

/* ----------------------------------------------------------------
   Quick-link grid (top of hub page).
   ---------------------------------------------------------------- */
.ds3-quick-links {
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(138, 138, 138, 0.10) 0%, transparent 70%),
    linear-gradient(135deg, rgba(234, 85, 30, 0.06) 0%, rgba(28, 18, 22, 0.95) 50%, rgba(234, 85, 30, 0.05) 100%);
  border: 1px solid var(--ds3-border-strong);
  border-radius: 14px;
  padding: 16px 14px;
  margin: 22px -20px 18px -20px;
  width: calc(100% + 40px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  box-shadow: 0 0 30px rgba(138, 138, 138, 0.10);
}
.ds3-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 102px;
  padding: 12px 8px;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  color: inherit;
  background: rgba(20, 14, 16, 0.5);
  border: 1px solid var(--ds3-border);
  box-sizing: border-box;
}
.ds3-quick-link::after { display: none !important; }
.ds3-quick-link:hover {
  background: rgba(138, 138, 138, 0.08);
  border-color: rgba(138, 138, 138, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}
.ds3-quick-link img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.ds3-quick-link-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--ds3-primary-bright);
  line-height: 1;
}
.ds3-quick-link-name {
  font-size: 12px;
  color: var(--ds3-text);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  max-width: 11em;
}
/* Muted / "coming soon" quick-link variant */
.ds3-quick-link.muted {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: auto;
}
.ds3-quick-link.muted:hover {
  background: rgba(20, 14, 16, 0.5);
  border-color: var(--ds3-border);
  box-shadow: none;
  transform: none;
}
.ds3-quick-link.muted .ds3-quick-link-number {
  color: var(--ds3-text-faint);
}

@media (max-width: 1024px) {
  .ds3-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 12px;
  }
  .ds3-quick-link {
    min-height: 96px;
    padding: 10px 6px;
  }
}
/* Overture checklist + hub: skip-to-section / Overture grid */
body.ds3-overture-checklist .ds3-skip-section,
body.ds3-index .ds3-skip-section {
  margin: 18px 0 22px 0;
  width: 100%;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
body.ds3-index .ds3-hub-overture-grid {
  margin-top: 0;
}
body.ds3-index .ds3-hub-grid-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ds3-heading);
  margin: 22px 0 12px 0;
}
body.ds3-index header > .ds3-hub-grid-title:first-of-type {
  margin-top: 18px;
}
body.ds3-index .ds3-base-game-links {
  margin-top: 0;
}
body.ds3-index .ds3-hub-checklists-heading {
  color: var(--ds3-heading);
}
body.ds3-index .ds3-hub-checklists-heading .ds3-checklists-label {
  color: var(--ds3-heading);
}
body.ds3-index .ds3-row-list .ds3-row-title {
  color: #fff;
}
body.ds3-index .ds3-row-list .ds3-row:hover .ds3-row-title {
  color: #fff;
}
body.ds3-index .ds3-quick-link.muted:not(:has(img)) {
  justify-content: center;
}
body.ds3-overture-checklist .ds3-section-heading {
  scroll-margin-top: 80px;
}
body.ds3-overture-checklist .ds3-skip-link .ds3-quick-link-number,
body.ds3-index .ds3-skip-link .ds3-quick-link-number {
  font-size: 16px;
}
@media (max-width: 1200px) {
  body.ds3-overture-checklist .ds3-skip-section,
  body.ds3-index .ds3-skip-section {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  body.ds3-overture-checklist .ds3-skip-section,
  body.ds3-index .ds3-skip-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  body.ds3-overture-checklist .ds3-skip-section,
  body.ds3-index .ds3-skip-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 14px 0 18px 0;
  }
  body.ds3-overture-checklist .ds3-skip-link,
  body.ds3-index .ds3-skip-link {
    min-height: 84px;
  }
  body.ds3-overture-checklist .ds3-skip-link .ds3-quick-link-number,
  body.ds3-index .ds3-skip-link .ds3-quick-link-number {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .ds3-quick-links {
    margin: 16px -10px 14px -10px;
    width: calc(100% + 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .ds3-quick-link {
    min-height: 92px;
    padding: 10px 6px;
    gap: 6px;
    border-radius: 10px;
  }
  .ds3-quick-link img { width: 38px; height: 38px; }
  .ds3-quick-link-number { font-size: 18px; }
  .ds3-quick-link-name { font-size: 11px; max-width: 100%; }
}

/* ----------------------------------------------------------------
   Checklist page intros
   ---------------------------------------------------------------- */
body[class*="ds3-"] .ds3-checklist-intro-overview {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ds3-heading);
  margin: 0 0 12px 0;
}
body[class*="ds3-"] .ds3-checklist-intro-section {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ds3-heading);
  margin: 20px 0 10px 0;
}
body[class*="ds3-"] .ds3-checklist-intro-locator,
body[class*="ds3-"] .article-content > p.ds3-checklist-intro-locator {
  font-style: italic;
  color: #b0b0b0;
  border-left: 3px solid var(--ds3-primary);
  padding-left: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

/* Skip-to region nav (compact inline links) */
body[class*="ds3-"] .ds3-skip-nav {
  margin: 0 0 18px 0;
  padding: 12px 14px;
  border: 1px solid var(--ds3-border-strong);
  border-radius: 10px;
  background: rgba(234, 85, 30, 0.06);
}
body[class*="ds3-"] .ds3-skip-nav-line {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ds3-text-dim);
}
body[class*="ds3-"] .ds3-skip-nav-line + .ds3-skip-nav-line {
  margin-top: 8px;
}
body[class*="ds3-"] .ds3-skip-nav-label {
  color: var(--ds3-text);
  font-weight: 700;
  margin-right: 4px;
}
body[class*="ds3-"] .ds3-skip-nav a {
  color: var(--ds3-ergo);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--ds3-ergo);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
body[class*="ds3-"] .ds3-skip-nav a::after { display: none !important; }
body[class*="ds3-"] .ds3-skip-nav a:hover {
  color: var(--ds3-ergo-bright);
  text-decoration-color: var(--ds3-ergo-bright);
}
body.ds3-all-lamps .ds3-section-heading,
body.ds3-all-lamps .ds3-subsection-heading {
  scroll-margin-top: 140px;
}
html:has(body.ds3-all-lamps) {
  scroll-padding-top: 140px;
}
body.ds3-all-bosses .ds3-section-heading,
body.ds3-all-bosses .ds3-subsection-heading {
  scroll-margin-top: 140px;
}
html:has(body.ds3-all-bosses) {
  scroll-padding-top: 140px;
}
body.ds3-all-quests .ds3-section-heading,
body.ds3-all-quests .ds3-subsection-heading,
body.ds3-all-quests tr[id] {
  scroll-margin-top: 140px;
}
html:has(body.ds3-all-quests) {
  scroll-padding-top: 140px;
}

body.ds3-all-quests .ds3-quest-guide-block {
  margin: 0 0 10px 0;
  line-height: 1.65;
  font-size: 15px;
}
body.ds3-all-quests .ds3-quest-guide-step {
  margin: 0 0 10px 0;
  padding-left: 4px;
  line-height: 1.65;
  font-size: 15px;
}
body.ds3-all-quests .ds3-quest-guide-step strong,
body.ds3-all-quests .ds3-quest-guide-list li strong {
  color: var(--ds3-secondary-bright);
}
body.ds3-all-quests .ds3-quest-guide-heading {
  margin: 18px 0 8px 0;
  font-size: 15px;
  color: var(--ds3-secondary-bright);
}
body.ds3-all-quests .ds3-quest-guide-heading:first-child {
  margin-top: 0;
}
body.ds3-all-quests .ds3-quest-guide-note {
  margin: 0 0 10px 0;
  padding: 10px 12px;
  border-left: 3px solid var(--ds3-secondary-bright);
  background: rgba(234, 85, 30, 0.06);
  line-height: 1.65;
  font-size: 15px;
}
body.ds3-all-quests .ds3-quest-guide-note strong {
  color: var(--ds3-secondary-bright);
}
body.ds3-all-quests .ds3-quest-guide-list {
  margin: 0 0 12px 0;
  padding-left: 4px;
  list-style: none;
  line-height: 1.65;
  font-size: 15px;
}
body.ds3-all-quests .ds3-quest-guide-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
}
body.ds3-all-quests .ds3-quest-guide-list li::marker {
  content: none;
}
body.ds3-all-quests .ds3-quest-guide-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds3-secondary-bright);
  box-shadow: 0 0 6px rgba(234, 85, 30, 0.45);
}
body.ds3-all-quests .ds3-quest-guide-list li:last-child {
  margin-bottom: 0;
}
body.ds3-all-quests .ds3-quest-related {
  margin: 16px 0 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  line-height: 1.6;
}
body.ds3-all-quests .ds3-quest-inline-link,
body.ds3-all-quests .ds3-quest-related-link,
body[class*="ds3-"] .article-content a.ds3-item-link-inline,
body[class*="ds3-"] .article-content a.ds3-lamp-link-inline,
body[class*="ds3-"] .description-cell a.ds3-item-link-inline,
body[class*="ds3-"] .description-cell a.ds3-lamp-link-inline {
  display: inline;
  color: var(--ds3-ergo);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--ds3-ergo);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  vertical-align: baseline;
}
body.ds3-all-quests .ds3-quest-inline-link:hover,
body.ds3-all-quests .ds3-quest-related-link:hover,
body[class*="ds3-"] .article-content a.ds3-item-link-inline:hover,
body[class*="ds3-"] .article-content a.ds3-lamp-link-inline:hover,
body[class*="ds3-"] .description-cell a.ds3-item-link-inline:hover,
body[class*="ds3-"] .description-cell a.ds3-lamp-link-inline:hover {
  color: var(--ds3-ergo-bright);
  text-decoration-color: var(--ds3-ergo-bright);
}
body[class*="ds3-"] .article-content .ds3-lamp-link-icon,
body[class*="ds3-"] .article-content .ds3-item-link-icon,
body[class*="ds3-"] .description-cell .ds3-lamp-link-icon,
body[class*="ds3-"] .description-cell .ds3-item-link-icon {
  display: inline;
  width: 1.05em;
  height: 1.05em;
  max-width: 1.05em;
  max-height: 1.05em;
  object-fit: contain;
  margin: 0 0.28em 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  vertical-align: -0.18em;
  position: relative;
  top: 0;
}
body.ds3-all-questlines .ds3-npc-extra {
  margin: 28px 0 0 0;
  padding: 0 0 22px 0;
  border-bottom: 1px solid var(--ds3-border);
}
body.ds3-all-questlines .ds3-npc-extra:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
body.ds3-all-questlines .ds3-npc-extra-name {
  color: var(--ds3-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
body.ds3-all-questlines .ds3-npc-extra .ds3-description-media {
  margin: 0 0 14px 0;
  padding: 0;
  width: 100%;
  max-width: min(520px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  background: rgba(234, 85, 30, 0.08);
}
body.ds3-all-questlines .ds3-npc-extra .ds3-description-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
body.ds3-all-questlines .ds3-npc-extra p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ds3-text-dim);
  margin: 0 0 12px 0;
}
body.ds3-all-questlines .ds3-npc-extra p:last-child {
  margin-bottom: 0;
}
body.ds3-all-questlines .ds3-npc-extra .ds3-quest-guide-heading {
  margin: 16px 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ds3-secondary-bright);
}
body.ds3-all-questlines .ds3-npc-extra .ds3-quest-guide-list li::before {
  background: #fff;
}
body.ds3-all-questlines .ds3-quest-guide-heading:first-child {
  margin-top: 0;
}
body.ds3-all-questlines .ds3-quest-guide-list {
  margin: 0 0 12px 0;
  padding-left: 4px;
  list-style: none;
  line-height: 1.65;
  font-size: 15px;
  color: var(--ds3-text-dim);
}
body.ds3-all-questlines .ds3-quest-guide-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
}
body.ds3-all-questlines .ds3-quest-guide-list li::marker {
  content: none;
}
body.ds3-all-questlines .ds3-quest-guide-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ds3-heading);
}
body.ds3-all-questlines .ds3-quest-guide-list li:last-child {
  margin-bottom: 0;
}
body.ds3-all-quests .ds3-quest-portraits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
body.ds3-all-quests .ds3-quest-portraits .ds3-description-media {
  flex: 1 1 min(520px, 100%);
  max-width: min(520px, 100%);
  margin: 0;
  aspect-ratio: 16 / 9;
}
body.ds3-all-quests .ds3-quest-portraits .ds3-description-img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
}

body[class*="ds3-"] .ds3-overture-crosslink-footer {
  margin-top: 28px;
}

/* ----------------------------------------------------------------
   Section heading
   ---------------------------------------------------------------- */
.ds3-section-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--ds3-heading);
  margin: 28px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ds3-heading-border);
  scroll-margin-top: 140px;
}

/* Spreadsheet subsection (Subsection:) - sits under a Section h2 */
.ds3-subsection-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ds3-secondary-bright);
  margin: 22px 0 10px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ds3-secondary-dim);
}

.article-content > .ds3-section-heading + .ds3-subsection-heading {
  margin-top: 14px;
}

/* ----------------------------------------------------------------
   Row list - flat, single-line title + arrow.
   ---------------------------------------------------------------- */
.ds3-row-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ds3-hub-group-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ds3-primary-bright);
  margin: 20px 0 4px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ds3-border);
}
.ds3-hub-group-heading:first-child {
  margin-top: 0;
}
.ds3-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--ds3-bg-card);
  border: 1px solid var(--ds3-border);
  border-radius: 10px;
  text-decoration: none !important;
  color: inherit !important;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: inherit !important;
}
.ds3-row::after { display: none !important; }
.ds3-row:hover {
  border-color: var(--ds3-primary);
  background: linear-gradient(180deg, rgba(138, 138, 138, 0.06) 0%, var(--ds3-bg-card) 100%);
  transform: translateX(3px);
  box-shadow: 0 4px 18px rgba(138, 138, 138, 0.12);
}
.ds3-row.featured {
  border-color: var(--ds3-primary);
  background: linear-gradient(135deg, rgba(138, 138, 138, 0.08) 0%, var(--ds3-bg-card) 100%);
}
.ds3-row-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds3-row-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.ds3-row-title {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ds3-primary-bright);
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0;
}
.ds3-row-arrow {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ds3-primary);
  transition: transform 0.2s ease;
}
.ds3-row:hover .ds3-row-arrow { transform: translateX(3px); color: var(--ds3-primary-bright); }
/* Disabled / "Coming soon" row */
.ds3-row.disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.ds3-row.disabled:hover {
  transform: none;
  border-color: var(--ds3-border);
  background: var(--ds3-bg-card);
  box-shadow: none;
}

/* Hub guide links: wide thumbnail instead of square icon */
.ds3-row.ds3-row-with-thumb {
  align-items: center;
  padding: 12px 16px;
  gap: 16px;
}
.ds3-row-thumb {
  flex: 0 0 240px;
  width: 240px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ds3-border-strong);
  background: rgba(20, 14, 16, 0.85);
  box-shadow: inset 0 0 0 1px rgba(138, 138, 138, 0.06);
}
.ds3-row-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
@media (max-width: 520px) {
  .ds3-row.ds3-row-with-thumb {
    flex-wrap: wrap;
    align-items: center;
  }
  .ds3-row-thumb {
    flex: 1 1 100%;
    width: 100%;
    max-height: 200px;
  }
  .ds3-row.ds3-row-with-thumb .ds3-row-title {
    flex: 1;
    min-width: 0;
  }
}

.ds3-soon-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ds3-secondary-bright);
  background: var(--ds3-secondary-dim);
  border: 1px solid var(--ds3-heading-border);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ----------------------------------------------------------------
   Boxes - tip / important / warning.
     .ds3-box.normal    -> Steel Normal (default)
     .ds3-box.important -> Steel Important (stronger left-stripe)
     .ds3-box.warning   -> Warning / brass
     .ds3-box.danger    -> Crimson (boss warnings, missable content)
   Backwards-compatible aliases: .tip, .depth, .warn keep working.
   ---------------------------------------------------------------- */
.ds3-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  background: var(--ds3-primary-soft);
  margin: 12px 0;
}
.ds3-box-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds3-box-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.ds3-box-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ds3-box-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ds3-primary-bright);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 4px 0;
}
.ds3-box-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ds3-text);
}

/* Variants */
.ds3-box.normal,
.ds3-box.tip {
  background: var(--ds3-primary-soft);
  border-color: var(--ds3-border-strong);
}
.ds3-box.important,
.ds3-box.depth {
  background: linear-gradient(90deg, rgba(138, 138, 138, 0.12) 0%, rgba(20, 14, 16, 0.92) 100%);
  border-color: var(--ds3-border-strong);
  border-left: 4px solid var(--ds3-primary);
}
.ds3-box.warning,
.ds3-box.warn {
  background: var(--ds3-warning-dim);
  border-color: rgba(201, 162, 58, 0.45);
  border-left: 4px solid var(--ds3-warning);
}
.ds3-box.warning .ds3-box-title,
.ds3-box.warn .ds3-box-title {
  color: var(--ds3-warning);
}
/* Danger / crimson box (boss warnings, missable content) */
.ds3-box.danger {
  background: linear-gradient(90deg, rgba(234, 85, 30, 0.18) 0%, rgba(20, 14, 16, 0.92) 100%);
  border-color: rgba(234, 85, 30, 0.45);
  border-left: 4px solid var(--ds3-heading);
}
.ds3-box.danger .ds3-box-title {
  color: var(--ds3-secondary-bright);
}

/* Hub launch notice: multi-paragraph + list (icon aligned to top) */
.ds3-box.ds3-hub-launch-notice {
  align-items: flex-start;
}
.ds3-box.ds3-hub-launch-notice .ds3-box-icon {
  margin-top: 2px;
}
.ds3-box-body ul {
  margin: 12px 0 0 0;
  padding-left: 1.25em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ds3-text);
}
.ds3-box-body li {
  margin: 0.35em 0;
}

/* ----------------------------------------------------------------
   Stats / progress card on checklist pages
   ---------------------------------------------------------------- */
body[class*="ds3-"] .location-stats {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 18px 0 12px 0;
}
body[class*="ds3-"] .stat-item {
  padding: 10px 22px;
  background: var(--ds3-bg-card);
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  text-align: center;
}
body[class*="ds3-"] .stat-value {
  font-size: 22px;
  font-weight: 700;
  display: block;
  color: var(--ds3-primary-bright);
}
body[class*="ds3-"] .stat-label {
  font-size: 11px;
  color: var(--ds3-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 4px;
  display: block;
}
body[class*="ds3-"] .stat-item.progress-zero { border-color: rgba(138, 138, 138, 0.3); }
body[class*="ds3-"] .stat-item.progress-zero .stat-value { color: var(--ds3-text-faint); }
body[class*="ds3-"] .stat-item.progress-low { border-color: var(--ds3-warning); }
body[class*="ds3-"] .stat-item.progress-low .stat-value { color: var(--ds3-warning); }
body[class*="ds3-"] .stat-item.progress-medium,
body[class*="ds3-"] .stat-item.progress-high {
  border-color: var(--ds3-primary);
}
body[class*="ds3-"] .stat-item.progress-medium .stat-value,
body[class*="ds3-"] .stat-item.progress-high .stat-value {
  color: var(--ds3-primary);
}
body[class*="ds3-"] .stat-item.progress-complete {
  border-color: var(--ds3-primary-bright);
  box-shadow: 0 0 12px rgba(138, 138, 138, 0.35);
}

/* Progress counters in section headers */
body[class*="ds3-"] .progress-counter.progress-zero { color: var(--ds3-text-faint) !important; }
body[class*="ds3-"] .progress-counter.progress-low { color: var(--ds3-warning) !important; }
body[class*="ds3-"] .progress-counter.progress-medium,
body[class*="ds3-"] .progress-counter.progress-high { color: var(--ds3-primary) !important; }
body[class*="ds3-"] .progress-counter.progress-complete { color: var(--ds3-primary-bright) !important; }

/* ----------------------------------------------------------------
   Checklist tables
   ---------------------------------------------------------------- */
body[class*="ds3-"] .card {
  background: linear-gradient(180deg, rgba(20, 14, 16, 0.9) 0%, rgba(20, 14, 16, 0.95) 100%) !important;
  border: 1px solid var(--ds3-border) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(138, 138, 138, 0.04) !important;
}
body[class*="ds3-"] .section-header {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, rgba(234, 85, 30, 0.10) 0%, transparent 100%) !important;
  border-left: 4px solid var(--ds3-heading-border) !important;
  padding: 10px 14px !important;
}
body[class*="ds3-"] .section-header .progress-counter {
  flex-shrink: 0;
}
body[class*="ds3-"] .section-header .section-header-controls {
  margin-left: auto !important;
  flex-shrink: 0;
}
body[class*="ds3-"] .section-header h2,
body[class*="ds3-"] .section-header h3,
body[class*="ds3-"] .section-header .ds3-card-table-title {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  color: var(--ds3-heading) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
body[class*="ds3-"] .section-header h2 strong,
body[class*="ds3-"] .section-header h3 strong,
body[class*="ds3-"] .section-header .ds3-card-table-title strong {
  color: var(--ds3-heading) !important;
  font-weight: 600 !important;
}
body[class*="ds3-"] .section-title { color: var(--ds3-primary-bright) !important; }

/* Table chrome */
body[class*="ds3-"] table thead tr {
  background: linear-gradient(180deg, rgba(234, 85, 30, 0.12) 0%, rgba(234, 85, 30, 0.04) 100%);
  border-bottom: 2px solid var(--ds3-secondary-bright);
}
body[class*="ds3-"] table thead th {
  color: var(--ds3-secondary-bright) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 6px !important;
  line-height: 1.2 !important;
}
body[class*="ds3-"] table tbody tr {
  background: rgba(20, 14, 16, 0.55);
  border-bottom: 1px solid var(--ds3-border);
}
body[class*="ds3-"] table tbody tr:hover { background: rgba(234, 85, 30, 0.06); }

body[class*="ds3-"] input[type="checkbox"] {
  border-color: rgba(234, 85, 30, 0.5) !important;
  background: rgba(20, 14, 16, 0.7) !important;
}
body[class*="ds3-"] input[type="checkbox"]:checked {
  background: var(--ds3-heading) !important;
  border-color: var(--ds3-heading-bright) !important;
  box-shadow: 0 0 8px rgba(234, 85, 30, 0.45);
}

body[class*="ds3-"] .article-content table tbody td:first-child {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

body[class*="ds3-"] .collapse-btn,
body[class*="ds3-"] .options-btn {
  border-color: var(--ds3-border-strong) !important;
  color: var(--ds3-text) !important;
}
body[class*="ds3-"] .collapse-btn:hover,
body[class*="ds3-"] .options-btn:hover {
  background: var(--ds3-primary-dim) !important;
  border-color: var(--ds3-primary) !important;
  color: var(--ds3-primary-bright) !important;
}
body[class*="ds3-"] .table-action-btn { color: var(--ds3-primary-bright) !important; }
body[class*="ds3-"] .table-action-btn:hover { background: var(--ds3-primary-dim) !important; }

/* Item info column - Name / Area / Category */
body[class*="ds3-"] .item-info .item-name {
  color: var(--ds3-text);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
body[class*="ds3-"] .item-info .item-biome {
  font-size: 12px;
  color: var(--ds3-text-dim);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
body[class*="ds3-"] .item-info .item-biome .ds3-area-field-label {
  flex-shrink: 0;
  color: inherit;
}
body[class*="ds3-"] .item-info .item-biome .ds3-area-pill-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
body[class*="ds3-"] .item-info .item-type {
  font-size: 12px;
  color: var(--ds3-text-faint);
  font-style: italic;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Nearest Lamp meta (icon + plain text, not a link) */
body[class*="ds3-"] .item-info .item-meta-line {
  font-size: 13px;
  color: var(--ds3-text-dim);
  display: block;
  margin-bottom: 4px;
  line-height: 1.45;
}
body[class*="ds3-"] .item-info .item-meta-line .ds3-meta-label {
  color: inherit;
}
body[class*="ds3-"] .item-info a.ds3-item-link-inline,
body[class*="ds3-"] .item-info a.ds3-lamp-link-inline {
  color: var(--ds3-ergo);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--ds3-ergo);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
body[class*="ds3-"] .item-info a.ds3-item-link-inline:hover,
body[class*="ds3-"] .item-info a.ds3-lamp-link-inline:hover {
  color: var(--ds3-ergo-bright);
  text-decoration-color: var(--ds3-ergo-bright);
}
body[class*="ds3-"] .item-info .ds3-nearest-lamp {
  white-space: nowrap;
}
body[class*="ds3-"] .item-info .ds3-lamp-link-icon,
body[class*="ds3-"] .item-info .ds3-nearest-lamp-icon {
  display: inline;
  width: 1.05em;
  height: 1.05em;
  object-fit: contain;
  margin: 0 0.28em 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  vertical-align: -0.18em;
}

/* Description column */
body[class*="ds3-"] .description-cell {
  color: var(--ds3-text-dim);
  font-size: 14px;
  line-height: 1.55;
}
body[class*="ds3-"] .description-cell p { margin: 0 0 10px 0; }
body[class*="ds3-"] .description-cell p:last-child { margin-bottom: 0; }
body[class*="ds3-"] .description-cell strong { color: var(--ds3-primary-bright); }
body[class*="ds3-"] .ds3-missable {
  color: #e85d5d !important;
  font-weight: 700;
}
body[class*="ds3-"] .ds3-ng-plus {
  color: #e85d5d;
  font-weight: 600;
}
body[class*="ds3-"] a.ds3-area-pill-link {
  text-decoration: none;
  color: inherit;
}
body[class*="ds3-"] a.ds3-area-pill-link:hover {
  border-color: var(--ds3-primary-bright);
  color: var(--ds3-primary-bright);
}
body[class*="ds3-"] .ds3-cv-section-label {
  color: #e07a7a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 6px 0;
}
body[class*="ds3-"] .ds3-cv-puzzle-block {
  margin-top: 14px;
}
body[class*="ds3-"] .ds3-riddle-quote {
  font-style: italic;
}
body[class*="ds3-"] .ds3-preorder-note {
  font-style: italic;
  margin-top: 8px;
}
body[class*="ds3-"] .ds3-subheading {
  font-size: 13px;
  font-weight: 700;
  color: var(--ds3-primary-bright);
  margin: 12px 0 6px 0;
}
body[class*="ds3-"] .ds3-bullet-list {
  margin: 6px 0 8px 0;
  padding-left: 1.25em;
}
body[class*="ds3-"] .ds3-bullet-list li {
  margin-bottom: 4px;
}
body.ds3-index .ds3-bullet-list a {
  color: var(--ds3-ergo) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.ds3-index .ds3-bullet-list a::after,
body[class*="ds3-"] .ds3-bullet-list a::after {
  content: none !important;
  display: none !important;
}
body.ds3-index .hub-section-title {
  scroll-margin-top: 140px;
}
/* Cross-links inside checklist table descriptions */
body[class*="ds3-"] .description-cell a:not(.ds3-area-pill) {
  color: var(--ds3-ergo) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--ds3-ergo) !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.15s ease, text-shadow 0.15s ease, text-decoration-color 0.15s ease;
}
body[class*="ds3-"] .description-cell a:not(.ds3-area-pill):hover {
  color: var(--ds3-ergo-bright) !important;
  text-decoration-color: var(--ds3-ergo-bright) !important;
  text-decoration-thickness: 2px;
  text-shadow: 0 0 10px rgba(234, 85, 30, 0.35);
}
body[class*="ds3-"] .description-cell a:not(.ds3-area-pill)::after {
  content: none !important;
  display: none !important;
}

/* Blood Echo highlight (e.g. "2000 Ergo") */
.ds3-ergo-amount {
  color: var(--ds3-heading-bright);
  font-weight: 700;
  white-space: nowrap;
}

/* Inline reference images below description copy (never above the paragraphs).
   Reserve 16:9 before decode so deferred/lazy loads do not shift table rows. */
body[class*="ds3-"] .description-cell .ds3-description-media {
  margin: 12px 0 0 0;
  padding: 0;
  width: 100%;
  max-width: min(520px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  background: rgba(234, 85, 30, 0.06);
}
body[class*="ds3-"] .description-cell .ds3-description-media + p {
  margin-top: 18px;
}
body[class*="ds3-"] .description-cell .ds3-description-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  vertical-align: top;
}
body[class*="ds3-"] .description-cell img.ds3-deferred-img:not([src]) {
  min-height: 0;
  background: transparent;
}

/* Checklist icons */
html body[class*="ds3-"] .article-content table img.checklist-icon,
html body[class*="ds3-"] table img.checklist-icon,
html body[class*="ds3-"] .checklist-icon {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  object-fit: contain !important;
  border: 0 !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  display: block;
}
html body[class*="ds3-"] table tbody tr td:nth-child(2) {
  width: 64px !important;
  min-width: 64px !important;
  max-width: 64px !important;
  padding: 8px 4px !important;
  text-align: center;
  vertical-align: middle;
  overflow: visible !important;
}

@media (max-width: 768px) {
  html body[class*="ds3-"] .container {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  html body[class*="ds3-"] .card {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  html body[class*="ds3-"] .article-content table img.checklist-icon,
  html body[class*="ds3-"] table img.checklist-icon,
  html body[class*="ds3-"] .checklist-icon {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  html body[class*="ds3-"] table tbody tr td:nth-child(2) {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    padding: 4px 1px !important;
  }

  body[class*="ds3-"] .article-content table:has(colgroup) {
    table-layout: fixed !important;
    width: 100% !important;
    border-collapse: collapse !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) colgroup col:nth-child(1) {
    width: 26px !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) colgroup col:nth-child(2) {
    width: 52px !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) colgroup col:nth-child(3) {
    width: 30% !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) colgroup col:nth-child(4) {
    width: auto !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) thead th:first-child,
  body[class*="ds3-"] .article-content table:has(colgroup) tbody td:first-child {
    width: 26px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    padding: 4px 1px !important;
    box-sizing: border-box;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) tbody td:first-child {
    vertical-align: middle !important;
    cursor: pointer;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) thead th:nth-child(3),
  body[class*="ds3-"] .article-content table:has(colgroup) tbody td:nth-child(3) {
    min-width: 0 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 4px 3px !important;
    vertical-align: middle !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) thead th:nth-child(4),
  body[class*="ds3-"] .article-content table:has(colgroup) tbody td:nth-child(4) {
    min-width: 0 !important;
    padding: 4px 3px !important;
    vertical-align: middle !important;
  }
  body[class*="ds3-"] .article-content table:has(colgroup) .item-info {
    min-width: 0;
  }
  body[class*="ds3-"] .item-info .ds3-nearest-lamp {
    white-space: normal;
  }
  body[class*="ds3-"] .item-info .item-biome {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  body[class*="ds3-"] .item-info .item-biome .ds3-area-pill-row {
    width: 100%;
    gap: 8px;
  }
  body[class*="ds3-"] .ds3-area-pill {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 5px;
  }
}

/* ----------------------------------------------------------------
   Area / region pills (Krat districts).
   One distinct colour token per area; add more as data lands.
   ---------------------------------------------------------------- */
.ds3-area-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--ds3-heading-dim);
  color: var(--ds3-heading-bright);
  border: 1px solid var(--ds3-heading-border);
  max-width: 100%;
  box-sizing: border-box;
  vertical-align: middle;
  word-break: break-word;
}
/* All chapter / area pills share the Lothric brass look. */
.ds3-area-pill.ds3-ar-ergo,
.ds3-area-pill.ds3-ar-hotel,
.ds3-area-pill.ds3-ar-station,
.ds3-area-pill.ds3-ar-factory,
.ds3-area-pill.ds3-ar-cathedral,
.ds3-area-pill.ds3-ar-swamp,
.ds3-area-pill.ds3-ar-unknown,
.ds3-area-pill.ds3-ar-all-areas {
  background: var(--ds3-heading-dim);
  color: var(--ds3-heading-bright);
  border-color: var(--ds3-heading-border);
}

a.ds3-area-pill {
  text-decoration: none;
  cursor: pointer;
}
a.ds3-area-pill:hover {
  filter: brightness(1.06);
}
a.ds3-area-pill:focus-visible {
  outline: 2px solid var(--ds3-heading-bright);
  outline-offset: 2px;
}

.ds3-danger {
  color: var(--ds3-secondary-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11.5px;
}

/* Boss / NPC disposition openers */
.ds3-disposition-boss {
  color: var(--ds3-secondary-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11.5px;
}
.ds3-disposition-friendly {
  color: var(--ds3-primary-bright);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11.5px;
}

/* Buttons */
.ds3-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid var(--ds3-primary);
  background: var(--ds3-primary-dim);
  color: var(--ds3-primary-bright);
  cursor: pointer;
}
.ds3-btn:hover {
  background: var(--ds3-primary);
  color: var(--ds3-deep);
  box-shadow: 0 4px 18px rgba(234, 85, 30, 0.35);
}
.ds3-btn.secondary {
  border-color: var(--ds3-secondary);
  background: var(--ds3-secondary-dim);
  color: var(--ds3-secondary-bright);
}
.ds3-btn.secondary:hover {
  background: var(--ds3-secondary);
  color: #0c0c0c;
  box-shadow: 0 4px 18px rgba(234, 85, 30, 0.4);
}

/* Box-style label heading above the box examples */
.ds3-boxes-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ds3-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin: 18px 0 6px 0;
}

/* ----------------------------------------------------------------
   Element stash - reusable design pieces in one place.
   ---------------------------------------------------------------- */
.ds3-stash-section {
  margin-top: 32px;
  padding: 18px 18px 22px 18px;
  border: 1px dashed var(--ds3-border-strong);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(138, 138, 138, 0.04) 0%, rgba(20, 14, 16, 0.6) 100%);
}
.ds3-stash-section > .ds3-stash-intro {
  font-size: 13.5px;
  color: var(--ds3-text-dim);
  margin: 0 0 14px 0;
}
.ds3-stash-section code {
  background: rgba(138, 138, 138, 0.10);
  border: 1px solid var(--ds3-border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 12px;
  color: var(--ds3-primary-bright);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
.ds3-stash-group {
  margin: 18px 0 0 0;
}
.ds3-stash-group:first-of-type { margin-top: 0; }
.ds3-stash-group-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ds3-primary-bright);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ds3-border);
}

/* Icon library grid */
.ds3-stash-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.ds3-stash-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(20, 14, 16, 0.6);
  border: 1px solid var(--ds3-border);
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.ds3-stash-icon:hover {
  border-color: var(--ds3-primary);
  transform: translateY(-2px);
}
.ds3-stash-icon img {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.ds3-stash-icon .ds3-stash-file {
  display: block;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--ds3-text-dim);
  word-break: break-all;
  line-height: 1.3;
}

/* Generic stash row */
.ds3-stash-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(20, 14, 16, 0.55);
  border: 1px solid var(--ds3-border);
  border-radius: 10px;
  margin: 0 0 10px 0;
}
.ds3-stash-row:last-child { margin-bottom: 0; }
.ds3-stash-row-label {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11.5px;
  color: var(--ds3-text-dim);
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.ds3-stash-row-label strong {
  display: block;
  color: var(--ds3-primary-bright) !important;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}
.ds3-stash-row-demo > * { margin: 0 !important; }

/* Inline pill row used to demo all area/danger pills together */
.ds3-stash-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

@media (max-width: 700px) {
  .ds3-stash-row {
    grid-template-columns: 1fr;
  }
  .ds3-stash-row-label { order: 2; }
  .ds3-stash-row-demo { order: 1; }
}

/* Strip the auto-arrow that styles.css adds to ::after on links. */
body[class*="ds3-"] .ds3-btn::after,
body[class*="ds3-"] .ds3-row::after,
body[class*="ds3-"] .ds3-quick-link::after,
body[class*="ds3-"] .container table .item-info a::after,
body[class*="ds3-"] .container td .item-info a::after { content: none !important; display: none !important; }

/* Dark Souls 3 table links: ember orange (incl. iconned item/lamp links) */
body[class*="ds3-"] .container table a:not(.site-header a):not(.footer-links a):not(.footer a),
body[class*="ds3-"] .container td a:not(.site-header a):not(.footer-links a):not(.footer a),
body[class*="ds3-"] .container th a:not(.site-header a):not(.footer-links a):not(.footer a),
body[class*="ds3-"] table:not(.site-header table):not(.footer table) a,
body[class*="ds3-"] td:not(.site-header td):not(.footer td) a,
body[class*="ds3-"] th:not(.site-header th):not(.footer th) a {
  color: var(--ds3-ergo) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--ds3-ergo) !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 2px;
}
body[class*="ds3-"] .container table a:not(.site-header a):not(.footer-links a):not(.footer a):visited,
body[class*="ds3-"] .container td a:not(.site-header a):not(.footer-links a):not(.footer a):visited,
body[class*="ds3-"] table:not(.site-header table):not(.footer table) a:visited,
body[class*="ds3-"] td:not(.site-header td):not(.footer td) a:visited {
  color: #a83232 !important;
  text-decoration-color: rgba(160, 48, 48, 0.45) !important;
}
body[class*="ds3-"] .container table a:not(.site-header a):not(.footer-links a):not(.footer a):hover,
body[class*="ds3-"] .container td a:not(.site-header a):not(.footer-links a):not(.footer a):hover,
body[class*="ds3-"] table:not(.site-header table):not(.footer table) a:hover,
body[class*="ds3-"] td:not(.site-header td):not(.footer td) a:hover {
  color: var(--ds3-ergo-bright) !important;
  text-decoration-color: var(--ds3-ergo-bright) !important;
  text-decoration-thickness: 2px;
  text-shadow: 0 0 10px rgba(234, 85, 30, 0.35);
}
body[class*="ds3-"] .container table a:not(:has(img))::after,
body[class*="ds3-"] .container td a:not(:has(img))::after,
body[class*="ds3-"] table a:not(:has(img))::after,
body[class*="ds3-"] td a:not(:has(img))::after {
  content: none !important;
  display: none !important;
}

/* ----------------------------------------------------------------
   Guide pages (long-form articles, e.g. liesofp/guides/*.html)
   ---------------------------------------------------------------- */
body.ds3-guide .article-content.ds3-guide-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ds3-text-dim);
}
body.ds3-guide .article-content.ds3-guide-body > p {
  margin: 0 0 14px 0;
}
body.ds3-guide header h1 {
  color: var(--ds3-heading);
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 28px;
}
body.ds3-guide .ds3-section-heading {
  margin-top: 28px;
  margin-bottom: 12px;
}
body.ds3-guide .article-content h3.ds3-run-heading {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ds3-heading);
  margin: 3rem 0 1rem 0;
  padding: 0 0 0.55rem 0;
  border-bottom: 2px solid var(--ds3-heading-border);
  scroll-margin-top: 140px;
}
body.ds3-guide .article-content h2 + h3.ds3-run-heading {
  margin-top: 1.15rem;
}
@media (max-width: 768px) {
  body.ds3-guide .article-content h3.ds3-run-heading {
    font-size: 1.4rem;
    margin-top: 2.25rem;
  }
}
body.ds3-guide .ds3-guide-subhead {
  font-size: 15px;
  font-weight: 600;
  color: var(--ds3-text);
  margin: 22px 0 8px 0;
}
body.ds3-guide .ds3-guide-list {
  margin: 0 0 16px 0;
  padding-left: 1.25em;
  color: var(--ds3-text-dim);
}
body.ds3-guide .ds3-guide-list li {
  margin: 6px 0;
}
body.ds3-guide .article-content a:not(.ds3-location-nav-card):not(.hub-highlight-single) {
  color: var(--ds3-ergo);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--ds3-ergo);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
body.ds3-guide .article-content a:not(.ds3-location-nav-card):not(.hub-highlight-single):hover {
  color: var(--ds3-ergo-bright);
  text-decoration-color: var(--ds3-ergo-bright);
}
body.ds3-guide .ds3-guide-media {
  margin: 22px 0;
  padding: 0;
}
body.ds3-guide .ds3-guide-media-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
body.ds3-guide .ds3-guide-table-card {
  overflow-x: auto;
  padding: 12px 14px !important;
}
body.ds3-guide .ds3-guide-parts-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}
body.ds3-guide .ds3-guide-parts-table th,
body.ds3-guide .ds3-guide-parts-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
body.ds3-guide .ds3-guide-parts-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ds3-primary-bright);
}

/* Item preview in column 2 (weapons, amulets, costumes, gestures, grindstones) */
body.ds3-weapons-checklist .ds3-visual-table,
body.ds3-amulets-checklist .ds3-visual-table,
body.ds3-grindstones-checklist .ds3-visual-table,
body.ds3-costumes-checklist .ds3-visual-table,
body.ds3-gestures-checklist .ds3-visual-table {
  table-layout: fixed;
}
body.ds3-weapons-checklist .ds3-visual-table tbody tr.ds3-visual-row,
body.ds3-amulets-checklist .ds3-visual-table tbody tr.ds3-visual-row,
body.ds3-grindstones-checklist .ds3-visual-table tbody tr.ds3-visual-row,
body.ds3-costumes-checklist .ds3-visual-table tbody tr.ds3-visual-row,
body.ds3-gestures-checklist .ds3-visual-table tbody tr.ds3-visual-row,
body.ds3-legion-arms-checklist .ds3-visual-table tbody tr.ds3-visual-row,
body.ds3-achievements-checklist .ds3-visual-table tbody tr.ds3-visual-row {
  min-height: 132px;
}
body.ds3-weapons-checklist .ds3-visual-table tbody tr.ds3-visual-row td,
body.ds3-amulets-checklist .ds3-visual-table tbody tr.ds3-visual-row td,
body.ds3-grindstones-checklist .ds3-visual-table tbody tr.ds3-visual-row td,
body.ds3-costumes-checklist .ds3-visual-table tbody tr.ds3-visual-row td,
body.ds3-gestures-checklist .ds3-visual-table tbody tr.ds3-visual-row td,
body.ds3-legion-arms-checklist .ds3-visual-table tbody tr.ds3-visual-row td,
body.ds3-achievements-checklist .ds3-visual-table tbody tr.ds3-visual-row td {
  padding: 4px 6px !important;
  vertical-align: middle;
}
body.ds3-weapons-checklist .ds3-visual-table tbody tr td:nth-child(1),
body.ds3-amulets-checklist .ds3-visual-table tbody tr td:nth-child(1),
body.ds3-grindstones-checklist .ds3-visual-table tbody tr td:nth-child(1),
body.ds3-costumes-checklist .ds3-visual-table tbody tr td:nth-child(1),
body.ds3-gestures-checklist .ds3-visual-table tbody tr td:nth-child(1),
body.ds3-legion-arms-checklist .ds3-visual-table tbody tr td:nth-child(1),
body.ds3-achievements-checklist .ds3-visual-table tbody tr td:nth-child(1) {
  padding: 4px 4px !important;
}
body.ds3-weapons-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
body.ds3-amulets-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
body.ds3-grindstones-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
body.ds3-costumes-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
body.ds3-gestures-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
body.ds3-legion-arms-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
body.ds3-achievements-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell {
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  padding: 2px 4px !important;
  text-align: center;
  overflow: visible !important;
}
body.ds3-weapons-checklist .ds3-visual-figure,
body.ds3-amulets-checklist .ds3-visual-figure,
body.ds3-grindstones-checklist .ds3-visual-figure,
body.ds3-costumes-checklist .ds3-visual-figure,
body.ds3-gestures-checklist .ds3-visual-figure,
body.ds3-legion-arms-checklist .ds3-visual-figure,
body.ds3-achievements-checklist .ds3-visual-figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}
body.ds3-weapons-checklist .ds3-visual-img,
body.ds3-amulets-checklist .ds3-visual-img,
body.ds3-grindstones-checklist .ds3-visual-img,
body.ds3-costumes-checklist .ds3-visual-img,
body.ds3-gestures-checklist .ds3-visual-img,
body.ds3-legion-arms-checklist .ds3-visual-img,
body.ds3-achievements-checklist .ds3-visual-img {
  display: block;
  width: 100%;
  max-width: 120px;
  max-height: 128px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}
body.ds3-costumes-checklist .ds3-visual-img {
  max-height: 148px;
}
body.ds3-legion-arms-checklist .ds3-visual-img,
body.ds3-achievements-checklist .ds3-visual-img {
  max-width: 128px;
  max-height: 136px;
}
body.ds3-weapons-checklist .ds3-visual-info-cell .item-info .item-name,
body.ds3-amulets-checklist .ds3-visual-info-cell .item-info .item-name,
body.ds3-grindstones-checklist .ds3-visual-info-cell .item-info .item-name,
body.ds3-costumes-checklist .ds3-visual-info-cell .item-info .item-name,
body.ds3-gestures-checklist .ds3-visual-info-cell .item-info .item-name,
body.ds3-legion-arms-checklist .ds3-visual-info-cell .item-info .item-name,
body.ds3-achievements-checklist .ds3-visual-info-cell .item-info .item-name {
  margin-bottom: 2px;
}
body.ds3-weapons-checklist .ds3-visual-info-cell .item-info .item-biome,
body.ds3-amulets-checklist .ds3-visual-info-cell .item-info .item-biome,
body.ds3-grindstones-checklist .ds3-visual-info-cell .item-info .item-biome,
body.ds3-costumes-checklist .ds3-visual-info-cell .item-info .item-biome,
body.ds3-gestures-checklist .ds3-visual-info-cell .item-info .item-biome,
body.ds3-legion-arms-checklist .ds3-visual-info-cell .item-info .item-biome,
body.ds3-achievements-checklist .ds3-visual-info-cell .item-info .item-biome {
  margin-bottom: 2px;
}
body.ds3-weapons-checklist .ds3-visual-description-cell p,
body.ds3-amulets-checklist .ds3-visual-description-cell p,
body.ds3-grindstones-checklist .ds3-visual-description-cell p,
body.ds3-costumes-checklist .ds3-visual-description-cell p,
body.ds3-gestures-checklist .ds3-visual-description-cell p,
body.ds3-legion-arms-checklist .ds3-visual-description-cell p,
body.ds3-achievements-checklist .ds3-visual-description-cell p {
  margin: 0 0 3px 0;
}

@media (max-width: 768px) {
  body.ds3-weapons-checklist .ds3-visual-table colgroup col:nth-child(2),
  body.ds3-amulets-checklist .ds3-visual-table colgroup col:nth-child(2),
  body.ds3-grindstones-checklist .ds3-visual-table colgroup col:nth-child(2),
  body.ds3-costumes-checklist .ds3-visual-table colgroup col:nth-child(2),
  body.ds3-gestures-checklist .ds3-visual-table colgroup col:nth-child(2),
  body.ds3-legion-arms-checklist .ds3-visual-table colgroup col:nth-child(2),
  body.ds3-achievements-checklist .ds3-visual-table colgroup col:nth-child(2) {
    width: 88px !important;
  }
  body.ds3-weapons-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
  body.ds3-amulets-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
  body.ds3-grindstones-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
  body.ds3-costumes-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
  body.ds3-gestures-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
  body.ds3-legion-arms-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell,
  body.ds3-achievements-checklist .ds3-visual-table tbody tr td.ds3-visual-image-cell {
    width: 88px !important;
    min-width: 88px !important;
    max-width: 88px !important;
  }
  body.ds3-weapons-checklist .ds3-visual-img,
  body.ds3-amulets-checklist .ds3-visual-img,
  body.ds3-grindstones-checklist .ds3-visual-img,
  body.ds3-costumes-checklist .ds3-visual-img,
  body.ds3-gestures-checklist .ds3-visual-img,
  body.ds3-legion-arms-checklist .ds3-visual-img,
  body.ds3-achievements-checklist .ds3-visual-img {
    max-width: 80px;
    max-height: 96px;
  }
  body.ds3-costumes-checklist .ds3-visual-img {
    max-height: 108px;
  }
  body.ds3-legion-arms-checklist .ds3-visual-img,
  body.ds3-achievements-checklist .ds3-visual-img {
    max-width: 84px;
    max-height: 100px;
  }
}

/* Trinity + route photos: screenshots in description column */
body.ds3-weapons-checklist .ds3-screenshot-table tbody tr.ds3-screenshot-row td,
body.ds3-amulets-checklist .ds3-screenshot-table tbody tr.ds3-screenshot-row td,
body.ds3-grindstones-checklist .ds3-screenshot-table tbody tr.ds3-screenshot-row td,
body.ds3-costumes-checklist .ds3-screenshot-table tbody tr.ds3-screenshot-row td,
body.ds3-gestures-checklist .ds3-screenshot-table tbody tr.ds3-screenshot-row td {
  padding: 6px 8px !important;
  vertical-align: top;
}
body.ds3-weapons-checklist .ds3-screenshot-table tbody tr td:nth-child(1),
body.ds3-amulets-checklist .ds3-screenshot-table tbody tr td:nth-child(1),
body.ds3-grindstones-checklist .ds3-screenshot-table tbody tr td:nth-child(1),
body.ds3-costumes-checklist .ds3-screenshot-table tbody tr td:nth-child(1),
body.ds3-gestures-checklist .ds3-screenshot-table tbody tr td:nth-child(1),
body.ds3-overture-checklist .ds3-overture-table tbody tr td:nth-child(1) {
  vertical-align: middle;
}
body.ds3-weapons-checklist .ds3-screenshot-description-cell .ds3-item-screenshot-media,
body.ds3-amulets-checklist .ds3-screenshot-description-cell .ds3-item-screenshot-media,
body.ds3-grindstones-checklist .ds3-screenshot-description-cell .ds3-item-screenshot-media,
body.ds3-costumes-checklist .ds3-screenshot-description-cell .ds3-item-screenshot-media,
body.ds3-gestures-checklist .ds3-screenshot-description-cell .ds3-item-screenshot-media,
body.ds3-overture-checklist .ds3-overture-description-cell .ds3-item-screenshot-media {
  margin: 0 0 8px 0;
  padding: 0;
}
body.ds3-weapons-checklist .ds3-item-screenshot,
body.ds3-amulets-checklist .ds3-item-screenshot,
body.ds3-grindstones-checklist .ds3-item-screenshot,
body.ds3-costumes-checklist .ds3-item-screenshot,
body.ds3-gestures-checklist .ds3-item-screenshot,
body.ds3-overture-checklist .ds3-item-screenshot {
  display: block;
  max-width: min(560px, 100%);
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  object-fit: unset;
}

/* Overture weapons/costumes/gestures: same preview column as base-game visual tables */
body.ds3-overture-checklist .ds3-overture-visual-icon-table tbody tr td.ds3-visual-image-cell {
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  padding: 2px 4px !important;
  text-align: center;
  overflow: visible !important;
}
body.ds3-overture-checklist .ds3-overture-visual-icon-table .ds3-visual-figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}
body.ds3-overture-checklist .ds3-overture-visual-icon-table .ds3-visual-img {
  display: block;
  width: 100%;
  max-width: 120px;
  max-height: 128px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}
body.ds3-overture-checklist .ds3-overture-visual-icon-table#overture-table-costumes_outfits .ds3-visual-img,
body.ds3-overture-checklist .ds3-overture-visual-icon-table#overture-table-costumes_accessories .ds3-visual-img {
  max-height: 148px;
}

@media (max-width: 768px) {
  body.ds3-overture-checklist .ds3-overture-visual-icon-table colgroup col:nth-child(2) {
    width: 92px !important;
  }
  body.ds3-overture-checklist .ds3-overture-visual-icon-table tbody tr td.ds3-visual-image-cell {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
  }
  body.ds3-overture-checklist .ds3-overture-visual-icon-table .ds3-visual-img {
    max-width: 84px;
    max-height: 96px;
  }
  body.ds3-overture-checklist .ds3-overture-visual-icon-table#overture-table-costumes_outfits .ds3-visual-img,
  body.ds3-overture-checklist .ds3-overture-visual-icon-table#overture-table-costumes_accessories .ds3-visual-img {
    max-height: 108px;
  }
}

body.ds3-weapons-checklist .ds3-screenshot-info-cell .item-info .item-name,
body.ds3-amulets-checklist .ds3-screenshot-info-cell .item-info .item-name,
body.ds3-grindstones-checklist .ds3-screenshot-info-cell .item-info .item-name,
body.ds3-costumes-checklist .ds3-screenshot-info-cell .item-info .item-name,
body.ds3-gestures-checklist .ds3-screenshot-info-cell .item-info .item-name {
  margin-bottom: 2px;
}
body.ds3-weapons-checklist .ds3-screenshot-description-cell p,
body.ds3-amulets-checklist .ds3-screenshot-description-cell p,
body.ds3-grindstones-checklist .ds3-screenshot-description-cell p,
body.ds3-costumes-checklist .ds3-screenshot-description-cell p,
body.ds3-gestures-checklist .ds3-screenshot-description-cell p {
  margin: 0 0 4px 0;
}

/* Trinity: standard row alignment; route photos only in description column */
body.ds3-trinity-checklist .ds3-trinity-description-cell .ds3-item-screenshot-media {
  margin: 0 0 8px 0;
  padding: 0;
}
body.ds3-trinity-checklist .ds3-item-screenshot {
  display: block;
  max-width: min(560px, 100%);
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--ds3-border);
  object-fit: unset;
}
body.ds3-trinity-checklist .ds3-trinity-description-cell p {
  margin: 0 0 4px 0;
}

/* FAQ (checklist pages + hub) */
body[class*="ds3-"] .ds3-faq-section {
  margin-top: 40px;
  padding-top: 8px;
  border-top: 1px solid var(--ds3-border);
}
body[class*="ds3-"] .ds3-faq-section > .ds3-section-heading {
  margin-bottom: 20px;
}
body[class*="ds3-"] .ds3-faq-list {
  margin: 0 0 28px 0;
}
body[class*="ds3-"] .ds3-faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--ds3-border);
}
body[class*="ds3-"] .ds3-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
body[class*="ds3-"] .ds3-faq-item h3 {
  color: var(--ds3-secondary-bright) !important;
  font-size: 1.05em;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.35;
}
body[class*="ds3-"] .ds3-faq-item p {
  margin: 0;
  color: var(--ds3-primary-bright);
  font-size: 15px;
  line-height: 1.65;
}
body[class*="ds3-"] .ds3-faq-item p a {
  color: var(--ds3-ergo) !important;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--ds3-ergo);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
body[class*="ds3-"] .ds3-faq-item p a:hover {
  color: var(--ds3-ergo-bright) !important;
  text-decoration-color: var(--ds3-ergo-bright);
  text-decoration-thickness: 2px;
}
body[class*="ds3-"] .ds3-faq-item p a:visited {
  color: var(--ds3-ergo) !important;
}
body[class*="ds3-"] .ds3-faq-item p a:visited:hover {
  color: var(--ds3-ergo-bright) !important;
}
body[class*="ds3-"] .ds3-faq-thumbnail {
  margin-top: 8px;
}
body[class*="ds3-"] .ds3-faq-thumbnail img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--ds3-border-strong);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}


/* Hub tokens for css/hub.css */
body.ds3-index,
body.ds3-all-weapons,
body.ds3-all-armor {
  --hub-accent: var(--ds3-heading);
  --hub-accent-bright: var(--ds3-heading-bright);
  --hub-border: var(--ds3-heading-border);
  --hub-card-bg: #161616;
}
@media (min-width: 901px) {
  body.ds3-index .hub-quick-links {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}
body.ds3-all-weapons .hub-checklist-total,
body.ds3-all-armor .hub-checklist-total,
body.ds3-index .hub-checklist-total {
  font-weight: 400;
  color: var(--hub-text-dim, #b8b8b8);
}
body.ds3-index .hub-checklist-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
body.ds3-index .hub-checklist-item-main {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  color: inherit !important;
  font-weight: inherit !important;
}
body.ds3-index .hub-checklist-item-main::after { display: none !important; }
body.ds3-index .hub-checklist-stack .hub-checklist-title {
  margin: 0;
}
body.ds3-index .hub-checklist-bullets {
  margin: 0 0 0 62px;
  padding-left: 1.2em;
}
body.ds3-index .hub-checklist-bullets li {
  margin: 0 0 4px 0;
}
body.ds3-index .hub-checklist-bullets,
body.ds3-index .hub-checklist-bullets li {
  color: var(--ds3-text);
}
body.ds3-index .hub-checklist-bullets a {
  color: var(--ds3-text) !important;
  font-weight: 400;
  text-decoration: none !important;
}
body.ds3-index .hub-checklist-bullets a:visited {
  color: var(--ds3-text) !important;
}
body.ds3-index .hub-checklist-bullets a:hover {
  color: var(--ds3-text) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--ds3-text) !important;
}
body.ds3-index .hub-checklist-bullets a::after { display: none !important; }
body.ds3-all-weapons .hub-checklist-title,
body.ds3-all-armor .hub-checklist-title {
  margin: 0;
}
body.ds3-index .hub-highlight {
  border-color: color-mix(in srgb, var(--ds3-heading) 42%, transparent);
  background: linear-gradient(165deg, var(--ds3-heading-dim) 0%, var(--hub-card-bg) 55%);
}
body.ds3-index .hub-highlight-single {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none !important;
  color: inherit !important;
  font-weight: inherit !important;
}
body.ds3-index .hub-highlight-single::after { display: none !important; }
body.ds3-index .hub-highlight-single img {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
body.ds3-index .hub-highlight-single-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
body.ds3-index .hub-highlight-single-copy strong {
  font-size: 17px;
  color: var(--ds3-heading-bright);
}
body.ds3-index .hub-highlight-single-copy span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ds3-text-dim);
}
@media (max-width: 640px) {
  body.ds3-index .hub-checklist-bullets {
    margin-left: 0;
  }
}
body[class*="ds3-"] .article-content .hub-checklist-icon img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain !important;
}
body.ds3-index header h1,
body.ds3-index .hub-section-title,
body.ds3-index .section-heading,
body.ds3-index .article-content > h2 {
  color: var(--ds3-heading) !important;
}
body.ds3-index a { color: var(--ds3-ergo-bright); }
body.ds3-index .hub-location-card {
  aspect-ratio: 16 / 9;
}
body.ds3-index .hub-location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
body.ds3-index .hub-location-card-icon img {
  object-fit: contain;
  padding: 18% 28% 28%;
}

body[class*="ds3-"] .ds3-location-nav {
  margin: 32px 0 8px;
  padding: 20px;
  background: #161616;
  border: 1px solid var(--ds3-heading-border);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
body[class*="ds3-"] .ds3-location-nav-only-next {
  justify-content: flex-end;
}
body[class*="ds3-"] .ds3-location-nav-col {
  flex: 1;
  min-width: 200px;
}
body[class*="ds3-"] .ds3-location-nav-col-next {
  text-align: right;
}
body[class*="ds3-"] .ds3-location-nav-label {
  font-size: 12px;
  color: var(--ds3-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
body[class*="ds3-"] .ds3-location-nav-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--ds3-heading-dim);
  border: 2px solid var(--ds3-heading);
  border-radius: 8px;
  color: var(--ds3-heading) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
}
body[class*="ds3-"] .ds3-location-nav-card:hover {
  color: var(--ds3-heading-bright) !important;
  border-color: var(--ds3-heading-bright);
}
body[class*="ds3-"] .article-content .ds3-location-nav-card img {
  width: 100px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  position: static;
  inset: auto;
  max-width: none;
}
body[class*="ds3-"] .article-content .ds3-location-nav-card-icon img {
  object-fit: contain;
  background: #111;
}
html body.ds3-index .hub-faq-q,
html body.ds3-index .article-content .hub-faq-item h3.hub-faq-q,
html body[class*="ds3-"] .hub-faq-q,
html body[class*="ds3-"] .article-content .hub-faq-item h3.hub-faq-q,
html body.ds3-guide .article-content h2 {
  color: var(--ds3-heading) !important;
}
html body.ds3-guide .article-content h3,
html body.ds3-guide .article-content h4 {
  color: var(--ds3-secondary-bright) !important;
}
body.ds3-guide .article-content.ds3-guide-content {
  font-size: 16px;
  line-height: 1.75;
}
body.ds3-guide .article-content.ds3-guide-content > p {
  margin: 0 0 1.35rem 0;
  line-height: 1.8;
  font-size: 16px;
}
body.ds3-guide .article-content.ds3-guide-content > ul,
body.ds3-guide .article-content.ds3-guide-content > ol {
  margin: 0 0 1.4rem 0;
  padding-left: 1.4rem;
}
body.ds3-guide .article-content.ds3-guide-content > ul > li,
body.ds3-guide .article-content.ds3-guide-content > ol > li {
  margin: 0 0 0.65rem 0;
  line-height: 1.7;
}
body.ds3-guide .article-content.ds3-guide-content > h2 {
  margin: 2.85rem 0 1.05rem 0;
}
body.ds3-guide .article-content.ds3-guide-content > h3 {
  margin: 2.1rem 0 0.85rem 0;
}
body.ds3-guide .article-content.ds3-guide-content > h4 {
  margin: 1.55rem 0 0.7rem 0;
}
body.ds3-guide .ds3-guide-media {
  margin: 1.55rem 0 1.85rem 0;
}

/* Prose links: ember orange + underline. Wins over the article-content reset,
   hub.css FAQ accent, and grey guide chrome. Cards stay unstyled above. */
html body[class*="ds3-"]:not(.ds3-guide) .article-content p a,
html body[class*="ds3-"]:not(.ds3-guide) .article-content li a,
html body[class*="ds3-"]:not(.ds3-guide) .article-content td a,
html body[class*="ds3-"] .page-intro a,
html body[class*="ds3-"] .ds3-faq-item a,
html body[class*="ds3-"] .hub-faq-a a,
html body[class*="ds3-"] .hub-faq-item a,
html body[class*="ds3-"] .ds3-bullet-list a {
  color: var(--ds3-ergo) !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-decoration-color: var(--ds3-ergo) !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 2px;
}
html body[class*="ds3-"]:not(.ds3-guide) .article-content p a:hover,
html body[class*="ds3-"]:not(.ds3-guide) .article-content li a:hover,
html body[class*="ds3-"]:not(.ds3-guide) .article-content td a:hover,
html body[class*="ds3-"] .page-intro a:hover,
html body[class*="ds3-"] .ds3-faq-item a:hover,
html body[class*="ds3-"] .hub-faq-a a:hover,
html body[class*="ds3-"] .hub-faq-item a:hover,
html body[class*="ds3-"] .ds3-bullet-list a:hover {
  color: var(--ds3-ergo-bright) !important;
  text-decoration-color: var(--ds3-ergo-bright) !important;
}
html body.ds3-index .hub-checklist-bullets,
html body.ds3-index .hub-checklist-bullets li,
html body.ds3-index .hub-checklist-bullets li::marker {
  color: var(--ds3-text) !important;
}
html body.ds3-index .hub-checklist-bullets a,
html body.ds3-index .hub-checklist-bullets a:visited,
html body.ds3-index .article-content li.hub-checklist-bullets a,
html body.ds3-index .article-content .hub-checklist-bullets a {
  color: var(--ds3-text) !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}
html body.ds3-index .hub-checklist-bullets a:hover {
  color: var(--ds3-text) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--ds3-text) !important;
}

/* Guide pages: Poppins on headings only. Body copy stays the site sans. */
body.ds3-guide header h1,
body.ds3-guide .article-content h2,
body.ds3-guide .article-content h3,
body.ds3-guide .article-content h4,
body.ds3-guide .article-content .ds3-guide-toc-label,
body.ds3-guide .article-content .ds3-guide-panel h2 {
  font-family: var(--font-display);
}

/* Guide bullets: white markers, including lists inside callout boxes. */
body.ds3-guide .article-content > ul > li::before {
  background: #fff;
  box-shadow: none;
}
body.ds3-guide .article-content ul li::marker,
body.ds3-guide .article-content ol li::marker,
body.ds3-guide .article-content > ol > li::before {
  color: #fff;
}

/* Missables guide: Skip to chips + callout boxes. */
body.ds3-guide .article-content .ds3-guide-toc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 2rem 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--ds3-border-strong);
  background: rgba(255, 255, 255, 0.04);
}
body.ds3-guide .article-content .ds3-guide-toc-label {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ds3-text-faint);
}
body.ds3-guide .article-content .ds3-guide-toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
html body.ds3-guide .article-content .ds3-guide-toc a,
html body.ds3-guide .article-content .ds3-guide-toc a:visited {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 12, 0.45);
  color: var(--ds3-text) !important;
  font-size: 13px;
  font-weight: 600 !important;
  line-height: 1.35;
  text-decoration: none !important;
}
html body.ds3-guide .article-content .ds3-guide-toc a:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}
html body.ds3-guide .article-content .ds3-guide-toc a::after {
  content: none !important;
  display: none !important;
}

body.ds3-guide .article-content .ds3-guide-panel {
  margin: 0 0 2rem 0;
  padding: 1.35rem 1.5rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--ds3-border-strong);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}
body.ds3-guide .article-content .ds3-guide-panel h2 {
  margin: 0 0 0.85rem 0 !important;
  padding: 0;
  border: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ds3-text-faint) !important;
}
body.ds3-guide .article-content .ds3-guide-panel p,
body.ds3-guide .article-content .ds3-guide-panel li {
  color: var(--ds3-text-dim);
  font-size: 15.5px;
  line-height: 1.7;
}
body.ds3-guide .article-content .ds3-guide-panel p {
  margin: 0 0 0.85rem 0;
}
body.ds3-guide .article-content .ds3-guide-panel ul {
  margin: 0 0 0.85rem 1.25rem;
}
body.ds3-guide .article-content .ds3-guide-panel li {
  margin: 0 0 0.55rem 0;
}
body.ds3-guide .article-content .ds3-guide-overview ul {
  margin: 0 0 0 1.25rem;
}
body.ds3-guide .article-content .ds3-guide-overview li {
  margin: 0 0 0.9rem 0;
}
body.ds3-guide .article-content .ds3-guide-overview li:last-child,
body.ds3-guide .article-content .ds3-guide-panel > :last-child {
  margin-bottom: 0;
}

/* Guide links: parchment, not ember. Headings keep the flame. */
html body.ds3-guide .article-content p a,
html body.ds3-guide .article-content li a,
html body.ds3-guide .article-content a:not(.ds3-location-nav-card):not(.hub-highlight-single):not(.hub-checklist-item):not(.hub-location-card),
html body.ds3-guide .article-content .ds3-guide-panel a,
html body.ds3-guide .article-content .ds3-guide-panel p a,
html body.ds3-guide .article-content .ds3-guide-panel li a {
  color: var(--ds3-text) !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(240, 235, 232, 0.38) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px;
}
html body.ds3-guide .article-content p a:hover,
html body.ds3-guide .article-content li a:hover,
html body.ds3-guide .article-content a:not(.ds3-location-nav-card):not(.hub-highlight-single):hover,
html body.ds3-guide .article-content .ds3-guide-panel a:hover,
html body.ds3-guide .article-content .ds3-guide-panel p a:hover,
html body.ds3-guide .article-content .ds3-guide-panel li a:hover {
  color: #fff !important;
  text-decoration-color: rgba(255, 255, 255, 0.7) !important;
}
html body.ds3-guide .article-content .ds3-guide-panel a::after,
html body.ds3-guide .article-content a::after {
  content: none !important;
  display: none !important;
}
body.ds3-guide .article-content .ds3-item-link-icon {
  display: none !important;
}

/* NPC interactions on All Questlines: parchment links, not ember. */
html body.ds3-all-questlines .article-content .ds3-npc-extra a,
html body.ds3-all-questlines .article-content .ds3-npc-extra p a,
html body.ds3-all-questlines .article-content .ds3-npc-extra li a,
html body.ds3-all-questlines .article-content .ds3-npc-extra .ds3-quest-guide-heading a,
html body.ds3-all-questlines .ds3-npc-extra a.ds3-item-link-inline,
html body.ds3-all-questlines .ds3-npc-extra a.ds3-lamp-link-inline {
  color: var(--ds3-text) !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(240, 235, 232, 0.38) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px;
}
html body.ds3-all-questlines .article-content .ds3-npc-extra a:hover,
html body.ds3-all-questlines .article-content .ds3-npc-extra p a:hover,
html body.ds3-all-questlines .article-content .ds3-npc-extra li a:hover,
html body.ds3-all-questlines .article-content .ds3-npc-extra .ds3-quest-guide-heading a:hover,
html body.ds3-all-questlines .ds3-npc-extra a.ds3-item-link-inline:hover,
html body.ds3-all-questlines .ds3-npc-extra a.ds3-lamp-link-inline:hover {
  color: #fff !important;
  text-decoration-color: rgba(255, 255, 255, 0.7) !important;
}
body.ds3-all-questlines .ds3-npc-extra .ds3-item-link-icon,
body.ds3-all-questlines .ds3-npc-extra .ds3-lamp-link-icon {
  display: none !important;
}
