/* ========================================
   content02.css - 5. 제도변경 비교 + Q&A + 걱정마세요 + 준비카드 + Point03
   ======================================== */

.content02 {
  background: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 16px;
  overflow: hidden;
}

.content02__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1201px;
}

/* --- 섹션 타이틀 --- */
.content02__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.content02__title-sub {
  font-family: var(--font-paperlogy);
  font-weight: 200;
  font-size: 15px;
  color: #000;
  line-height: normal;
}

.content02__title-main {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}

.content02__title-main--green {
  font-family: var(--font-paperlogy);
  color: var(--color-primary);
  font-weight: 700;
}

.content02__title-main--black {
  font-family: var(--font-paperlogy);
  color: #000;
}

/* --- Points 컨테이너 --- */
.content02__points {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

/* --- POINT 뱃지 (공통) --- */
.point-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.point-badge__label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 16px;
  background-image: linear-gradient(267.1deg, #4b7efd 0.7%, #ec89fd 94.3%);
}

.point-badge__label-text {
  font-family: var(--font-paperlogy);
  font-weight: 800;
  font-size: 13px;
  color: #000;
  text-align: center;
  letter-spacing: -0.15px;
  line-height: normal;
}

.point-badge__title {
  font-family: var(--font-paperlogy);
  font-weight: 700;
  font-size: 22px;
  color: #000;
  text-align: center;
  line-height: 30px;
}

.point-badge__desc {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 13px;
  color: #333;
  text-align: center;
  letter-spacing: -0.48px;
  line-height: 24px;
  padding: 0 8px;
}

.point-badge__desc--green {
  color: #1b995e;
  font-weight: 700;
}

/* ========================================
   POINT 1 - 자격 취득기준 개정 테이블
   ======================================== */
.point01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* 테이블 */
.point01__table {
  width: 100%;
  max-width: 1200px;
}

/* 테이블 헤더 */
.point01__header {
  display: flex;
  width: 100%;
}

.point01__header-label {
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 36px;
  flex-shrink: 0;
}

.point01__header-label span,
.point01__header-before span,
.point01__header-after span {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  letter-spacing: -0.66px;
}

.point01__header-label span {
  color: #fff;
}

.point01__header-before {
  background: var(--color-dark);
  border-left: 1px solid #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.point01__header-before span {
  color: #fff;
}

.point01__header-after {
  background: var(--color-dark);
  border-left: 1px solid #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}

.point01__header-after span {
  color: #00ff88;
}

/* 테이블 행 */
.table-row {
  display: flex;
  width: 100%;
}

.table-row--grade { min-height: 50px; }
.table-row--1st { min-height: 80px; }
.table-row--2nd { min-height: 100px; }
.table-row--3rd { min-height: 100px; }
.table-row--subjects { min-height: 100px; }

.table-row__label {
  background: var(--color-gray-bg);
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  flex-shrink: 0;
  padding: 0 4px;
}

.table-row__label span {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 11px;
  color: #000;
  text-align: center;
  letter-spacing: -0.54px;
}

.table-row__before {
  background: #fff;
  border-bottom: 1px solid #d9d9d9;
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 12px 8px 8px;
}

.table-row__before--center {
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.table-row__after {
  background: var(--color-yellow-bg);
  border-bottom: 1px solid #d9d9d9;
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 12px 8px 8px;
}

.table-row__after--center {
  align-items: center;
  justify-content: center;
  padding: 8px;
}

/* 테이블 셀 내 텍스트 */
.table-cell-grade {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.9px;
}

.table-cell-grade--danger {
  color: var(--color-danger);
}

/* 상세 셀 */
.table-cell-detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  font-size: 11px;
  letter-spacing: -0.54px;
}

.table-cell-detail__row {
  display: flex;
  flex-direction: column;
}

.table-cell-detail__label {
  font-family: var(--font-pretendard);
  font-weight: 700;
  color: #1b995e;
  white-space: nowrap;
}

.table-cell-detail__value {
  font-family: var(--font-pretendard);
  font-weight: 500;
  color: #000;
  padding-left: 4px;
}

.table-cell-detail__value--sub {
  font-size: 10px;
  line-height: 15px;
}

/* 검정과목 셀 */
.table-cell-subjects {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-pretendard);
  font-weight: 500;
  color: #000;
}

.table-cell-subjects__main {
  font-size: 11px;
  line-height: 16px;
  letter-spacing: -0.54px;
}

.table-cell-subjects__sub {
  font-size: 10px;
  line-height: 15px;
  letter-spacing: -0.45px;
}

.table-cell-subjects__sub--danger {
  color: var(--color-danger);
}

.table-cell-subjects__sub--dark {
  color: #333;
}

/* ========================================
   POINT 2 - Q&A + 걱정마세요 + 준비카드
   ======================================== */
.point02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.point02__qa-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Q&A 아이템 */
.qa-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.qa-item__question {
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 9999px;
  align-self: flex-start;
}

.qa-item__question-text {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.54px;
  line-height: 22px;
}

.qa-item__question-num {
  color: #000;
}

.qa-item__question-content {
  color: #fff;
}

.qa-item__answer {
  background: var(--color-gray-bg);
  border-radius: 14px;
  padding: 20px 16px;
}

.qa-item__answer-text {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.54px;
  line-height: 24px;
}

.qa-item__answer-text--danger {
  color: var(--color-danger);
}

/* 플로우차트 */
.flowchart {
  width: 100%;
}

.flowchart__pc {
  display: none;
  width: 100%;
  height: auto;
}

.flowchart__mobile {
  display: block;
  width: 100%;
  height: auto;
}

/* Q1 답변 (복합) */
.qa-item__answer-complex {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qa-item__answer-complex p {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.54px;
  line-height: 24px;
}

/* 걱정마세요 + 준비카드 */
.donworry-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 16px auto 0;
}

.donworry__img {
  width: 100%;
  max-width: 940px;
  height: auto;
  margin: 0 auto;
}

/* 준비카드 컨테이너 */
.prepare-cards {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 준비카드 */
.prepare-card {
  flex: 1;
  border: 1px solid var(--color-primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.prepare-card--1 {
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.9) 63%, rgba(0,221,160,0.9));
  border-radius:20px  20px 0 0 ;
}

.prepare-card--2 {
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.8) 63%, rgba(0,221,160,0.8));
  border-radius: 0 0 20px 20px;
}

