/* Page */
.about-page {
    position: relative;
    flex: 1 1 auto;
    background: #ffffff;
  }
  
  .about-root {
    width: 100%;
    background: #ffffff;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  }
  
  /* Hero */
  .about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #f3f4f6;
    background: #fbfdfc;
    padding: 5rem 1rem 3rem;
  }
  
  .about-hero-arc {
    position: absolute;
    bottom: 0;
    left: -70px;
    z-index: 0;
    display: block;
    opacity: 0.7;
    pointer-events: none;
    transform: scale(0.8);
    transform-origin: bottom left;
  }

  .about-hero-dot {
    position: absolute;
    top: 2rem;
    right: 12%;
    z-index: 0;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: #e3eff6;
    opacity: 0.8;
  }
  
  .about-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
  }
  
  .about-hero-title {
    margin: 0;
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  /* Intro */
  .about-intro {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
  .about-intro-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .about-intro-content,
  .about-intro-media {
    position: relative;
    width: 100%;
    flex: 1 1 0;
  }
  
  .about-intro-content {
    z-index: 1;
  }
  
  .about-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
    color: #3A66B7;
    font-size: 0.9375rem;
    font-weight: 700;
  }
  
  .about-section-title {
    margin: 0 0 1rem;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
  }
  
  .about-lead,
  .about-info-text {
    margin: 0;
    color: #4B5563;
    font-size: 0.875rem;
    line-height: 24px;
  }
  
  .about-lead {
    max-width: 95%;
    margin-bottom: 2rem;
  }
  
  .about-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-info-title {
    margin: 0 0 0.5rem;
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 700;
  }
  
  .about-intro-shape {
    display: none;
  }
  
  .about-intro-image-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  }
  
  .about-intro-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  
  /* Team */
  .team-section {
    position: relative;
    width: 100%;
    background: #f8f9fa;
    padding: 3rem 1rem;
  }
  
  .team-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .team-header {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .team-title {
    margin: 0;
    color: #18181b;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .team-description {
    max-width: 48rem;
    margin: 0.5rem auto 0;
    padding: 0 1rem;
    color: #52525b;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .team-photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e4e4e7;
    cursor: pointer;
  }
  
  .team-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(to bottom right, #f4f4f5, #e4e4e7);
  }
  
  .team-photo-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px #d4d4d8;
    color: #3f3f46;
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .team-photo-note {
    color: #71717a;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
  
  .team-member-info {
    margin-top: 1rem;
    text-align: center;
  }
  
  .team-member-name {
    margin: 0;
    color: #1a202c;
    font-size: 1.125rem;
    font-weight: 700;
  }
  
  .team-member-role {
    margin: 0.25rem 0 0;
    color: #3A66B7;
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  @media (min-width: 640px) {
    .about-hero {
      padding-top: 6rem;
      padding-bottom: 4rem;
    }
  
    .about-hero-arc {
      left: -50px;
      transform: none;
    }
  
    .about-hero-dot {
      width: 2rem;
      height: 2rem;
      top: 3rem;
      right: 15%;
    }
  
    .about-hero-title {
      font-size: 2.25rem;
    }
  
    .about-intro {
      padding: 4rem 1.5rem;
    }
  
    .about-section-title {
      margin-bottom: 1.25rem;
      font-size: 1.75rem;
    }
  
    .about-lead,
    .about-info-text {
      font-size: 0.9375rem;
      line-height: 26px;
    }
  
    .about-lead {
      margin-bottom: 3rem;
    }
  
    .about-info-list {
      gap: 2.5rem;
    }
  
    .about-info-title {
      margin-bottom: 0.75rem;
      font-size: 1.25rem;
    }
  
    .about-intro-image-wrap {
      height: 500px;
    }
  
    .team-section {
      padding: 4rem 1.5rem;
    }
  
    .team-header {
      margin-bottom: 3rem;
    }
  
    .team-title {
      font-size: 1.875rem;
    }
  
    .team-description {
      margin-top: 0.75rem;
      font-size: 1rem;
    }
  
    .team-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2.5rem;
    }
  
    .team-member-info {
      margin-top: 1.25rem;
    }
  
    .team-member-name {
      font-size: 1.25rem;
    }
  
    .team-member-role {
      font-size: 0.9375rem;
    }
  }
  
  @media (min-width: 1024px) {
    .about-intro {
      padding: 7rem 3rem;
    }
  
    .about-intro-layout {
      flex-direction: row;
      gap: 6rem;
    }
  
    .about-section-title {
      font-size: 2.375rem;
    }
  
    .about-info-title {
      font-size: 1.375rem;
    }
  
    .about-intro-shape {
      position: absolute;
      top: 50%;
      right: -80px;
      z-index: 0;
      display: block;
      width: 250px;
      height: 500px;
      border-radius: 100px;
      background: #FDF7E6;
      opacity: 0.8;
      pointer-events: none;
      transform: translateY(-50%);
    }
  
    .about-intro-image-wrap {
      height: 750px;
    }
  
    .team-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 3rem;
    }
  }
  
  @media (min-width: 1280px) {
    .about-hero-title {
      font-size: 3rem;
    }
  }