.appContainer {
  margin-top: 0;
}

.appContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fafafa;
}

.memberListContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 76px;
  max-width: 1440px;
  padding: 80px 212px 0;
}

.memberItem {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  height: 100%;
}

.memberItem img {
  border-radius: 12px 12px 0 0;
  width: 288px;
  height: 288px;
}

.memberItem .info {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 0 0 12px 12px;
  background-color: #f2f2f2;
}

.memberItem .info .nameContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.memberItem .info .nameContainer .name {
  color: #246987;
  font-size: 24px;
  font-weight: 400;
}

.memberItem .info .nameContainer .tag {
  color: #9e9e9e;
  font-size: 14px;
  font-weight: 400;
}

.memberItem .info .summary {
  display: flex;
  flex-direction: column;
  color: #525252;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 400;
}

.pageContainer {
  display: flex;
  flex-direction: column;
  margin: 80px 0;
}

.pageContainer .pageContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 304px;
}

.pageContainer .pageContent .pageItem {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.pageContainer .pageContent .pageItem.active {
  background-color: #c4e6e8;
  border-radius: 1000px;
}

.pageContainer .totalNumber {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  font-size: 12px;
  color: #525252;
}

@media (max-width: 1439px) {
  .memberListContainer {
    grid-template-columns: repeat(2, 1fr);
    padding: 176px 196px 0;
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .memberListContainer {
    padding: 40px 88px;
    gap: 40px;
  }
  .memberItem img {
    width: 236px;
    height: 236px;
  }
  .memberItem .info .nameContainer .name {
    font-size: 22px;
  }
  .memberItem .info .nameContainer .tag {
    font-size: 12px;
  }
  .memberItem .info .summary {
    font-size: 12px;
  }
  .pageContainer {
    margin: 40px 0;
  }
}

@media (max-width: 767px) {
  .memberListContainer {
    grid-template-columns: 1fr;
    padding: 40px 53px;
  }
}