 .khc-conditions {
      --khc-ink: #13293D;
      --khc-paper: #F0F3F4;
      --khc-teal: #2E7D6B;
      --khc-teal-deep: #1E5449;
      --khc-pulse: #D64545;
      --khc-gold: #C9A227;
      --khc-line: #D8DEE0;
 
      background: var(--khc-paper);
      color: var(--khc-ink);
      padding: 88px 24px;
      /*font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;*/
    }
 
    .khc-conditions * { box-sizing: border-box; }
 
    .khc-conditions__inner {
      max-width: 1080px;
      margin: 0 auto;
    }
 
    .khc-conditions__eyebrow {
      /*font-family: 'IBM Plex Mono', monospace;*/
      font-size: 12.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--khc-teal-deep);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
 
    .khc-conditions__eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: var(--khc-teal-deep);
      display: inline-block;
    }
.khc-conditions__title {
    font-family: 'Jost' !important;
    font-weight: 900 !important;
    font-size: 2rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em ;
    /* max-width: 14ch; */
    margin: 0 0 16px;
}
 
    .khc-conditions__intro {
      font-size: 16.5px;
      line-height: 1.65;
      color: #3B4E5B;
      max-width: 58ch;
      margin: 0 0 56px;
    }
 
    /* ---- Condition row (the "strip") ---- */
    .khc-condition {
      display: grid;
      grid-template-columns: 44px 220px 1fr;
      gap: 32px;
      align-items: start;
      padding: 36px 0;
      border-top: 1px solid var(--khc-line);
      position: relative;
    }
 
    .khc-condition:last-child {
      border-bottom: 1px solid var(--khc-line);
    }
 
    .khc-condition__index {
      /*font-family: 'IBM Plex Mono', monospace;*/
      font-size: 12px;
      color: #8FA3AC;
      padding-top: 4px;
    }
 
    .khc-condition__name-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
 
    .khc-condition__name {
      /*font-family: 'Fraunces', Georgia, serif;*/
      font-weight: 520;
      font-size: 21px;
      line-height: 1.25;
      margin: 0;
    }
 
    /* EKG trace — unique waveform per condition, drawn with stroke-dasharray reveal on scroll */
    .khc-condition__trace {
      width: 100%;
      height: 40px;
      display: block;
    }
 
    .khc-condition__trace path {
      fill: none;
      stroke: var(--khc-pulse);
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 340;
      stroke-dashoffset: 340;
      animation: khc-draw 2.2s ease-out forwards;
      animation-play-state: paused;
    }
 
    .khc-condition.khc-in-view .khc-condition__trace path {
      animation-play-state: running;
    }
 
    @keyframes khc-draw {
      to { stroke-dashoffset: 0; }
    }
.khc-condition__body p {
    font-size: 16px;
    /* line-height: 1.7; */
    color: #3B4E5B;
    margin-bottom: 10px;
}
 
    .khc-condition__body a {
      color: var(--khc-teal-deep);
      text-decoration: underline;
      text-decoration-color: rgba(30,84,73,0.35);
      text-underline-offset: 3px;
    }
 
    .khc-condition__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 4px;
    }
 
    .khc-tag {
      /*font-family: 'IBM Plex Mono', monospace;*/
      font-size: 11.5px;
      letter-spacing: 0.02em;
      color: var(--khc-teal-deep);
      background: rgba(46,125,107,0.08);
      border: 1px solid rgba(46,125,107,0.22);
      border-radius: 100px;
      padding: 5px 12px;
      white-space: nowrap;
    }
 
    .khc-condition__placeholder {
      border: 1px dashed #C9A227;
      background: rgba(201,162,39,0.07);
      border-radius: 6px;
      padding: 14px 16px;
      font-size: 13.5px;
      color: #8A6D14;
      /*font-family: 'IBM Plex Mono', monospace;*/
      line-height: 1.6;
    }
 
    @media (max-width: 760px) {
      .khc-condition {
        grid-template-columns: 28px 1fr;
        gap: 16px;
      }
      .khc-condition__name-col { grid-column: 2; }
      .khc-condition__body { grid-column: 1 / -1; margin-top: 8px; }
      .khc-condition__trace { height: 32px; }
    }
    
    
    
  