@layer components {
  .team-hero-layout {
    align-items: center;
  }
  .team-hero-media-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }
  @media (max-width: 900px) {
    .team-hero-media-inner {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  .team-hero-picture {
    width: 100%;
    height: 100%;
  }
  .team-hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-hero-overlay-card {
    position: absolute;
    inset: auto 1.5rem 1.5rem auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }
  @media (max-width: 900px) {
    .team-hero-overlay-card {
      inset: auto 1rem 1rem 1rem;
    }
  }
  .team-hero-sidecard {
    gap: 1.5rem;
  }
  .team-hero-tagline-wrap {
    display: flex;
    justify-content: flex-end;
  }
  .team-section {
    background: radial-gradient(circle at top left, rgba(197, 157, 95, 0.08), transparent 55%), var(--color-bg-primary);
  }
  .team-section-alt {
    background: var(--color-bg-secondary);
  }
  .team-section-header {
    max-width: 48rem;
    margin: 0 auto var(--space-8);
  }
  .team-section-center {
    text-align: center;
  }
  .team-section-center p {
    margin-left: auto;
    margin-right: auto;
    max-width: 40rem;
  }
  .team-grid-leaders {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }
  @media (min-width: 900px) {
    .team-grid-leaders {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .team-card {
    height: 100%;
  }
  .team-split {
    align-items: center;
    gap: var(--space-10);
  }
  .team-split-reverse {
    direction: rtl;
  }
  .team-split-reverse > * {
    direction: ltr;
  }
  .team-split-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  .team-split-media {
    display: flex;
    justify-content: center;
  }
  .team-figure {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(224, 212, 197, 0.8);
  }
  .team-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .team-link-btn {
    align-self: flex-start;
    margin-top: var(--space-2);
  }
  .team-grid-animators,
  .team-grid-technical {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
  }
  @media (min-width: 900px) {
    .team-grid-animators,
    .team-grid-technical {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .team-card-sm {
    height: 100%;
  }
  .team-values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }
  @media (min-width: 900px) {
    .team-values-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .team-value-item h3 {
    margin-bottom: var(--space-2);
  }
  .team-trust-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: var(--space-3) 0 var(--space-4);
  }
  .team-trust-list li span::before {
    content: "\2022 ";
    color: var(--color-primary);
    margin-right: 0.25rem;
  }
  .team-split-card .card {
    height: 100%;
  }
  .team-join-grid {
    align-items: center;
    gap: var(--space-8);
  }
  .team-join-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: var(--space-2);
  }
  .team-join-note {
    max-width: 32rem;
    margin-top: var(--space-3);
  }
  @media (max-width: 767px) {
    .team-section-header {
      margin-bottom: var(--space-6);
    }
    .team-split,
    .team-join-grid {
      gap: var(--space-6);
    }
  }
}
ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
