  /* Prose styles */
  .prose section {
    scroll-margin-top: calc(58px + 2px);
  }
  
  .prose h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #fff;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .prose h3 {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a8a8a8;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .prose p {
    color: #a8a8a8;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .prose ul {
    margin: 0.5rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .prose ul li {
    color: #a8a8a8;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    padding-left: 1.25rem;
    position: relative;
  }
  .prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 1px;
    background: #e84118;
  }
  .prose a {
    color: #e84118;
    text-decoration: none;
    transition: color 0.15s;
  }
  .prose a:hover { color: #c4320e; }
  .prose strong { color: #fff; font-weight: 500; }

  /* TOC */
  .toc-link {
    transition: color 0.15s, padding-left 0.15s;
  }
  .toc-link:hover {
    color: #fff;
    padding-left: 4px;
  }
