/* ========================================
   content05.css - 7. 면접 특강 섹션
   ======================================== */

.content05 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.content05__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content05__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 16px;
}

.content05__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

/* 타이틀 */
.content05__title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  letter-spacing: -0.48px;
}

.content05__title {
  font-family: var(--font-paperlogy);
  font-size: 28px;
  color: #000;
  letter-spacing: -1.38px;
  line-height: 32px;
  width: 100%;
}

.content05__title--light {
  font-weight: 300;
}

.content05__title--bold {
  font-weight: 700;
}

.content05__title--green {
  color: #1b995e;
}

.content05__desc {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 13px;
  color: #333;
  line-height: 20px;
}

/* 교수님 + 상세 영역 */
.content05__main {
  width: 100%;
}

.content05__professor-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.content05__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.content05__strategy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;

}

.content05__strategy-title {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 18px;
  color: #1b995e;
}

.content05__strategy-text {
  font-family: var(--font-paperlogy);
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  color: #000;
}

.content05__professor-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content05__professor-name {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 13px;
  color: #000;
  line-height: 24px;
}

.content05__professor-career {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 11px;
  color: #333;
  letter-spacing: -0.42px;
  line-height: 16px;
}

/* 교수님 이미지 */
.content05__professor-img {
  width: 160px;
  height: auto;
  align-self: end;
  object-fit: cover;
  flex-shrink: 0;
}

/* CTA 버튼 */
.content05__cta {
  background: var(--color-primary-light);
  display: block !important;
  width: 100%;
  height: 60px;
  line-height: 60px !important;
  margin-top: 24px;
  text-align: center !important;
}

.content05__cta-text {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 16px;
  color: #000;
  letter-spacing: -0.66px;
  line-height: 60px !important;
  text-decoration: underline;
  text-align: center !important;
  display: inline !important;
  width: auto !important;
  vertical-align: middle !important;
}

.content05__cta-icon {
  width: 20px !important;
  height: 20px !important;
  display: inline !important;
  vertical-align: middle !important;
  margin-left: 10px !important;
  margin-right: 0 !important;
}

/* --- 태블릿/PC (768px ~) --- */
@media (min-width: 768px) {
  .content05__inner {
    padding: 160px 20px;
  }

  .content05__content {
    gap: 30px;
  }

  .content05__title-area {
    gap: 17px;
  }

  .content05__title {
    font-size: 46px;
    line-height: normal;
  }

  .content05__desc {
    font-size: 16px;
    line-height: 24px;
  }

  .content05__info {
    gap: 30px;
    padding-left: 30px;
    width: 461px;
  }

  .content05__strategy {
    padding-top: 30px;
    line-height: 34px;
  }

  .content05__strategy-title {
    font-size: 30px;
  }

  .content05__strategy-text {
    font-size: 28px;
  }

  .content05__professor-name {
    font-size: 16px;
    line-height: 34px;
  }

  .content05__professor-career {
    font-size: 14px;
    line-height: 20px;
  }

  .content05__professor-img {
    width: 280px;
  }

  .content05__cta {
    height: 80px;
    line-height: 80px !important;
    margin-top: 0;
  }

  .content05__cta-text {
    font-size: 22px;
    line-height: 80px !important;
  }

  .content05__cta-icon {
    width: 24px !important;
    height: 24px !important;
  }
}

/* --- 큰 PC (1024px ~) --- */
@media (min-width: 1024px) {
  .content05__professor-img {
    width: 439px;
    height: 369px;
  }
}
