/* ═══════════════════════════════════════════════════
   FinHealth Times — Ghost Theme Stylesheet
   Design: Editorial, serif-first. A research publication.
   Warm paper palette, Playfair Display + Source Serif 4.
   Distinct from attune.co — "Stripe Press" model.
   ═══════════════════════════════════════════════════ */


/* ─────────── TOKENS ─────────── */

:root {
  /* Editorial palette — warm, not clinical */
  --ink: #1a1a2e;
  --ink-soft: #2d2d3d;
  --text: #2d2d2d;
  --text-mid: #555555;
  --text-light: #777777;
  --text-muted: #999999;
  --rule: #e0ddd8;
  --rule-dark: #c8c4be;
  --paper: #faf8f5;
  --paper-warm: #f5f2ed;
  --paper-dark: #edeae4;
  --accent: #145456;
  --accent-light: #edf7f6;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --content-width: 720px;
  --content-wide: 1100px;
  --page-padding: 24px;

  /* Misc */
  --radius: 4px;
}

/* Dark mode */
[data-theme="dark"] {
  --ink: #e0ddd8;
  --ink-soft: #c8c4be;
  --text: #d4d0ca;
  --text-mid: #b0aba3;
  --text-light: #8a847c;
  --text-muted: #6b655d;
  --rule: #2d2d3d;
  --rule-dark: #3d3d4d;
  --paper: #1a1a2e;
  --paper-warm: #222236;
  --paper-dark: #15152a;
  --accent: #2bbcb0;
  --accent-light: #1a2e2d;
  --white: #222236;
}


/* ─────────── RESET ─────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }


/* ─────────── FADE-IN ANIMATIONS ─────────── */

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─────────── THEME TOGGLE ─────────── */

.theme-toggle {
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.2s ease;
  line-height: 1;
  position: fixed;
  top: 12px;
  right: 6vw;
  z-index: 1000;
}

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

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: inline; }
[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }


/* ─────────── CONTAINER ─────────── */

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}


/* ─────────── MASTHEAD (homepage) ─────────── */

.masthead {
  padding: 40px 8vw 0;
  text-align: center;
  border-bottom: 3px double var(--rule-dark);
}

.masthead-date {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.masthead h1 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.masthead-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ─────────── SECTION NAV (sticky) ─────────── */

.nav-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 8vw;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

.nav-bar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .nav-bar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-bar a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-bar a:hover { color: var(--ink); }


/* ─────────── FEATURED STORY ─────────── */

.featured {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--rule);
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.featured-text {
  padding-top: 8px;
}

.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.featured h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.featured h2 a {
  color: inherit;
  text-decoration: none;
}

.featured h2 a:hover {
  color: var(--accent);
}

.featured-deck {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured-meta {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

.featured-meta a {
  color: var(--text-mid);
  font-weight: 600;
  text-decoration: none;
}

/* Featured image */
.featured-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* ─────────── ARTICLE GRID ─────────── */

.grid-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}

.grid-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.grid-section-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.grid-section-header a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.grid-section-header a:hover { text-decoration: underline; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


/* ─────────── ARTICLE CARD ─────────── */

.article-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card .card-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.article-card h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.article-card:hover h4 { color: var(--accent); }

.article-card p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 10px;
}

.article-card .card-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}


/* ─────────── THE NUMBER ─────────── */

.the-number {
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}

.the-number .section-label {
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.the-number .big-number {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 16px;
}

.the-number .number-context {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.the-number .number-source {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}


/* ─────────── SUBSCRIBE SECTION ─────────── */

.subscribe-section {
  padding: 48px 0;
}

.subscribe-box {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.subscribe-box h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.subscribe-box p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.5;
}

.subscribe-form {
  display: flex;
  gap: 8px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--accent);
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.subscribe-form button {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.subscribe-form button:hover { background: var(--accent); }

[data-theme="dark"] .subscribe-form button {
  background: #e0ddd8;
  color: #1a1a2e;
}

[data-theme="dark"] .subscribe-form button:hover {
  background: var(--accent);
  color: #ffffff;
}


/* ─────────── TAG HEADER ─────────── */

.tag-header {
  padding: 40px 8vw 0;
  text-align: center;
  border-bottom: 3px double var(--rule-dark);
}

.tag-header-inner {
  padding-bottom: 20px;
}

.tag-header .header-masthead a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}

.tag-header .header-masthead a:hover { color: var(--accent); }

.tag-header .header-masthead {
  margin-bottom: 24px;
}

.tag-header .section-label {
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.tag-description {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
}


/* ─────────── ARTICLE HEADER (post/page) ─────────── */

.article-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--rule);
}

.article-header-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.header-masthead a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}

.header-masthead a:hover { color: var(--accent); }

.article-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 20px;
}

.article-deck {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 24px;
}

.article-meta {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.article-meta strong {
  color: var(--text-mid);
  font-weight: 600;
}


/* ─────────── ARTICLE BODY (.gh-content) ─────────── */

.gh-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px var(--page-padding) 60px;
}

