/* testlist page: main content only; header/footer in header.css, footer.css */

/* 900px 이하: 카드 2개씩 보이도록 */
@media (max-width: 900px) {
  main .NewTestList .NewTestListShell {
    flex-wrap: wrap;
    gap: 12px;
  }

  main .NewTestList .NewTestListShell .NewTestShell {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    padding: 12px;
    margin-bottom: 12px;
  }

  main .NewTestList .NewTestListShell .NewTestShell .NewTest img {
    height: auto;
  }
}