.prepare-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.prepare-card__header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.prepare-card__badge {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-paperlogy);
  font-weight: 500;
  font-size: 11px;
  padding: 0 10px;
  line-height: 24px;
  border-radius: 9999px;
  letter-spacing: -0.48px;
  text-align: center;
  white-space: nowrap;
}

.prepare-card__timing {
  font-family: var(--font-paperlogy);
  font-weight: 500;
  font-size: 16px;
  color: #000;
  letter-spacing: -0.84px;
  line-height: 24px;
}

.prepare-card__text-area {
  text-align: center;
}

.prepare-card__highlight {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 12px;
  color: #d52b00;
  line-height: 20px;
  letter-spacing: -0.54px;
}

.prepare-card__quote {
  font-family: var(--font-sunbatang);
  font-weight: 500;
  font-size: 12px;
  color: #000;
  line-height: 20px;
  letter-spacing: -0.54px;
}

.prepare-card__benefit-area {
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.prepare-card__benefit {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 15px;
  color: #000;
  letter-spacing: -0.72px;
  line-height: 24px;
}

.prepare-card__sub {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 13px;
  color: #000;
  letter-spacing: -0.72px;
  line-height: 22px;
}

/* ========================================
   POINT 3 - 수련시설 증가 그래프 + 활동 분야
   ======================================== */
.point03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.point03__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

/* 수련시설 카드 */
.point03__facility {
  background: var(--color-gray-bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
}

.point03__facility-title {
  font-family: var(--font-pretendard);
  font-weight: 800;
  font-size: 18px;
  color: #000;
  letter-spacing: -0.66px;
  line-height: 30px;
}

.point03__facility-sub {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 12px;
  color: #333;
  letter-spacing: -0.42px;
  line-height: 24px;
}

.point03__facility-text {
  white-space: nowrap;
}

.point03__facility-img {
  width: 100%;
  max-width:795x;
  height: auto;
}

/* 활동 분야 카드 */
.point03__fields {
  background: var(--color-gray-bg);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

.point03__fields-title {
  font-family: var(--font-pretendard);
  font-weight: 800;
  font-size: 18px;
  color: #000;
  letter-spacing: -0.66px;
  line-height: 30px;
  margin-bottom: 16px;
}

.point03__fields-rings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.point03__ring--1 { width: 200px; height: 203px; }
.point03__ring--2 { width: 196px; height: 200px; }
.point03__ring--3 { width: 200px; height: 196px; }

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

  .content02__inner {
    gap: 130px;
  }

  .content02__title-sub {
    font-size: 26px;
  }

  .content02__title-main {
    font-family: var(--font-paperlogy);
    font-size: 46px;
    line-height: normal;
  }

  .content02__points {
    gap: 120px;
  }

  .point-badge {
    gap: 17px;
  }

  .point-badge__label {
    padding: 6px 20px;
  }

  .point-badge__label-text {
    font-size: 15px;
  }

  .point-badge__title {
    font-size: 33px;
    line-height: 34px;
  }

  .point-badge__desc {
    font-size: 16px;
    line-height: 34px;
    padding: 0;
  }

  /* Point 01 */
  .point01 {
    gap: 40px;
  }

  /* Point 02 */
  .point02 {
    gap: 60px;
  }

  .point02__qa-list {
    gap: 20px;
  }

  .qa-item {
    gap: 10px;
  }

  .qa-item__question {
    height: 55px;
    padding: 10px 40px;
  }

  .qa-item__question-text {
    font-size: 18px;
    line-height: 34px;
  }

  .qa-item__answer {
    border-radius: 20px;
    padding: 36px 35px;
  }

  .qa-item__answer-text {
    font-size: 18px;
    line-height: 28px;
  }

  .qa-item__answer-complex p {
    font-size: 18px;
    line-height: 28px;
  }

  .qa-item__answer-complex {
    gap: 24px;
  }

  .flowchart__pc {
    display: block;
  }

  .flowchart__mobile {
    display: none;
  }

  /* 걱정마세요 */
  .donworry-area {
    margin-top: 32px;
  }

  /* 준비카드 */
  .prepare-cards {
    flex-direction: row;
  }

  .prepare-card {
    padding: 43px 30px;
  }

  .prepare-card__content {
    gap: 26px;
    align-items: flex-start;
  }

  .prepare-card__badge {
    font-size: 16px;
    padding: 0 22px;
    line-height: 34px;
    width: 124px;
  }

  .prepare-card__timing {
    font-size: 28px;
    line-height: 34px;
  }

  .prepare-card__text-area {
    text-align: left;
  }

  .prepare-card__highlight {
    font-size: 14px;
    line-height: 24px;
  }

  .prepare-card__quote {
    font-size: 16px;
    line-height: 26px;
  }

  .prepare-card__benefit {
    font-size: 20px;
    line-height: 30px;
  }

  .prepare-card__sub {
    font-size: 15px;
    line-height: 24px;
  }

  .prepare-card--1 {
    border-radius: 20px 0 0 20px;
  }

  .prepare-card--2 {
    border-radius: 0 20px 20px 0;
  }

  /* Point 03 */
  .point03 {
    gap: 50px;
  }

  .point03__cards {
    gap: 20px;
  }

  .point03__facility {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 70px;
    gap: 0;
  }

  .point03__facility-title {
    font-size: 22px;
    line-height: 34px;
  }

  .point03__facility-sub {
    font-size: 14px;
    line-height: 34px;
  }

  .point03__facility-img {
    width: 795px;
    height: 275px;
  }

  .point03__fields {
    padding: 50px 70px;
  }

  .point03__fields-title {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 17px;
  }

  .point03__fields-rings {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .point03__ring--1 { width: 299.5px; height: 304.5px; }
  .point03__ring--2 { width: 294px; height: 300px; }
  .point03__ring--3 { width: 300px; height: 294px; }
}

/* --- PC (1280px ~) --- */
@media (min-width: 1280px) {
  /* 테이블 PC 사이즈 */
  .point01__header-label {
    width: 160px;
    height: 60px;
  }

  .point01__header-label span,
  .point01__header-before span,
  .point01__header-after span {
    font-size: 22px;
  }

  .point01__header-before,
  .point01__header-after {
    height: 60px;
  }

  .table-row__label {
    width: 160px;
    padding: 0 24px;
  }

  .table-row__label span {
    font-size: 18px;
  }

  .table-row__before {
    padding: 27px 40px;
  }

  .table-row__after {
    padding: 27px 40px;
  }

  .table-row__before--center {
    padding: 8px 40px;
  }

  .table-row__after--center {
    padding: 8px 40px;
  }

  .table-row--grade { min-height: 106px; }
  .table-row--1st { min-height: 130px; }
  .table-row--2nd { min-height: 160px; }
  .table-row--3rd { min-height: 160px; }
  .table-row--subjects { min-height: 180px; }

  .table-cell-grade {
    font-size: 30px;
  }

  .table-cell-detail {
    font-size: 18px;
  }

  .table-cell-detail__row {
    flex-direction: row;
    gap: 20px;
  }

  .table-cell-detail__value {
    padding-left: 0;
  }

  .table-cell-detail__value--sub {
    font-size: 15px;
    line-height: 22px;
  }

  .table-cell-subjects__main {
    font-family: Pretendard Variable;
    font-size: 18px;
	font-weight:500;
    line-height: 28px;
  }

  .table-cell-subjects {
    gap: 18px;
  }

  .table-cell-subjects__sub {
    font-size: 15px;
    line-height: 22px;
  }

  /* 준비카드 PC */
  .prepare-card {
    padding: 43px 50px;
  }

  .prepare-card__highlight {
    font-size: 18px;
    line-height: 30px;
  }

  .prepare-card__quote {
    font-size: 20px;
    line-height: 30px;
  }

  .prepare-card__benefit {
    font-size: 24px;
    line-height: 34px;
  }

  .prepare-card__sub {
    font-size: 24px;
    line-height: 34px;
  }
}