.gh-content > * + * {
  margin-top: 24px;
}

.gh-content p {
  font-family: var(--font-body);
  font-size: 19px;
  color: var(--text);
  line-height: 1.75;
}

.gh-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 48px;
  line-height: 1.2;
}

.gh-content h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 40px;
}

.gh-content h4 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 36px;
  line-height: 1.3;
}

.gh-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gh-content a:hover {
  color: var(--ink);
}

.gh-content strong {
  font-weight: 600;
  color: var(--ink);
}

.gh-content em {
  font-style: italic;
}

.gh-content ul,
.gh-content ol {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  padding-left: 1.5em;
}

.gh-content li {
  margin-bottom: 8px;
}

/* Pull quotes — blockquote in Ghost */
.gh-content blockquote {
  margin: 40px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}

.gh-content blockquote p {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}

.gh-content blockquote cite,
.gh-content blockquote footer {
  display: block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 12px;
}

.gh-content hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

.gh-content code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--paper-warm);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 3px;
}

.gh-content pre {
  background: var(--ink-soft);
  color: #e0ddd8;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  padding: 24px 28px;
  border-radius: var(--radius);
  overflow-x: auto;
}

[data-theme="dark"] .gh-content pre {
  background: #0f0f1e;
}

.gh-content pre code {
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
}

/* Figure captions */
.gh-content figure {
  margin: 32px 0;
}

.gh-content figcaption {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}


/* ─────────── GHOST CARD OVERRIDES ─────────── */

.kg-image-card {
  margin-top: 32px;
  margin-bottom: 32px;
}

.kg-image-card img {
  border-radius: var(--radius);
}

.kg-image-card figcaption {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Wide and full width images */
.kg-width-wide {
  max-width: 900px;
  margin-left: calc(50% - 450px);
  margin-right: calc(50% - 450px);
}

.kg-width-full {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.kg-callout-card {
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.kg-callout-card .kg-callout-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.kg-bookmark-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.kg-bookmark-card:hover {
  border-color: var(--accent);
}

.kg-bookmark-content {
  padding: 20px;
}

.kg-bookmark-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.kg-bookmark-description {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.5;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}

/* Toggle card */
.kg-toggle-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
}

.kg-toggle-heading-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.kg-toggle-content {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
}


/* ─────────── SOURCES (article bottom) ─────────── */

.sources {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--page-padding) 48px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.sources h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.sources ol {
  list-style-position: outside;
  padding-left: 20px;
}

.sources li {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 8px;
}

.sources a {
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}

.sources a:hover { text-decoration: underline; }


/* ─────────── RELATED POSTS ─────────── */

.related {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--page-padding) 48px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.related h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.related-card {
  text-decoration: none;
  color: inherit;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.related-card:hover { border-color: var(--accent); }

.related-card .card-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.related-card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}


/* ─────────── PAGINATION ─────────── */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  font-family: var(--font-ui);
  font-size: 14px;
}

.pagination a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.pagination a:hover {
  text-decoration: underline;
}

.pagination .page-number {
  color: var(--text-muted);
}


/* ─────────── FOOTER ─────────── */

.site-footer {
  padding: 40px 0;
  text-align: center;
  border-top: 3px double var(--rule-dark);
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.footer-masthead {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-pub {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-pub a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.footer-pub a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
}

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

.footer-copyright {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}


/* ─────────── ERROR PAGE ─────────── */

.error-page {
  margin-top: 32px;
  text-align: center;
  padding: 120px var(--page-padding);
}

.error-code {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 600;
  color: var(--rule-dark);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.error-page p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.error-page a {
  color: var(--accent);
  text-decoration: underline;
}


/* ─────────── RESPONSIVE ─────────── */

@media (max-width: 768px) {
  .masthead h1 { font-size: 36px; }

  .featured-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured h2 { font-size: 28px; }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-bar {
    gap: 16px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 14px 24px;
    -webkit-overflow-scrolling: touch;
  }

  .the-number .big-number { font-size: 80px; }

  .article-header h1 { font-size: 32px; }
  .article-deck { font-size: 18px; }
  .gh-content p { font-size: 17px; }
  .gh-content blockquote,
  .gh-content blockquote p { font-size: 20px; }

  .related-grid { grid-template-columns: 1fr; }

  .subscribe-form { flex-direction: column; }

  .tag-header .section-label { font-size: 22px; }
}

@media (max-width: 480px) {
  .masthead {
    padding: 40px 16px 0;
  }

  .masthead h1 { font-size: 30px; }

  .container { padding: 0 16px; }

  .nav-bar { padding: 14px 16px; }

  .the-number .big-number { font-size: 60px; }

  .article-header-inner { padding: 0 16px; }
  .article-header h1 { font-size: 28px; }
  .gh-content { padding: 32px 16px 48px; }

  .theme-toggle { right: 16px; }

  .kg-width-wide {
    max-width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
  }

  .error-page { padding: 80px 16px; }
  .error-code { font-size: 64px; }
}
