/* CSS Variables */
:root {
  /* Ink/background */
  --ink: #faf8f2;
  --ink2: #f2efe7;
  --ink3: #eae6dd;
  --ink4: #e2ded5;
  
  /* Gold accent */
  --gold: #9a7a10;
  --gold2: #7a5a00;
  --gold3: #5a4200;
  --gold-bg: rgba(154, 122, 16, 0.06);
  --gold-border: rgba(154, 122, 16, 0.1);
  
  /* Text */
  --text: #2a2520;
  --text2: #4a4238;
  --text3: #6a6258;
  
  /* Muted */
  --muted: #8a8278;
  --muted2: #a09888;
  
  /* Teal */
  --teal: #1a7a60;
  --teal2: #148060;
  --teal-bg: rgba(26, 122, 96, 0.08);
  
  /* Coral/red */
  --coral: #a84838;
  --coral2: #c86050;
  --coral-bg: rgba(168, 72, 56, 0.06);
  
  /* Purple */
  --purple: #5848a0;
  --purple-bg: rgba(88, 72, 160, 0.06);
  
  /* Lines */
  --line: rgba(0, 0, 0, 0.08);
  --line2: rgba(0, 0, 0, 0.04);
  
  /* Fonts */
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  
  /* Layout */
  --max-w: 780px;
  --wide-w: 1060px;
}

/* Dark Mode */
body.dark {
  --ink: #181615;
  --ink2: #221f1d;
  --ink3: #2d2927;
  --ink4: #383331;
  --text: #f0ebe1;
  --text2: #d4cec4;
  --text3: #a8a298;
  --muted: #857f75;
  --muted2: #6b665f;
  --gold: #cba83b;
  --gold2: #dfbc4e;
  --gold3: #ebd076;
  --gold-bg: rgba(203, 168, 59, 0.08);
  --gold-border: rgba(203, 168, 59, 0.15);
  --teal: #3ec8a3;
  --teal2: #58dbb8;
  --teal-bg: rgba(62, 200, 163, 0.08);
  --coral: #e27563;
  --coral2: #f28a79;
  --coral-bg: rgba(226, 117, 99, 0.08);
  --purple: #9686e0;
  --purple-bg: rgba(150, 134, 224, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --line2: rgba(255, 255, 255, 0.06);
}

/* Sepia Mode */
body.sepia {
  --ink: #f4ecd8;
  --ink2: #e9e0c9;
  --ink3: #ded4ba;
  --ink4: #d4c8ac;
  --text: #4a3c31;
  --text2: #6b5c4f;
  --text3: #877769;
  --muted: #a39384;
  --gold: #aa7c11;
  --gold2: #8c6409;
  --line: rgba(74, 60, 49, 0.12);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  color: var(--text);
  background: var(--ink);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.5s ease, background 0.3s ease, color 0.3s ease;
  font-size: 1.125rem;
}

body.loaded {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.full-wrap {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

/* Reading Progress Bar */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 100;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* Settings Gear Button */
#gear {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
#gear:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
body.dark #gear {
  background: rgba(0, 0, 0, 0.2);
}

/* Settings Panel */
#settings {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 280px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#settings.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.set-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: block;
}
.set-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.set-line {
  height: 1px;
  background: var(--line);
  margin: 1rem 0;
}
.set-btn {
  flex: 1;
  background: var(--ink2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.set-btn:hover {
  background: var(--ink3);
}
.set-btn.active {
  background: var(--gold-bg);
  border-color: var(--gold);
  color: var(--gold);
}

/* Scroll-to-Top Button */
#totop {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}
#totop.vis {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#totop:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Home Header */
.home-header {
  text-align: center;
  margin-bottom: 4rem;
}
.home-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--gold);
  padding: 3px;
  background: var(--ink2);
  margin: 0 auto 1.5rem;
  display: block;
  box-shadow: 0 4px 20px var(--gold-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.home-avatar:hover {
  transform: scale(1.05);
  border-color: var(--teal);
}
.home-name {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.home-bio {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}
.stat-card {
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.stat-num {
  font-family: var(--sans);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-lbl {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

/* Section Labels */
.articles-label, .ch-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Article Cards */
.articles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.article-card {
  display: block;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: var(--gold);
}
.ac-body {
  padding: 1.5rem;
}
.ac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ac-tags span {
  font-family: var(--sans);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: var(--ink3);
  color: var(--text2);
}
.ac-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.article-card:hover .ac-title {
  color: var(--gold);
}
.ac-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ac-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted2);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.ac-author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
}

/* Badges */
.ac-severity {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}
.severity-high { background: var(--coral-bg); color: var(--coral); }
.severity-medium { background: var(--gold-bg); color: var(--gold); }
.severity-critical { background: #fee2e2; color: #b91c1c; }
body.dark .severity-critical { background: rgba(185, 28, 28, 0.2); }

.ac-platform {
  font-family: var(--sans);
  font-size: 0.75rem;
  background: var(--purple-bg);
  color: var(--purple);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.ac-status {
  font-family: var(--sans);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.status-confirmed, .status-valid, .status-merged {
  background: var(--teal-bg);
  color: var(--teal);
}
.status-duplicate {
  background: var(--line);
  color: var(--muted);
}
.private-badge, .public-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-family: var(--sans);
}
.private-badge { color: var(--coral); }
.public-badge { color: var(--teal); }

/* OSS Contribution Card */
.oss-card:hover {
  border-color: var(--teal);
}
.oss-card:hover .ac-title {
  color: var(--teal);
}

/* Report Page Styles */
#back {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  transition: all 0.3s ease;
}
#back:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(-4px);
}

.hero-pre {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-align: center;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
}
.meta-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Prose */
.prose {
  font-size: 1.125rem;
}
.prose p {
  margin-bottom: 1.5rem;
}
.prose h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.5rem;
}
.prose h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}
.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.5rem;
}
.drop::first-letter {
  float: left;
  font-size: 4rem;
  line-height: 0.8;
  padding-right: 0.5rem;
  padding-top: 0.2rem;
  color: var(--gold);
  font-weight: 700;
}

/* Code Blocks */
.code-block {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow-x: auto;
}
.code-block code {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: #d4d4d4;
  line-height: 1.5;
}
/* Basic syntax highlight colors */
.code-block .keyword { color: #569cd6; }
.code-block .string { color: #ce9178; }
.code-block .comment { color: #6a9955; }
.code-block .function { color: #dcdcaa; }

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.75rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}
.code-block:hover .copy-btn {
  opacity: 1;
}
.copy-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* Callouts */
.callout {
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.6;
}
.callout-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.callout.teal { background: var(--teal-bg); border-left: 4px solid var(--teal); }
.callout.teal .callout-label { color: var(--teal); }
.callout.amber { background: var(--gold-bg); border-left: 4px solid var(--gold); }
.callout.amber .callout-label { color: var(--gold); }
.callout.coral { background: var(--coral-bg); border-left: 4px solid var(--coral); }
.callout.coral .callout-label { color: var(--coral); }
.callout.purple { background: var(--purple-bg); border-left: 4px solid var(--purple); }
.callout.purple .callout-label { color: var(--purple); }

/* Pull Quotes */
.pq {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text2);
  margin: 3rem 0;
  padding: 1rem 0 1rem 2rem;
  border-left: 4px solid var(--gold);
  position: relative;
}
.pq::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 4rem;
  color: var(--gold-bg);
  font-family: var(--sans);
}

/* Facts Grid */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.fact {
  background: var(--ink2);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-align: center;
}
.fact-num {
  font-family: var(--sans);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.fact-lbl {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Steps */
.steps {
  margin: 2rem 0;
}
.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
}
.step-content {
  padding-top: 0.25rem;
}

/* Comparison Table */
.cmp {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: var(--sans);
  font-size: 0.95rem;
}
.cmp th {
  background: var(--ink2);
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--line);
  color: var(--text2);
}
.cmp td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.cmp tr:last-child td {
  border-bottom: none;
}

/* Separator */
.sep {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 4rem 0;
  opacity: 0.5;
}

/* Article Footer */
.art-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.9rem;
}

/* Footer */
.home-footer {
  text-align: center;
  padding: 3rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Scroll Animations */
.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim.vis {
  opacity: 1;
  transform: translateY(0);
}
.ad1 { transition-delay: 0.1s; }
.ad2 { transition-delay: 0.2s; }
.ad3 { transition-delay: 0.3s; }
.ad4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 600px) {
  html { font-size: 14px; }
  .wrap, .full-wrap { padding: 2rem 1rem; }
  
  #gear {
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }
  #settings {
    bottom: 4rem;
    right: 1rem;
    width: calc(100vw - 2rem);
  }
  #totop {
    bottom: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
  }
  #back {
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
  }
  
  .home-name { font-size: 2rem; }
  .ac-body { padding: 1rem; }
  .pq { font-size: 1.25rem; }
  
  .meta-info { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .art-footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .anim {
    opacity: 1;
    transform: none;
  }
}

