/* =============================================================================
   DARK GLENN — Site CSS (mockup class names)
   Companion to style.css — covers all page-level components
   ============================================================================= */

/* Map mockup variables to design system */
:root {
  --c-void:        var(--dg-black);
  --c-charcoal:    var(--dg-void);
  --c-iron:        var(--dg-border);
  --c-bone:        var(--dg-text-primary);
  --c-ash:         var(--dg-text-secondary);
  --c-ash-dark:    var(--dg-text-muted);
  --c-blood:       var(--dg-crimson);
  --c-crimson:     var(--dg-crimson-bright);
  --c-crimson-glow: var(--dg-crimson-glow);
  --font-display:  var(--dg-font-heading);
  --font-serif:    var(--dg-font-heading);
  --font-ui:       var(--dg-font-body);
}

/* ============================================================
   AGE GATE
============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-void);
  overflow: hidden;
}

.gate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(122, 15, 30, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(122, 15, 30, 0.10) 0%, transparent 50%);
}

.gate-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.gate-content {
  position: relative;
  text-align: center;
  max-width: 420px;
  padding: 40px;
}

.gate-wordmark {
  font-family: var(--dg-font-heading);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-bone);
  line-height: 1;
  margin-bottom: 8px;
}

.gate-wordmark span { color: var(--c-crimson); }

.gate-rule {
  width: 48px;
  height: 2px;
  background: var(--c-blood);
  margin: 24px auto;
}

.gate-warning {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ash);
  margin-bottom: 16px;
}

.gate-copy {
  font-size: 15px;
  color: var(--c-bone);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.85;
}

.gate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-enter {
  font-family: var(--dg-font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--c-blood);
  color: var(--c-bone);
  border: none;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-enter:hover { background: var(--c-crimson); }

.btn-exit {
  font-family: var(--dg-font-heading);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--c-ash);
  border: 1px solid var(--c-iron);
  padding: 14px 36px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-exit:hover { border-color: var(--c-ash-dark); color: var(--c-bone); }

.gate-disclaimer {
  margin-top: 40px;
  font-size: 11px;
  color: var(--c-ash-dark);
  line-height: 1.6;
}
.gate-disclaimer a { color: var(--c-ash-dark); text-decoration: underline; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-iron);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--dg-font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-bone);
}
.nav-logo span { color: var(--c-crimson); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ash);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--c-bone); }

.nav-cta {
  font-family: var(--dg-font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--c-blood);
  color: var(--c-bone) !important;
  padding: 9px 22px;
  transition: background 0.15s ease;
  display: inline-block;
}
.nav-cta:hover { background: var(--c-crimson) !important; }

/* ============================================================
   BUTTONS (global)
============================================================ */
.btn-primary {
  font-family: var(--dg-font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--c-blood);
  color: var(--c-bone);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--c-crimson); color: var(--c-bone); }

.btn-ghost {
  font-family: var(--dg-font-heading);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--c-bone);
  padding: 14px 32px;
  border: 1px solid rgba(232,224,213,0.25);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.15s ease;
}
.btn-ghost:hover { border-color: var(--c-bone); color: var(--c-bone); }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-top: 64px;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,11,0.3) 0%, rgba(10,10,11,0.85) 60%, var(--c-void) 100%),
    linear-gradient(135deg, #1a0a0e 0%, #0d0d0f 40%, #0a0a14 100%);
}

/* When a cover image is provided via CSS var */
.hero[style*="--hero-bg"] .hero-bg {
  background:
    linear-gradient(to bottom, rgba(10,10,11,0.2) 0%, rgba(10,10,11,0.85) 60%, var(--c-void) 100%),
    var(--hero-bg) center center / cover no-repeat;
}

.hero-art-sim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(122,15,30,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(26,37,53,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #1a0a0e 0%, #0d0d0f 50%, #0a0a14 100%);
}

.hero-art-sim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.008) 60px,
    rgba(255,255,255,0.008) 61px
  );
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 96px;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-crimson);
  border: 1px solid var(--c-blood);
  padding: 4px 12px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--dg-font-heading);
  font-weight: 900;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.05;
  color: var(--c-bone);
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-meta {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ash);
  margin-bottom: 16px;
}
.hero-meta span { margin: 0 8px; opacity: 0.4; }

.hero-desc {
  font-size: 16px;
  color: var(--c-ash);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-iron);
}

.section-title {
  font-family: var(--dg-font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ash);
}

.section-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-crimson);
  transition: color 0.15s ease;
}
.section-link:hover { color: var(--c-bone); }

