.elementor-23479 .elementor-element.elementor-element-c4c8e97 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-23479 .elementor-element.elementor-element-d79217f > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-23479 .elementor-element.elementor-element-4546c7e > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-23479 .elementor-element.elementor-element-9c3b9f5 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-23479 .elementor-element.elementor-element-6c18229 > .elementor-element-populated{padding:0px 0px 0px 0px;}/* Start custom CSS for section, class: .elementor-element-6ced36f */@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700;800;900&display=swap');

:root {
  --black: #082c28;
  --dark: #103832;
  --kbs-gold: #c7a463;
  --line: #d7d7d7;
  --muted: #777;
  --paper: #f8f8f8;
  --box: #e7e7e7;
}

/* 최상위 랩핑 속성 */
.ai-starter-wrap {
  color: #111;
  background: #fff;
  font-family: Arial, "Noto Sans KR", sans-serif;
  word-break: keep-all;
}

.ai-starter-wrap *, .ai-starter-wrap ::before, .ai-starter-wrap ::after {
  box-sizing: border-box;
}

/* 유틸리티 클래스 */
.pt-0 { padding-top: 0 !important; }
.mt-m { margin-top: clamp(46px, 6vw, 76px); }
.mb-8 { margin-bottom: 8px; }
.mb-20 { margin-bottom: 20px; }
.color-muted { color: var(--muted); }

/* 여백 (clamp 함수로 모바일 64px -> PC 96px 서서히 스케일 확대) */
.section {
  padding: clamp(64px, 8vw, 96px) clamp(22px, 4vw, 60px);
}

.inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

/* 1. 히어로 섹션 */
.hero-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(560px, 60vh, 720px);
  padding: 0 clamp(22px, 4vw, 60px);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
}

.hero-content .eyebrow {
  color: #8f8f8f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.hero-content h1 {
  margin: clamp(20px, 3vw, 32px) 0 clamp(16px, 2vw, 22px);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 700;
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto;
  color: #e4e4e4;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.55;
}

/* 공통 분할 타이틀 레이아웃 (flex-wrap으로 미디어쿼리 대체) */
.split-title {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 80px);
  align-items: flex-start;
}

.label-col {
  flex: 1 1 260px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.label-col strong {
  display: block;
  margin-top: 14px;
  color: #111;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.18;
}

.content-col {
  flex: 3 1 400px;
}

.big-copy {
  max-width: 780px;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.28;
}

.subcopy {
  max-width: 760px;
  margin-top: 32px;
  color: #333;
  font-size: clamp(18px, 2.5vw, 21px);
  font-weight: 700;
  line-height: 1.55;
}

.center-title {
  margin: 0 0 52px;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.32;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 44px;
  color: #555;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 100;
}

.section-heading::before,
.section-heading::after {
  content: "";
  height: 1px;
  background: var(--line);
}

/* 그리드 레이아웃 (auto-fit으로 화면 줄어들면 자동 줄바꿈. 미디어쿼리 대체) */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 30vw, 350px), 1fr));
  gap: 28px;
}

.grid-small-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 20vw, 250px), 1fr));
  gap: 18px;
}

/* 박스/카드 디자인 */
.card {
  border-bottom: 1px solid var(--line);
}

.image-box {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 24px;
  color: #777;
  background: var(--box);
  font-weight: 700;
  text-align: center;
}

.card-body {
  padding: 28px 0 30px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.card-body small {
  display: block;
  margin-top: 22px;
  color: #888;
  font-size: 15px;
  font-weight: 400;
}

.wide-visual {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 40vh, 520px);
  margin-top: 72px;
  color: #777;
  background: #e8edf1;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.divider {
  height: 1px;
  margin: 76px 0 0;
  background: var(--line);
}

.process-item h3 {
  margin: 18px 0 0;
  color: #555;
  font-size: 23px;
  text-align: center;
  font-weight: 700;
}

/* 다크 섹션 (아웃풋 쇼케이스) */
.dark-section {
  color: #fff;
  background: var(--black);
}

.dark-section .label-col strong,
.dark-section .big-copy,
.dark-section .center-title {
  color: #fff;
}

.dark-section .label-col {
  color: #d2d2d2;
}

.dark-heading {
  color: #a5b4b1;
}
.dark-heading::before,
.dark-heading::after {
  background: #32514d;
}

.dark-image-box {
  min-height: 300px;
  background: #123b36;
  color: #aaa;
  display: grid;
  place-items: center;
  font-weight: 700;
  border-radius: 4px;
}

