
  /* ==========================================================
     ABOUT — “Story Blocks” (Option B)
     Chunked + skimmable left column, centered section title,
     strong single-line card headings.
     Scoped to #about so it won’t affect other sections.
     ========================================================== */

  /* --------------------------
     Section Title (forced center)
     -------------------------- */
  #about .section-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;     /* hard-center container */
    justify-content: center;
    text-align: center;      /* hard-center text */
  }

  #about .section-title h2 {
    width: 100%;
    text-align: center !important;
    font-size: clamp(2.3rem, 3.6vw + 1rem, 3.6rem);
    line-height: 1.08;
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Center any underline/divider from theme */
  #about .section-title .underline,
  #about .section-title::after,
  #about .section-title h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* --------------------------
     Body Typography (bio only)
     -------------------------- */
  #about .fs-bio p {
    font-size: clamp(0.95rem, 1.1vw + 0.6rem, 1.15rem) !important;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: var(--default-color, #3E4A4A);
  }

  /* --------------------------
     Story Blocks (cards)
     -------------------------- */
  #about .fs-bio .about-block {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: clamp(16px, 2vw, 22px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
  }

  /* Prevent extra gap at end of each block */
  #about .fs-bio .about-block p:last-child {
    margin-bottom: 0;
  }

  /* --------------------------
     Card Headings (strong + single line)
     -------------------------- */
  #about .fs-bio .about-block h3 {
    font-size: clamp(1.15rem, 1vw + 0.95rem, 1.55rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;

    /* keep to one line without cutting off */
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  /* If space gets tight, tighten tracking + size to keep one line */
  @media (max-width: 992px) {
    #about .fs-bio .about-block h3 {
      letter-spacing: 0.08em;
      font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.35rem);
    }
  }

  @media (max-width: 768px) {
    #about .fs-bio .about-block {
      border-radius: 16px;
      padding: 14px 14px;
    }

    #about .fs-bio .about-block h3 {
      letter-spacing: 0.06em;
      font-size: 1.05rem;
    }
  }

  /* --------------------------
     Inline emphasis + CTAs
     -------------------------- */
  #about .fs-bio em {
    font-style: italic;
  }

  #about .fs-bio .about-cta-buttons {
    margin-top: 18px;
  }

  /* Desktop can stay single-line if you want */
#about .fs-bio .about-block h3{
  white-space: nowrap;
}

/* Mobile: allow wrap so it stays inside the card */
@media (max-width: 768px){
  #about .fs-bio .about-block h3{
    white-space: normal;
    overflow-wrap: anywhere;  /* breaks long words if needed */
    word-break: normal;
  }
}
