@layer components {
  .team-intro-grid {
    align-items: stretch;
  }
  .team-intro-card {
    height: 100%;
  }
  .team-figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-soft);
    background-color: var(--color-surface-muted);
  }
  .team-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-culinary-grid,
  .team-poker-grid,
  .team-culture-grid,
  .team-join-grid {
    align-items: center;
    gap: var(--space-8);
  }
  .team-culinary-copy,
  .team-poker-copy {
    align-self: stretch;
  }
  .team-pillars-grid {
    align-items: stretch;
  }
  .team-pillar,
  .team-culture-card,
  .team-join-card {
    height: 100%;
  }
  .team-join-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-2);
  }
  .team-join-copy {
    max-width: 520px;
  }
  @media (max-width: 768px) {
    .team-culinary-grid,
    .team-poker-grid,
    .team-culture-grid,
    .team-join-grid {
      grid-template-columns: minmax(0, 1fr);
    }
    .team-join-actions {
      justify-content: flex-start;
    }
  }
}

ul {
  list-style: none !important;
}

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