/* ============================================================
   LATEST UPDATES
============================================================ */
.latest {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px;
}

.comics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.comic-card {
  cursor: pointer;
  display: block;
  color: inherit;
}

.comic-cover {
  aspect-ratio: 2/3;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.comic-card:hover .comic-cover { transform: translateY(-4px); }

.comic-cover-inner,
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-placeholder {
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a14 50%, #0d0d0f 100%);
}

.cover-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(10,10,11,0.9) 0%, transparent 100%);
}

.cover-title-text {
  font-family: var(--dg-font-heading);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--c-bone);
  line-height: 1.2;
}

.cover-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
}

.badge-free {
  background: rgba(10,10,11,0.8);
  color: var(--c-ash);
  border: 1px solid var(--c-iron);
}

.badge-premium {
  background: var(--c-blood);
  color: var(--c-bone);
}

.comic-info-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-bone);
  margin-bottom: 4px;
}

.comic-info-meta {
  font-size: 12px;
  color: var(--c-ash-dark);
}

/* ============================================================
   FEATURED ARTISTS
============================================================ */
.artists {
  background: var(--c-charcoal);
  border-top: 1px solid var(--c-iron);
  border-bottom: 1px solid var(--c-iron);
}

.artists-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px;
}

.artists-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.artist-card {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: inherit;
}

.artist-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-iron);
  border: 2px solid var(--c-iron);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dg-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-ash);
  transition: border-color 0.15s ease;
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-card:hover .artist-avatar { border-color: var(--c-blood); }

.artist-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-bone);
}

.artist-count {
  font-size: 12px;
  color: var(--c-ash-dark);
}

/* ============================================================
   PREMIUM CTA
============================================================ */
.premium-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px;
}

.premium-block {
  background: var(--c-charcoal);
  border: 1px solid var(--c-iron);
  border-left: 3px solid var(--c-blood);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.premium-block-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-crimson);
  margin-bottom: 8px;
}

.premium-block-title {
  font-family: var(--dg-font-heading);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-bone);
  margin-bottom: 8px;
}

.premium-block-perks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.perk {
  font-size: 13px;
  color: var(--c-ash);
  display: flex;
  align-items: center;
  gap: 4px;
}
.perk::before { content: '—'; color: var(--c-blood); margin-right: 2px; }

.premium-price {
  text-align: center;
  flex-shrink: 0;
}

.price-amount {
  font-family: var(--dg-font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--c-bone);
  line-height: 1;
}

.price-period {
  font-size: 13px;
  color: var(--c-ash);
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--c-charcoal);
  border-top: 1px solid var(--c-iron);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--dg-font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ash-dark);
}
.footer-logo span { color: var(--c-blood); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ash-dark);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--c-ash); }

.footer-copy {
  font-size: 11px;
  color: var(--c-ash-dark);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .comics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .comics-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .premium-block { flex-direction: column; padding: 32px; }
  .hero-title { font-size: 36px; }
  .artists-row { gap: 24px; }
  .hero-content { padding: 0 24px 64px; }
  .latest, .artists-inner, .premium-strip, .footer-inner { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .comics-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gate-wordmark { font-size: 38px; }
}


/* ============================================================
/* ============================================================
   SUBSCRIBE PAGE v2 — Centered panel layout
   Hardcoded critical values to bypass GP/variable cascade
============================================================ */

/* Page shell */
body.dg-subscribe-page {
  background: #0a0a0b !important;
  color: #e8e6e0;
}

body.dg-subscribe-page .sub-main {
  padding-top: 64px;
  min-height: 100vh;
}

/* Centered container used by both sections */
body.dg-subscribe-page .sub-centered {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Hero */
body.dg-subscribe-page .sub-hero {
  padding: 72px 0 56px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 26, 42, 0.14) 0%, transparent 60%),
    #0a0a0b;
  border-bottom: 1px solid #2e2e38;
}

body.dg-subscribe-page .sub-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b02235;
  margin: 0 0 20px;
}

body.dg-subscribe-page .sub-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  color: #e8e6e0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

body.dg-subscribe-page .sub-sub {
  font-size: 16px;
  color: #9a9890;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* Plan section */
body.dg-subscribe-page .sub-plan-section {
  padding: 64px 0 80px;
}

/* Plan card */
body.dg-subscribe-page .sub-plan-card {
  background: #1e1e24;
  border: 1px solid #2e2e38;
  border-top: 2px solid #8b1a2a;
  padding: 32px;
  margin-bottom: 24px;
}

/* Card header */
body.dg-subscribe-page .sub-plan-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

body.dg-subscribe-page .sub-plan-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9890;
}

