/* ### COMMON ### */
.testBank-section .custom-main-title-wrap {
  text-align: center;
}
.testBank-section .custom-main-content em {
  display: block;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 18px;
}
.testBank-section .custom-main-content span {
  margin: 10px 0 0;
  word-break: keep-all;
  font-size: 16px;
}

/* --- 편리하고 쉬운 문제은행을 만나보세요 --- */
.custom-testBank-01 {
  padding: var(--page-top-padding) 0 0;
}

/* --- 다 똑같은 문제는 이제 그만 --- */
.custom-testBank-02 {
  padding: var(--page-padding) 0;
}
.custom-testBank-02 .custom-main-content-wrap {
  display: grid;
  grid-template-columns: repeat(2, calc(calc(100% - 32px) / 2));
  grid-gap: var(--gap);
}
.custom-testBank-02 .custom-main-content:nth-child(1) {
  grid-column: 1 / 3;
  background: #FFFBF3;
  overflow: hidden;
}
.custom-testBank-02 .custom-main-content:nth-child(1) img {
  margin: 40px 0 0;
}
.custom-testBank-02 .custom-main-content:nth-child(1) > div {
  width: 50%;
}
.custom-testBank-02 .custom-main-content:nth-child(1) > div:nth-child(1) {
  padding: 0 var(--box-padding);
}
.custom-testBank-02 .custom-main-content:nth-child(1) > div:nth-child(2) img {
  width: 100%;
  box-shadow: -5px -5px 10px rgba(0,0,0,0.03);
  border-radius: var(--ct-bdrad2) 0 0 0;
}
.custom-testBank-02 .custom-main-content:nth-child(2),
.custom-testBank-02 .custom-main-content:nth-child(3) {
  padding: var(--box-padding);
}
.custom-testBank-02 .custom-main-content:nth-child(2) {
  background: #F6FFF5;
}
.custom-testBank-02 .custom-main-content:nth-child(3) {
  background: #FFF5F5;
}

/* --- 시험기간, 수업에만 집중하세요 --- */
.custom-testBank-03 {
  padding: 0 0 var(--page-padding);
}

/* ################## RESPONSIVE ##################### */
@media (max-width: 767.98px) {
  .testBank-section .custom-main-title-wrap {
    text-align: left;
    word-break: keep-all;
  }
  .testBank-section .custom-main-content em {
    font-size: 13px;
  }

  .custom-testBank-02 .custom-main-content-wrap {
    display: flex;
    flex-direction: column;
  }
  .custom-testBank-02 .custom-main-content:nth-child(1) {
    display: block;
  }
  .custom-testBank-02 .custom-main-content:nth-child(1) > :is(div, img) {
    width: 100%;
  }
  .custom-testBank-02 .custom-main-content:nth-child(1) > div {
    padding: 0;
  }
}