/* ==========================================================================
   红杏云 - Modern Newspaper Edition
   Style: Cream-White Paper + Serif Headlines + Compact Sans-Serif Body + Editorial Columns
   ========================================================================== */

:root {
  --bg-dark: #fcf9f2;
  --bg-card: #ffffff;
  --bg-paper-alt: #f3ede2;
  --bg-paper-dark: #1f1e1c;
  
  --border-color: #e2dbce;
  --border-dark: #1f1e1c;
  --border-glow: rgba(185, 28, 28, 0.25);
  
  --primary: #991b1b; /* Editorial Crimson Red */
  --primary-hover: #7f1d1d;
  --primary-glow: rgba(153, 27, 27, 0.15);
  --accent-cyan: #0284c7;
  --accent-purple: #6b21a8;
  --accent-green: #15803d;

  --text-main: #1f1e1c;
  --text-muted: #4a4744;
  --text-dim: #78736c;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  
  --radius-lg: 4px;
  --radius-md: 2px;
  --radius-sm: 0px;
  
  --transition: all 0.2s ease-in-out;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-dark);
  background-image: radial-gradient(#e5dec9 0.75px, transparent 0.75px);
  background-size: 24px 24px;
}

/* Typography & Links */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  color: var(--text-main);
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-family: var(--font-sans);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Layout */
section {
  padding: 4.5rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.section-title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-sans);
  color: var(--primary);
  background: rgba(153, 27, 27, 0.06);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-desc {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
}

/* Editorial Rules & Dividers */
.newspaper-divider {
  border: none;
  border-top: 3px double var(--border-dark);
  margin: 2rem 0;
}

.newspaper-rule-thin {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 1.5rem 0;
}

/* Dateline Bar */
.newspaper-topbar {
  background: var(--bg-paper-dark);
  color: #f3ede2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--border-dark);
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 3px 3px 0px var(--border-dark);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px var(--border-dark);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border-color: var(--border-dark);
  box-shadow: 3px 3px 0px var(--border-dark);
}

.btn-secondary:hover {
  background: var(--bg-paper-alt);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0px var(--border-dark);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--border-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.masthead {
  padding: 1.25rem 0 1rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.masthead-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.8rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-serif);
  color: var(--text-main);
}

.brand-logo svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 700;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-dark);
  color: var(--text-main);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
}

/* Hero Section - Newspaper Front Page */
.hero {
  padding: 3.5rem 0;
  background: var(--bg-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: stretch;
}

.hero-content {
  border-right: 1px solid var(--border-color);
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(153, 27, 27, 0.3);
  text-underline-offset: 6px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 1rem 0 2rem 0;
  line-height: 1.75;
  font-family: var(--font-sans);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-features-list {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  list-style: none;
}

.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
}

.hero-features-list svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Newspaper Live Telegraph Dashboard Graphic */
.dashboard-card {
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  padding: 1.75rem;
  box-shadow: 6px 6px 0px var(--border-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-card::after {
  content: 'LIVE TELEGRAM DISPATCH';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.6rem;
  border: 1px solid var(--border-dark);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-dark);
  margin-bottom: 1.25rem;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-green);
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulse 2s infinite;
}

.nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.node-item {
  background: var(--bg-paper-alt);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.node-item:hover {
  border-color: var(--border-dark);
  background: #ffffff;
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.node-flag { font-size: 1.2rem; }

.node-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-sans);
}

.node-ping {
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 800;
  font-family: monospace;
}

.network-graph-wrap {
  position: relative;
  width: 100%;
  height: 120px;
  background: var(--bg-paper-alt);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.network-svg {
  width: 100%;
  height: 100%;
}

/* Bento Grid Features - Editorial Columns */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border-dark);
}

.bento-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-3px);
  box-shadow: 4px 4px 0px var(--border-dark);
}

.bento-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-paper-alt);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.bento-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

/* Scenarios - Feature Supplements */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary);
  padding: 2.25rem;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.tag-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--bg-paper-alt);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Pricing Section - Tariff Table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-dark);
  box-shadow: 4px 4px 0px var(--border-dark);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  background: var(--bg-card);
  box-shadow: 6px 6px 0px var(--border-dark);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.9rem;
  border: 1px solid var(--border-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.pricing-header p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.pricing-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-num {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-serif);
  color: var(--text-main);
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 700;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-color);
}

.pricing-features svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Articles 3x3 Grid - The Press Feed */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--border-dark);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.article-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-3px);
  box-shadow: 4px 4px 0px var(--border-dark);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-cat {
  color: var(--primary);
  background: rgba(153, 27, 27, 0.08);
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(153, 27, 27, 0.3);
}

.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.article-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.article-link {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-link:hover {
  text-decoration: underline;
}

/* Testimonials - Letters to Editor */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--border-color);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-serif);
}

.user-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  font-family: var(--font-serif);
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  font-family: var(--font-serif);
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-serif);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 800;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--border-dark);
  box-shadow: 3px 3px 0px var(--border-dark);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* Footer - Newspaper Editorial Impressum */
.footer {
  background: var(--bg-paper-dark);
  color: #f3ede2;
  border-top: 3px double var(--border-dark);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-logo {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #a39d93;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #383632;
  padding-bottom: 0.4rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #b8b2a7;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #383632;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.partner-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
}

.partner-links a {
  color: #d1cbc0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-links a:hover {
  color: #ffffff;
}

.copyright {
  font-size: 0.8rem;
  color: #888277;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Keyframes */
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile & Tablet Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content {
    border-right: none;
    padding-right: 0;
  }
  .bento-grid, .pricing-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 3.8rem;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    border-bottom: 2px solid var(--border-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .bento-grid, .scenarios-grid, .pricing-grid, .articles-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

/* Secondary Page & Article Layout Adjustments */
.page-header {
  padding: 3rem 0 2rem 0;
  text-align: center;
  border-bottom: 2px solid var(--border-dark);
  margin-bottom: 3rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: 1.05rem;
  font-family: var(--font-sans);
}

.article-body h2 {
  font-family: var(--font-serif);
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-dark);
}

.article-body h3 {
  font-family: var(--font-serif);
  margin: 1.75rem 0 0.85rem 0;
}

.article-body p {
  margin-bottom: 1.35rem;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body blockquote {
  background: var(--bg-paper-alt);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-left-width: 4px;
  border-left-color: var(--primary);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.article-body th, .article-body td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  text-align: left;
}

.article-body th {
  background: var(--bg-paper-alt);
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--text-main);
  border-bottom: 2px solid var(--border-dark);
}

.related-articles {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-dark);
}
