/* Extracted from page-founders-biography.php; preserve source block order. */

#founders-biography-page .ugp-founder-bio-layout {
        display: flex;
        gap: 2.5rem;
        align-items: flex-start;
      }
      /* Image sizing — width driven by style.css rule (max-width: 780px) */
      #founders-biography-page .ugp-founder-bio-image {
        flex: 0 0 340px;
        max-width: 340px;
        position: sticky;
        top: 6rem;
      }
      #founders-biography-page .ugp-founder-bio-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        display: block;
        box-shadow: 0 4px 18px rgba(0,0,0,0.15);
      }
      .ugp-founder-bio-content .ugp-card-title {
        margin-top: 2rem;
        margin-bottom: 1rem;
      }
      .ugp-founder-bio-content .ugp-card-title:first-of-type {
        margin-top: 0;
      }
      @media (max-width: 768px) {
        #founders-biography-page .ugp-founder-bio-layout {
          flex-direction: column;
        }
        #founders-biography-page .ugp-founder-bio-image {
          flex: none;
          max-width: 100%;
          width: 100%;
          position: static;
        }
      }