body.dg-subscribe-page .sub-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

body.dg-subscribe-page .sub-plan-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: #e8e6e0;
  line-height: 1;
}

body.dg-subscribe-page .sub-plan-period {
  font-size: 14px;
  color: #9a9890;
}

/* Dividers */
body.dg-subscribe-page .sub-plan-divider {
  height: 1px;
  background: #2e2e38;
  margin-bottom: 24px;
}

/* Perks list inside card */
body.dg-subscribe-page .sub-perks-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.dg-subscribe-page .sub-perks-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #c8c0b4;
  line-height: 1.5;
}

body.dg-subscribe-page .perk-icon {
  color: #8b1a2a;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* CTA button — hardcoded, no variable dependency */
body.dg-subscribe-page .sub-cta-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  background: #8b1a2a !important;
  color: #e8e6e0 !important;
  padding: 16px 24px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: background 0.15s ease;
}

body.dg-subscribe-page .sub-cta-btn:hover,
body.dg-subscribe-page .sub-cta-btn:focus,
body.dg-subscribe-page .sub-cta-btn:active {
  background: #b02235 !important;
  color: #e8e6e0 !important;
  text-decoration: none !important;
}

/* Already-member state */
body.dg-subscribe-page .sub-already-member {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #9a9890;
}

/* Login note */
body.dg-subscribe-page .sub-login-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: #5a5858;
  text-align: center;
}

body.dg-subscribe-page .sub-login-note a {
  color: #9a9890 !important;
  text-decoration: underline !important;
}

/* Trust strip */
body.dg-subscribe-page .sub-trust {
  font-size: 11px;
  color: #5a5858;
  letter-spacing: 0.08em;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

body.dg-subscribe-page .sub-trust-dot { opacity: 0.4; }

/* Legal text */
body.dg-subscribe-page .sub-legal {
  font-size: 11px;
  color: #5a5858;
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

/* Nav overrides — GP sets a{color:blue;text-decoration:underline} */
body.dg-subscribe-page .nav-links a {
  color: #9a9890 !important;
  text-decoration: none !important;
}
body.dg-subscribe-page .nav-links a:hover {
  color: #e8e6e0 !important;
}

/* Footer links */
body.dg-subscribe-page .footer-links a {
  text-decoration: none !important;
  color: #5a5858 !important;
}
body.dg-subscribe-page .footer-links a:hover {
  color: #9a9890 !important;
}

/* ============================================================
   LEGAL PAGES
============================================================ */

body.dg-legal-page {
  background: #0a0a0b !important;
  color: #e8e6e0;
}

body.dg-legal-page .legal-main {
  padding-top: 64px;
  min-height: 100vh;
}

body.dg-legal-page .legal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  box-sizing: border-box;
}

body.dg-legal-page .legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2e2e38;
}

body.dg-legal-page .legal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b1a2a;
  margin: 0 0 12px;
}

body.dg-legal-page .legal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #e8e6e0;
  line-height: 1.1;
  margin: 0 0 12px;
}

body.dg-legal-page .legal-updated {
  font-size: 12px;
  color: #5a5858;
  letter-spacing: 0.04em;
  margin: 0;
}

/* Body content — WordPress the_content() output */
body.dg-legal-page .legal-body {
  font-size: 15px;
  line-height: 1.75;
  color: #9a9890;
}

body.dg-legal-page .legal-body h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8c0b4;
  margin: 40px 0 12px;
  padding-top: 40px;
  border-top: 1px solid #1e1e24;
}

body.dg-legal-page .legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

body.dg-legal-page .legal-body p {
  color: #9a9890;
  margin: 0 0 16px;
}

body.dg-legal-page .legal-body strong {
  color: #c8c0b4;
  font-weight: 600;
}

body.dg-legal-page .legal-body a {
  color: #9a9890 !important;
  text-decoration: underline !important;
}

body.dg-legal-page .legal-body a:hover {
  color: #e8e6e0 !important;
}

body.dg-legal-page .legal-body ul,
body.dg-legal-page .legal-body ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

body.dg-legal-page .legal-body li {
  color: #9a9890;
  margin-bottom: 8px;
}

/* Nav overrides */
body.dg-legal-page .nav-links a {
  color: #9a9890 !important;
  text-decoration: none !important;
}
body.dg-legal-page .nav-links a:hover {
  color: #e8e6e0 !important;
}

/* Footer links */
body.dg-legal-page .footer-links a {
  text-decoration: none !important;
  color: #5a5858 !important;
}
body.dg-legal-page .footer-links a:hover {
  color: #9a9890 !important;
}
