.team-profile {
    background: #ffffff;
    padding: 96px var(--container-padding);
  }
  
  .team-profile__inner {
    width: min(100%, var(--container-max));
    margin: 0 auto;
  }
  
  .team-profile__header {
    text-align: center;
    margin-bottom: 64px;
  }
  
  .team-profile__kicker {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .team-profile__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--color-text-primary);
    margin: 0 0 16px;
    letter-spacing: 0.5px;
  }
  
  .team-profile__description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 auto;
    max-width: 600px;
  }

  .team-profile__hiring {
    text-align: center;
    padding: 48px 32px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .team-profile__hiring-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.2;
    color: var(--color-text-primary);
    margin: 0 0 16px;
  }
  
  .team-profile__hiring-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 32px;
  }
  
  .team-profile__hiring-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    text-decoration: none;
  }

  .team-profile__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
  }
  
  .team-profile__member {
    text-align: center;
  }
  
  .team-profile__photo {
    width: 280px;
    height: 280px;
    margin: 0 auto 24px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .team-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .team-profile__placeholder {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .team-profile__placeholder svg {
    width: 48px;
    height: 48px;
  }
  
  .team-profile__name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 8px;
  }
  
  .team-profile__role {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
  }
  
  .team-profile__member-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 20px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .team-profile__social {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .team-profile__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }