  * { box-sizing: border-box; }

  .course-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 16px 80px;
  }

  .course-section {
    margin-bottom: 80px;
    padding: 0;                 /* 내부 여백 제거 → 문서형 */
    border: none;              /* 테두리 제거 */
    border-radius: 0;          /* 둥근 모서리 제거 */
    box-shadow: none;          /* 그림자 제거 */
    background: none;          /* 배경 제거 */
  }

  .course-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111844;
  }

  .course-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 26px;
  }

  .course-section h3 {
    font-size: 19px;
    margin: 34px 0 16px;
    color: #111844;
  }

  .course-section p {
    margin: 10px 0 14px;
    font-size: 15px;
    line-height: 1.8;
  }

  .course-section ul {
    margin: 10px 0 22px 22px;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
  }

  /* 배지 유지 */
  .badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 12px;
    background: #e1e7ff;
    color: #3040c0;
    margin-right: 4px;
  }

  /* 테이블만 최소한의 레이아웃 유지 */
  .course-table-wrap {
    margin-top: 16px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #dde1f0;
    background: #fff;
  }

  .course-table-scroll {
    width: 100%;
    overflow-x: auto;
  }

  .course-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
  }

  .course-table th,
  .course-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eef0f7;
    font-size: 14px;
    vertical-align: top;
  }

  .course-table th {
    background: #f7f7f7;
    font-weight: 600;
    color: #222;
    text-align: center;
    white-space: nowrap;
  }

  .course-table td strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .course-table ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
  }

  /* 이미지 영역 */
  .image-placeholder {
    width: 100%;
    height: 150px;
    border-radius: 6px;
    border: 2px dashed #c5c9dd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #8085a0;
    margin: 14px 0 10px;
    background: none;
  }

  /* 안내 박스는 깔끔하게 테두리만 */
  .info-box {
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid #e0e4f0;
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
    background: none;
  }

  @media (max-width: 767.98px) {
    .course-wrap {
      padding-top: 30px;
    }
    .course-title {
      font-size: 22px;
    }
    .course-section h3 {
      font-size: 18px;
    }
    .course-section p,
    .course-section ul {
      font-size: 14px;
    }
  }

  /* ================= 인터뷰 영어 과정 전용 레이아웃 ================= */

/* 상단 이미지 + 텍스트 2단 레이아웃 */
.course-hero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.course-hero-text {
  flex: 1 1 0;
  min-width: 260px;
}

.course-hero-image {
  flex: 0 0 360px;
  max-width: 100%;
  text-align: right;
}

.course-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 교재 소개 리스트 */
.book-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.book-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.book-cover img {
  width: 140px;
  height: auto;
  display: block;
  border-radius: 4px;
}

.book-desc p {
  margin: 6px 0 10px;
}

/* 모바일 대응 */
@media (max-width: 767.98px) {
  .course-hero {
    flex-direction: column-reverse;
  }
  .course-hero-image {
    text-align: center;
  }
  .book-item {
    flex-direction: row;
  }
  .book-cover img {
    width: 110px;
  }
}