/* 워크플로우 맵 */
.workflow-col h3 {
  min-height: 130px;
  margin: 0 0 12px;
  padding: 22px;
  background: #ddd;
  border-radius: 6px;
  font-size: 25px;
  font-weight: 700;
  color: #111;
}

.workflow-col.highlight h3 {
  color: #fff;
  background: var(--black);
}

.workflow-col p {
  min-height: 60px;
  margin: 8px 0;
  padding: 18px 20px;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

/* 커리큘럼 리스트 (flex-wrap으로 이미지/텍스트 부드럽게 감싸기) */
.curriculum-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.curriculum-img {
  flex: 1 1 300px;
}

.curriculum-content {
  flex: 2 1 400px;
}

.curriculum-content h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.24;
  font-weight: 700;
  color: #111;
}

.curriculum-content ul {
  padding-left: 20px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.5vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  color: #111;
}

.curriculum-content li { margin-bottom: 12px; }
.curriculum-content li::marker { color: var(--kbs-gold); }

/* FAQ / 정보 박스 */
.info-box {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.info-box h3 {
  margin: 0 0 18px;
  font-size: 24px;
  color: #111;
  font-weight: 700;
}

.info-box p {
  margin: 0;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
}

/* 중간 명언(Quote) 영역 */
.quote-section {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 40px);
  color: #fff;
  text-align: center;
  background: var(--black);
}

.quote-section mark {
  color: inherit;
  background: transparent;
  font-weight: 900;
}

.quote-section p {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(31px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.34;
}

.quote-section span {
  display: block;
  margin-top: 44px;
  color: #cfcfcf;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}

/* 하단 CTA Section */
.cta-section {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 40px);
  color: #fff;
  text-align: center;
  background: var(--dark);
}

.cta-section h2 {
  max-width: 860px;
  margin: 0 auto 36px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.22;
  font-weight: 700;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: grid;
  place-items: center;
  min-width: 260px;
  height: 58px;
  color: #fff;
  background: var(--black);
  border: 1px solid var(--kbs-gold);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background: var(--kbs-gold);
  color: var(--black);
}

/* 스티키 하단바 버튼 설정 */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 2vw, 28px);
  z-index: 20;
  display: flex;
  gap: 20px;
  width: min(920px, calc(100% - 32px));
  transform: translateX(-50%);
}

.sticky-cta .btn {
  flex: 1;
  min-width: 0;
  border: none;
  color: var(--kbs-gold);
  background: var(--black);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.sticky-cta .btn:hover {
  background: #123b36;
  color: var(--kbs-gold);
}

/* 그리드 영역: @media 없이 반응형으로 알아서 1단 -> 2단 -> 4단으로 정렬됩니다 */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 72px;
  font-family: inherit; /* 사이트의 기본 폰트를 따름 */
  box-sizing: border-box;
}

/* 개별 카드 디자인: 라운드와 그라데이션, 미세한 그림자 */
.benefit-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #e4e4e4;
  border-radius: 16px; /* 둥근 모서리 */
  background: linear-gradient(to bottom right, #ffffff, #f0f4f5); /* 은은한 그라데이션 배경 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* 깊이감을 주는 그림자 */
  box-sizing: border-box;
}

/* 카드 제목 부분 */
.benefit-card h3 {
  margin: 0 0 18px 0;
  /* clamp를 활용해 미디어쿼리 없이도 화면이 작으면 22px, 크면 24px로 자동 조절됩니다 */
  font-size: clamp(22px, 3vw, 24px); 
  font-weight: bold;
  color: #111111;
  line-height: 1.2;
}

/* 카드 텍스트 부분 */
.benefit-card p {
  margin: 0;
  color: #444444;
  /* 화면이 작으면 17px, 크면 18px로 자동 조절됩니다 */
  font-size: clamp(17px, 2.5vw, 18px); 
  line-height: 1.6;
}




.special-benefits-section {
  padding: 4rem 1.25rem;
  background-color: #082c28;
  color: #ffffff;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .special-benefits-section {
    padding: 6rem 3.75rem;
  }
}

.special-benefits-section * {
  box-sizing: border-box;
}

.special-benefits-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.special-benefits-eyebrow {
  color: #3cccbb;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}

.special-benefits-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 0;
  color: #ffffff;
  word-break: keep-all;
}

@media (min-width: 1024px) {
  .special-benefits-title {
    font-size: 46px;
  }
}

