@import '../../common/modern-reset.css';
@import '../../common/theme.css';

body {
  margin-block-end: 1200px;
}

h1 {
  text-align: center;
  color: #333;
  padding: 1rem;
  background: #fff;
  position: sticky;
  top: 0;
}

.container {
  inline-size: clamp(20rem, 50%, 40rem);
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  gap: 2rem;

  .team {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: sticky;
    top: 80px;
  }

  .team-header {
    display: block;
    padding: 1rem;
    background-color: var(--pastel-pink);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    z-index: 100;
    /* position: sticky;
    top: 0; */
  }

  li {
    padding: 1rem;
    border-block-end: 1px solid var(--pastel-gray);
  }

  li:last-child {
    border-block-end: none;
  }
}
