    /* Smaller heading clamps for long-form content */
    h3 { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.2; }
    h4 { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.3; }

    /* Long-form reading column */
    .prose {
      color: #3F3D3A;
      font-size: 15px;
      line-height: 1.65;
    }
    @media (min-width: 640px) {
      .prose { font-size: 16px; }
    }
    .prose p { margin: 0 0 14px; }
    .prose p:last-child { margin-bottom: 0; }
    .prose strong { color: #242424; font-weight: 500; }
    .prose ul {
      list-style: disc;
      padding-left: 22px;
      margin: 0 0 14px;
    }
    .prose ul li { margin-bottom: 8px; }
    .prose ul li:last-child { margin-bottom: 0; }

    /* Section spacing */
    .term-section {
      padding: 22px 0;
      border-top: 1px solid #EFEFEC;
    }
    .term-section:first-child { border-top: 0; padding-top: 8px; }
    .term-section h3 { margin-bottom: 12px; }
    @media (min-width: 640px) {
      .term-section { padding: 28px 0; }
      .term-section h3 { margin-bottom: 14px; }
    }
    @media (min-width: 768px) {
      .term-section { padding: 36px 0; }
    }