.special-benefits-subtitle {
  color: #a5b4b1;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 0;
  word-break: keep-all;
}

.special-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .special-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .special-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.special-benefits-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: #0a1e1b;
  border: 1px solid transparent;
}

.special-benefits-card.border-mint { border-color: #183a34; }
.special-benefits-card.border-gold { border-color: #3a3528; }

.special-benefits-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid transparent;
}

.special-benefits-icon.icon-mint {
  border-color: #3cccbb;
  color: #3cccbb;
}

.special-benefits-icon.icon-gold {
  border-color: #c7a463;
  color: #c7a463;
}

.special-benefits-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.special-benefits-card h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 0;
  color: #ffffff;
}

.special-benefits-card p {
  color: #a5b4b1;
  font-size: 15px;
  line-height: 1.625;
  word-break: keep-all;
  margin: 0;
}

.special-benefits-card p span {
  color: #dcdcdc;
  font-weight: 700;
}

.special-benefits-footer {
  margin-top: 4rem;
  padding: 1.75rem 0;
  border-radius: 1rem;
  background-color: #0a1a17;
  border: 1px solid #1e342e;
  text-align: center;
}

.special-benefits-footer p {
  color: #e2e2e2;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  word-break: keep-all;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-5e5ec57 *//* 밝게 보이는 KBS 섹션 배경 어둡게 고정 */
.kbs-ai-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(44, 122, 104, 0.18), transparent 35%),
    linear-gradient(180deg, #081311 0%, #0a1715 100%);
}

/* FAQ 섹션에 inline background가 있어서 강제로 어둡게 덮어쓰기 */
.kbs-ai-section[style*="background"] {
  background:
    linear-gradient(180deg, rgba(8, 44, 40, 0.95), rgba(7, 26, 24, 0.98)) !important;
}

/* TARGET 섹션 카드 3개 + 4:3 비율 적용 */
.kbs-ai-target-list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(16px, 3vw, 34px);
}

/* 4번째 카드부터 숨김 */
.kbs-ai-target-item:nth-child(n + 4) {
  display: none;
}

/* TARGET 카드 체크 아이콘 중앙 정렬 + 글씨 크기 확대 */
.kbs-ai-target-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 64px 28px 34px;
  text-align: center;

  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.55;
}

/* 체크 아이콘을 박스 상단 중앙으로 이동 */
.kbs-ai-target-item::before {
  top: 26px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  width: 34px;
  height: 34px;
  font-size: 18px;
}

/* TARGET 카드 체크 아이콘 겹침 수정 */
.kbs-ai-target-item {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: clamp(130px, 12vw, 165px);
  padding: 50px 28px 28px !important;

  text-align: center;
  font-size: clamp(22px, 2.1vw, 26px);
  font-weight: 800;
  line-height: 1.45;
}

/* 체크 아이콘을 카드 상단 중앙에 고정 */
.kbs-ai-target-item::before {
  position: absolute !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  top: 22px !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;

  width: 32px !important;
  height: 32px !important;
  border-radius: 999px;

  font-size: 18px !important;
  line-height: 1 !important;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-84304ba *//* =========================
   KBS 대상자 / 강사 / FAQ 섹션 전용 CSS
========================= */

.kbs-ai-section {
  --bg: #081311;
  --bg-card: rgba(16, 34, 30, 0.82);
  --line: rgba(111, 199, 167, 0.16);
  --text: #edf7f3;
  --muted: #9fb6ae;
  --green-2: #6fc7a7;
  --gold: #c7a463;
  --primary: #2FE6C6;

  padding: clamp(52px, 8vw, 84px) 0;
  color: var(--text);
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
}

.kbs-ai-section,
.kbs-ai-section * {
  box-sizing: border-box;
  min-width: 0;
}

.kbs-ai-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.kbs-ai-section h2,
.kbs-ai-section h3,
.kbs-ai-section h4 {
  color: #ffffff;
}

.kbs-ai-section-head {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}

.kbs-ai-section-head h2 {
  margin: 16px 0 14px;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.kbs-ai-section-head p {
  margin: 0;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.9;
  color: var(--muted);
}

.kbs-ai-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-2);
  font-weight: 700;
}

/* 대상자 리스트 */
.kbs-ai-target-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
}

.kbs-ai-target-item {
  position: relative;
  padding: 18px 18px 18px 50px;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: var(--text);
}

.kbs-ai-target-item::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 18px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 199, 167, 0.12);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 800;
}