/* Print Styles */
@media print {
  #progress, #gear, #settings, #totop, #back, .home-footer {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .wrap, .full-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .article-card, .code-block, .fact, .callout {
    break-inside: avoid;
    border: 1px solid #ddd;
    box-shadow: none;
  }
  a { text-decoration: underline; }
}

/* ===== ADDITIONAL MISSING STYLES ===== */

/* Code block header bar */
.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.code-lang {
  font-family: var(--sans);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.4);
}
.code-block pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Inline code in prose */
code {
  font-family: var(--mono);
  font-size: .85em;
  background: var(--gold-bg);
  color: var(--gold2);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--gold-border);
}
body.dark code {
  background: rgba(203,168,59,.1);
  border-color: rgba(203,168,59,.15);
}
.code-block code {
  background: none;
  border: none;
  padding: 0;
  color: #d4d4d4;
}

/* Tags pills for report hero */
.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.tag {
  font-family: var(--sans);
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 4px;
  background: var(--ink3);
  color: var(--text3);
}

/* Gold highlight in titles */
.gl { color: var(--gold); }

/* Fact card aliases (report page uses fact-card/fact-val) */
.fact-card {
  background: var(--ink2);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.fact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.fact-val {
  font-family: var(--sans);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.2;
}

/* Hero header spacing */
.hero {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

/* Steps as ordered list in report */
.steps {
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.steps li {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text2);
  font-size: 1rem;
}
.steps li strong {
  color: var(--gold);
}

/* Callout lists */
.callout ul {
  padding-left: 1.25rem;
  margin: .5rem 0 0;
}
.callout li {
  margin-bottom: .35rem;
  line-height: 1.7;
}
.callout strong {
  color: var(--text);
}

/* Links styling */
a:hover {
  color: var(--gold);
}
.art-footer a {
  color: var(--gold);
}

/* Drop cap */
.drop {
  float: left;
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: .72;
  padding: .1rem .75rem 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* ch-title gold gradient underline */
.ch-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), transparent) 1;
}