/* 강사 섹션 */
.kbs-ai-container .instructor-divider {
  width: 100%;
  max-width: 880px;
  height: 1px;
  margin: 0 auto 48px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.14),
    transparent
  );
}

.instructor-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.instructor-img {
  flex: 0 0 200px;
  width: 100%;
  max-width: 200px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.instructor-img img {
  display: block;
  width: 100%;
  height: auto;
}

.instructor-wrap > div:last-child {
  flex: 1 1 420px;
  min-width: 0;
}

.instructor-img div > div:first-child {
  font-size: clamp(12px, 2.5vw, 14px);
}

.instructor-img div > div:last-child {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.2;
}

.instructor-wrap p {
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 1.7;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 32px;
}

.history-grid h4 {
  font-size: clamp(14px, 2.8vw, 16px);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.history-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history-grid li {
  position: relative;
  padding-left: 10px;
  font-size: clamp(11px, 2vw, 13px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.history-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  background: #2FE6C6;
  border-radius: 50%;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 1.5;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
  outline: none;
}

.faq-q span {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-q b {
  font-size: 0.95em;
}

.faq-q:hover,
.faq-q:focus,
.faq-q:active {
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
}

.faq-q .plus {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-q .plus svg {
  width: 18px;
  height: 18px;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 2.5vw, 14px);
  line-height: 1.8;
  word-break: keep-all;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-a {
  max-height: 999px;
  padding: 0 18px 18px;
}

.faq-item.open .faq-q .plus {
  transform: rotate(180deg);
}

.faq-item:hover .faq-q .plus {
  background: rgba(199, 164, 99, 0.15);
  border-color: rgba(199, 164, 99, 0.4);
  color: #f5ddb0;
  transform: scale(1.08);
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-8906c98 *//* =========================
   하단 CTA / 수강 정보 영역 - 밝은 배경 버전
========================= */

.kbs-ai-cta-info-section {
  background: #fff;
  color: #111111;
}

.kbs-ai-cta-info-box {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}

.kbs-ai-cta-info-box .kbs-ai-section-label {
  color: #2c7a68;
}

.kbs-ai-cta-info-box h2 {
  margin: 0 0 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #050505;
  text-align: left;
}

.kbs-ai-course-info-list {
  display: grid;
  gap: 34px;
  padding: 0 0 36px;
  border-top: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.kbs-ai-course-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 28px;
  align-items: start;
  text-align: left;
}

.kbs-ai-course-icon {
  width: 36px;
  height: 36px;
  margin-top: 2px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #050505;
}

.kbs-ai-course-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kbs-ai-course-info-item span {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  color: #111111;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.kbs-ai-course-info-item strong {
  display: block;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.35;
  color: #050505;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.kbs-ai-price-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 8px;
  margin-top: clamp(36px, 5vw, 54px);
  color: #050505;
}

.kbs-ai-price-row span {
  font-size: clamp(18px, 2vw, 24px);
  color: #050505;
  font-weight: 500;
}

.kbs-ai-price-row strong {
  font-size: clamp(64px, 9vw, 88px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: #000000;
}

.kbs-ai-price-row em {
  font-style: normal;
  font-size: clamp(18px, 2vw, 24px);
  color: #050505;
  font-weight: 500;
}

.kbs-ai-cta-info-box .kbs-ai-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 34px;
}

/* 밝은 배경 CTA 버튼 */
.kbs-ai-cta-info-box .kbs-ai-btn-primary {
  color: #05110f;
  background: linear-gradient(135deg, #6fc7a7 0%, #c7a463 100%);
}

.kbs-ai-cta-info-box .kbs-ai-btn-secondary {
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: transparent;
}



/* 섹션 안 CTA 버튼 정렬 및 크기 조정 */
.sticky-cta.sticky-cta-inline {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  transform: none !important;
  z-index: auto !important;

  width: 100%;
  margin-top: 34px;
  padding: 0;
  background: transparent;
  box-shadow: none;

  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta.sticky-cta-inline .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 1 180px;
  width: auto;
  max-width: 220px;
  min-width: 160px;
  min-height: 52px;

  padding: 14px 22px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

/* 모바일에서는 버튼을 한 줄씩 */
@media (max-width: 640px) {
  .sticky-cta.sticky-cta-inline {
    justify-content: center;
  }

  .sticky-cta.sticky-cta-inline .btn {
    flex: 1 1 100%;
    width: 100%;
    max-width: 360px;
  }
}/* End custom CSS */