/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px;
}
.brand img { display: block; }

.gnb { display: flex; gap: 24px; }
.gnb a { padding: 10px 6px; font-weight: 600; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; line-height: 1; }

/* 모바일 네비 */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .gnb { 
    position: fixed; inset: 64px 0 auto 0; 
    background: #fff; border-top: 1px solid #eee;
    flex-direction: column; gap: 0; padding: 8px 16px; 
    transform: translateY(-120%); transition: transform .25s ease;
  }
  .gnb.is-open { transform: translateY(0); }
  .gnb a { padding: 14px 8px; }
}
.section {
  position: relative;
  width: 100%;
   padding-top: 120px;
  padding-bottom: 120px;
}

/* 공통 section-inner 기본 구조 */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* gutter 기본값 (PC) */
:root {
  --gutter: 40px;   /* PC에서 적당한 여백 */
}

/* 모바일 860px 이하 */
@media (max-width: 860px) {
  :root {
    --gutter: 20px; /* 모바일 가이드 */
  }
}

.ptb0{
  padding-top: 0;
  padding-bottom: 0;
}
/* 이미지 태그를 background처럼 꽉 채우기 */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 오버레이 */
.section-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}

/* 텍스트 영역 */
.section-hero .section-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 0;
  display: flex;
  align-items: center;
  min-height: 650px;
  color: #fff;
}

.hero-title {
  margin: 0;
font-size: clamp(36px, 5.4vw, 54px);
  font-weight: 700;
  line-height: 1.5;
}

.hero-copy-right {
  position: absolute;
  right: 24px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-size: 11px;
  opacity: .85;
  color: #fff;
}

/* ========= 모바일 ========= */
@media (max-width: 860px) {
  .section {
  
   padding-top: 80px;
  padding-bottom: 40px;
}
  .section-hero .section-inner {
    padding: 40px 20px 80px;
    align-items: flex-end;
    min-height: 650px;
  }

  /* 모바일용 오버레이 방향 변경 */
  .section-hero::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.45) 30%,
        rgba(0, 0, 0, 0.1) 65%,
        rgba(0, 0, 0, 0) 100%
    );
  }

  .hero-title {
  
   line-height: 140%; /* 75.6px */



  }

  .hero-copy-right {
    right: 16px;
    bottom: 24px;
    font-size: 10px;
  }
}


/* ===== 2섹션: 기부 기준 ===== */

.section-donation-criteria .section-inner {
  max-width: 1180px;
  margin: 0 auto;

}

/* 상단 텍스트 블록 */
.criteria-header {
  text-align: center;
  
}

.section-title {
  margin: 0 0 24px;
  font-size:  clamp(24px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #333333;
}

.criteria-questions {
  margin: 0 0 24px;
  font-size:  clamp(14px, 2.4vw, 20px);
  line-height: 1.8;
  color: #828282;;
}

.criteria-intro {
  letter-spacing: -0.5px;
  margin: 0;
  font-size:  clamp(14px, 2.4vw, 20px);
  line-height: 1.9;
  color: #333333;
  font-weight: 500;
}

.criteria-subtitle {
  margin: 0 0 24px;
  font-size:  clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #333;
}

/* 리스트 공통 */
.criteria-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  padding-top: 40px;
 
}



/* 번호 동그라미 */
.criteria-number {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #556A1F;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

/* 텍스트 컬럼 */
.criteria-content {
  flex: 1;
}

.criteria-heading {
  margin: 0 0 8px;
  font-size:  clamp(14px, 2.4vw, 20px);
  font-weight: 700;
  color: #333;
}

.criteria-desc {
letter-spacing: -0.5px;
  font-size:  clamp(14px, 2.4vw, 20px);
  line-height: 1.8;
  color: #333;
  font-weight: 500;
}

/* 연두색 박스 */
.criteria-org-box {
  margin-bottom: 8px;
  padding: 24px 28px;
  background: #E9EADE;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.9;

}

.criteria-org-title {
  margin: 0 0 10px;
  font-size:  clamp(14px, 2.4vw, 20px);
  font-weight: 700;
  color: #333;
}

.font18{
    font-size:  clamp(12px, 2vw, 18px);
      color: #333;
}
/* CTA 버튼 (2번 기준) */
.criteria-cta {
  display: flex;
    justify-content: center;
  
width: fit-content;
  margin-top: 18px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  background: #556A1F;
  color: #fff;
  white-space: nowrap;
}

.criteria-cta:hover,
.criteria-cta:focus {
  opacity: 0.9;
}

/* 각주 */
.criteria-footnote {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #556A1F;
}

/* 하단 큰 이미지 */
.criteria-bottom-visual {
  position: relative;
  margin-top: 120px;
  border-radius: 26px;
  overflow: hidden;
}

.criteria-img {
  display: block;
  width: 100%;
  height: 100%;
}

.criteria-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 이미지 안 저작권 표기 (우측 하단) */
.criteria-img-copy-right {
  position: absolute;
  right: -80px;
  bottom: 116px;
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  text-orientation: mixed;
  display: inline-block; 
  transform: rotate(90deg); 
  white-space: nowrap;
}

.criteria-img-copy-right-gn {
  position: absolute;
  right: -55px;
  bottom: 116px;
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  text-orientation: mixed;
  display: inline-block; 
  transform: rotate(90deg); 
  white-space: nowrap;
}

/* ===== 모바일 (≤ 860px) ===== */
@media (max-width: 860px) {
  .section-donation-criteria .section-inner {
    padding: 0 20px;
  }





.criteria-footnote {

  font-size: 12px;

}





  .criteria-item {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    padding-top: 30px;
  }

  .criteria-number {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    font-size: 16px;
  }





  .criteria-org-box {
    padding: 18px 18px;
    border-radius: 14px;
    font-size: 13px;
  }

  .criteria-bottom-visual {
    margin-top: 80px;
    border-radius: 20px;
  }

  .criteria-img-copy-right {
    right: -47px;
    bottom: 62px;
    font-size: 10px;
  }

  .criteria-img-copy-right-gn {
    right: -30px;
    bottom: 50px;
    font-size: 10px;
  }
}



/* 공통 inner에 gutter 적용 중이라면 그대로 사용 */

.section-video .section-inner {

  margin: 0 auto;
}

/* 유튜브 반응형 비율 16:9 유지 */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 비율 */
  background: #f3f3f3;
  border-radius: 26px;
  overflow: hidden;
 margin-bottom: 120px;
  /* 가운데 로딩 썸네일 느낌을 원할 경우 center alignment 가능 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
 
}

/* 모바일 대응 */
@media (max-width: 860px) {
  .section-video .section-inner {
    max-width: 100%;
  }

  .video-wrapper {
     margin-bottom: 80px;
    border-radius: 18px;
  }
}



/* 테이블 기본 래퍼 – 작은 화면에서 필요하면 가로 스크롤 */
.business-table-wrap {
  width: 100%;
  overflow-x: auto;
}

/* 실제 테이블 스타일 */
.business-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
   font-size:  clamp(14px, 2vw, 18px);
   
  line-height: 1.7;
  color: #444;
}

/* 헤더 */
.business-table thead th {
  padding: 14px 18px;
  background: #E9EADE;
  font-weight: 700;
  text-align: center;
  border: 1px solid #e2e4d7;
}

/* 헤더 모서리 라운드 */
.business-table thead th:first-child {
  border-top-left-radius: 12px;
}
.business-table thead th:last-child {
  border-top-right-radius: 12px;
}

/* 바디 영역 */
.business-table tbody th,
.business-table tbody td {
  padding: 16px 18px;
  border: 1px solid #E9EADE;
  background: #ffffff;
  vertical-align: top;
    letter-spacing: -0.5px;
  
}

/* 첫 번째 컬럼(행 헤더) */
.business-table tbody th {
  width: 18%;
  background: #fff;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

/* 두 번째, 세 번째 컬럼 */
.business-table tbody td:nth-child(2) {

  width: 42%;
}
.business-table tbody td:nth-child(3) {
  width: 40%;
}

/* 마지막 행의 모서리 라운드 */
.business-table tbody tr:last-child th {
  border-bottom-left-radius: 12px;
}
.business-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

/* 링크 스타일 (연두색) */
.business-table-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #89A230;
  text-decoration: none;
}
.business-table-link:hover,
.business-table-link:focus {
  text-decoration: underline;
}

/* ========== 모바일 (≤ 860px) ========== */
@media (max-width: 860px) {


  .business-table {
   
    line-height: 1.6;
  }

  .business-table thead th {
    padding: 10px 8px;
  }

  .business-table tbody th,
  .business-table tbody td {
    padding: 10px 8px;
  }

  .business-table-link {
    font-size: 12px;
  }
}




/* 그리드 (PC 2 x 2, 좁아지면 1열) */
.donation-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* 카드 공통 스타일 */
.donation-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px 28px 24px;
  border-radius: 26px;
  text-decoration: none;

  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.015);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

/* 배경 컬러 타입 */
.donation-card--gray {
  background: #f2f2e9;
  color: #333;
}
.donation-card--green {
  background: #8cb63b;
  color: #ffffff;
}

/* 상단 타이틀 + 화살표 */
.donation-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.donation-card-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.donation-card-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 본문 */
.donation-card-body {
  margin: 0 0 24px;
  font-size:  clamp(14px, 2vw, 20px);
  line-height: 1.8;
  text-align: left;
}

/* 하단 설명 + 아이콘 */
.donation-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.donation-card-caption {
  text-align: left;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.donation-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* hover 효과 (PC에서만 보통 사용) */
@media (hover: hover) and (pointer: fine) {
  .donation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  }
}

/* ========== 반응형 ========== */

@media (max-width: 860px) {

.donation-card-header {

  margin-bottom: 8px;
}

  .donation-card {
    border-radius: 20px;
    padding: 16px 22px 16px;
      min-height: 320px
  }

  .donation-card-title {
    font-size: 18px;
  }

  .donation-card-body {
  text-align: left;
    margin-bottom: 8px;
  }

  .donation-card-caption {
    font-size: 12px;
    text-align: left;
  }

  .donation-card-icon {
    width: 32px;
    height: 32px;
  }
    .donation-card {
  
  }
}

@media (max-width: 420px) {
  .donation-card-grid {
    grid-template-columns: 1fr;  /* 모바일에서는 1열로 쌓이게 */
    gap: 16px;
    
  }    
  .donation-card {
    min-height: 100px
  }
}

/* 전체 스텝 래퍼 */
.donation-steps {
  display: flex;
  flex-direction: column;
  gap: 12px; /* 박스 사이 + 화살표 포함 */
}

/* 각 단계 박스 */
.donation-step {
  display: flex;
  align-items: center;
  gap: 24px;

  padding: 22px 40px;
  background: #ecefdf;
  border-radius: 24px;
}

/* 동그란 번호 */
.donation-step-number {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
  color: #555;
}

/* 텍스트 영역 (제목 / 설명 좌우 정렬) */
.donation-step-text {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.donation-step-title {

  margin: 0;
  font-size:  clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #333;
}

.donation-step-desc {
  flex: 1;
  margin: 0;
  font-size:  clamp(14px, 2vw, 20px);
  line-height: 1.8;
  color: #333;
}

/* 아래쪽 화살표 */
.donation-step-arrow {
  text-align: center;
  padding: 4px 0 8px;
  display: flex;
    justify-content: center;
}

.donation-step-arrow img {
  width: 16px;
  height: auto;
}

/* CTA 버튼 */
.donation-step-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 60px auto 0;
  padding: 14px 40px;

  border-radius: 999px;
  background: #556A1F;
  color: #ffffff;
  font-size:  clamp(14px, 2vw, 18px);
  font-weight: 600;
  text-decoration: none;
  max-width: fit-content;
}
.cta{
  display: flex;
  justify-content: center;
}
.donation-step-cta:hover,
.donation-step-cta:focus {
  opacity: 0.9;
}

/* ===== 모바일 (≤ 860px) ===== */
@media (max-width: 860px) {




  .donation-step {
    padding: 18px 20px;
    border-radius: 20px;
    align-items: flex-start;
    gap: 16px;
  }

  .donation-step-number {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .donation-step-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

 



  .donation-step-arrow {
    padding: 6px 0 10px;
  }

  .donation-step-cta {
    margin-top: 20px;
    padding: 13px 28px;
 
  }
}


/* 공제 한도 테이블 전용 설정 */
.business-table--tax {
  font-size: 18px;
}

/* 첫 번째 컬럼(구분) – 약간 좁게 + 가운데 정렬 느낌 */
.business-table--tax tbody th {
  width: 14%;
  text-align: center;
  white-space: nowrap;
  

}

/* 두 번째, 세 번째, 네 번째 컬럼 비율 조정 */
.business-table--tax tbody td:nth-child(2) {
  width: 16%;   /* 후원 종 */
 white-space: nowrap;
}
.business-table--tax tbody td:nth-child(3) {
  width: 18%;   /* 공제 한도 */

}
.business-table--tax tbody td:nth-child(4) {
  width: 52%;   /* 주요 후원 사업 */
}

/* 개인/법인 사이 구분선 조금 더 진하게 */
.business-table--tax .tax-group-divider th,
.business-table--tax .tax-group-divider td {
  border-top-width: 2px;
}

/* 모바일에서는 글자, 패딩만 조금 줄이기 */
@media (max-width: 860px) {
  .business-table--tax {
    font-size: 14px;
  }

  .business-table--tax tbody th,
  .business-table--tax tbody td {
    padding: 10px 8px;
  }
}
.mobile-br {
  display: none;
}

@media (max-width: 860px) {
  .mobile-br {
    display: block;
  }
}




/* ===== 세액공제 안내 섹션 ===== */




/* 공통 박스 */
.tax-note {
  display: flex;
  align-items: center;
  gap: 32px;

  padding: 24px 40px;

  background: #ecefdf;
  border-radius: 24px;
}
.tax-note-text {
  font-size:  clamp(14px, 2vw, 20px);
}
/* 왼쪽 제목 컬럼 */
.tax-note-label {
  flex: 0 0 240px;
  font-size:  clamp(14px, 2vw, 20px);
  white-space: nowrap;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

/* 오른쪽 내용 컬럼 */
.tax-note-body {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* 리스트 (동그라미 말고 점 + 여백) */
.tax-note-list {
  margin: 0 0 10px;
  padding-left: 18px;
  list-style: disc;
    font-size:  clamp(14px, 2vw, 20px);
}

.tax-note-list li + li {
  margin-top: 4px;
  font-weight: 500;
}

/* 유의사항 */
.tax-note-caution {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #556A1F;
}

/* 일반 텍스트 */
.tax-note-text {
  margin: 0;
}

/* ===== 모바일 (≤ 860px) ===== */
@media (max-width: 860px) {




  .tax-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    padding: 20px 22px;
    border-radius: 20px;
   margin-bottom
  }

  .tax-note-label {
    flex: none;
 
  }



  .tax-note-caution {
    font-size: 12px;
  }
}


.bulleted {
  position: relative;
  padding-left: 1.2em; /* 내어쓰기 (들여쓰기) */
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 500;
}

.bulleted::before {
  content: "•";       /* 동그라미 */
  position: absolute;
  left: 0;             /* 맨 앞에 배치 */
  top: 0;
}


/* 공통 영역 */
.gn-info-banner {
  background: #89A230;
  border-radius: 14px;
  padding: 36px 48px;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
}

.gn-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gn-info-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.7px;
}

.gn-info-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  transition: 0.25s ease;
      width: fit-content;
}

.gn-info-btn:hover {
  background: rgba(255,255,255,0.18);
}
.btnalign{
  width: 100%;
    display: flex;
    justify-content: flex-end;
}
/* 모바일 */
@media (max-width: 860px) {
  .gn-info-banner {
    padding: 28px 24px;
  }

  .gn-info-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gn-info-text {
    font-size: 17px;
  }

  .gn-info-btn {
    margin-top: 10px;
    align-self: flex-start;
  }

  .mo {
    display: block;
  }
  .gn-info-btn {

  font-size: 14px;

}

}

/* PC에서는 줄바꿈 제거 */
@media (min-width: 860px) {
  .mo {
    display: none;
  }
}




/* ===== 후원 후기 섹션 ===== */



/* 섹션 타이틀 */
.section-testimonials-title {
  margin: 0 0 28px;
  text-align: center;
font-size:  clamp(14px, 2.4vw, 20px);
  font-weight: 700;
  color: #333;
}

/* 카드 리스트 */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 각 카드 */
.testimonial-card {
  position: relative;
  padding: 34px 80px 28px;
  background: #f5f6ef;
  border-radius: 20px;
  text-align: center;
}

/* 큰 따옴표 */
.testimonial-quote {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #b3b5ad;
}

.testimonial-quote--left {
  left: 80px;
}

.testimonial-quote--right {
  right: 80px;
}

/* 본문 텍스트 */
.testimonial-text {
  margin: 0 0 14px;
    font-size:  clamp(14px, 1.8vw, 18px);
  line-height: 1.8;
  color: #828282;
  font-weight: 500;
}

/* 이름/나이 */
.testimonial-author {
  margin: 0;
  font-size: 13px;
  color: #828282;
      font-size:  clamp(12px, 1.4vw, 16px);
}

/* ===== 모바일 (≤ 860px) ===== */
@media (max-width: 860px) {

  .section-testimonials-title {
   
    margin-bottom: 22px;
  }

  .testimonial-card {
    padding: 26px 36px 22px;
    border-radius: 18px;
  }

  .testimonial-quote {
    font-size: 22px;
  }

  .testimonial-quote--left {
    left: 20px;
  }

  .testimonial-quote--right {
    right: 20px;
  }



  .testimonial-author {
    font-size: 12px;
  }
}











/* ===== FAQ 섹션 ===== */



/* 리스트 전체 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 질문 헤더 버튼 */
.faq-item-header {
  width: 100%;
  padding: 16px 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  letter-spacing: -0.5px;
}

/* Q / A 배지 공통 */
.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
      min-width: 24px;
}

/* Q 배지 (연두색) */
.faq-badge-q {
  background: #93c03b;
  color: #fff;
}

/* A 배지 (검정) */
.faq-badge-a {
  background: #333;
  color: #fff;
}

/* 질문 텍스트 */
.faq-question {
  flex: 1;
  text-align: left;
 font-size:  clamp(16px, 3vw, 28px);
  font-weight: 700;
  color: #89A230;
}

/* 오른쪽 화살표 */
.faq-arrow {
  flex-shrink: 0;
}

.faq-arrow img {
  display: block;
  width: 24px;
  height: 24px;
  transform-origin: center;
  transition: transform 0.18s ease;
}

/* 답변 컨테이너 (접힘 영역) */
.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

/* 답변 내용 */
.faq-answer-row {
  display: flex;
  gap: 16px;
/* Q 배지 + 여백만큼 들여쓰기 */
}

.faq-answer {
  text-align: justify;


    line-height: 160%;
  margin: 0;
 font-size:  clamp(14px, 2.4vw, 20px);
 
  color: #333;
}

/* 열린 상태 - .is-open 클래스 */
.faq-item.is-open .faq-item-body {
  max-height: 500px; /* 답변 길이에 맞춰 넉넉하게 */
}

.faq-item.is-open .faq-arrow img {
  transform: rotate(180deg);
}

/* ===== 반응형 (모바일 ≤ 860px) ===== */
@media (max-width: 860px) {


  .faq-list {
    gap: 20px;
  }

  .faq-item-header {
    align-items: flex-start;
  }



  .faq-answer-row {
    flex-direction: row;
    align-items: flex-start;
  
  }

  .faq-answer {
    
  }
}


/* ===== 캠페인 슬라이더 섹션 ===== */

.section-campaign-slider {
  background: #eef2df; /* 전체 배경 톤 */
}

.section-campaign-slider .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;

}

/* 슬라이더 래퍼 */
.campaign-slider {
  overflow: hidden;
}

/* 실제 트랙 (가로 스크롤 & 드래그 대상) */
.campaign-slider-track {
  display: flex;
  gap: 24px;
  padding: 10px 0 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

/* 스크롤바 안 보이게 (옵션) */
.campaign-slider-track::-webkit-scrollbar {
  display: none;
}
.campaign-slider-track {
  scrollbar-width: none;
}

/* 각 카드 */
.campaign-card {
  flex: 0 0 256.5px;
  scroll-snap-align: center;
  text-decoration: none;
  color: inherit;
}

.campaign-card-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.campaign-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

/* 어두운 오버레이 + 텍스트 */
.campaign-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 18px;
}

.campaign-card-title {
  margin: 0 0 4px;
  font-size:  clamp(14px, 2.4vw, 20px);
  font-weight: 700;
}

.campaign-card-subtitle {
  margin: 0;
  font-size: 15px;
  opacity: 0.9;
}

/* hover 효과 (PC) */
@media (hover: hover) and (pointer: fine) {
  .campaign-card:hover img {
    transform: scale(1.05);
  }
}

/* ===== 반응형 ===== */
@media (max-width: 860px) {
  .section-campaign-slider .section-inner {
    padding: 0px 20px;
  }

  .campaign-card {
    flex: 0 0 70%;
  }



  .campaign-card-subtitle {
    font-size: 12px;
  }
}


.campaign-slider-track {
  overflow-x: auto;
  display: flex;
  scroll-behavior: smooth; /* 버튼/휠 스크롤도 부드럽게 */
}

.campaign-slide {
  flex: 0 0 100%; /* 한 화면에 하나씩 보이게 (상황에 맞게 %) */
}

.campaign-slider-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto; /* 드래그 중에는 즉시 반응 */
}


.gn-floating-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  padding: 10px 10px 10px 20px;
border-radius: 120px;
background: linear-gradient(90deg, #89A230 0%, #556A1F 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, opacity 0.15s ease-out;
  width: fit-content;
}

.gn-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

.gn-floating-text {
  white-space: nowrap;
}

.gn-floating-icon {
  margin-left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
}

/* 재생 아이콘 (▶) */
.gn-floating-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #4f7020;
}

/* 모바일에서 조금 작게 */
@media (max-width: 480px) {
  .gn-floating-btn {
    right: 16px;
    bottom: 16px;
    padding: 8px 8px 8px 16px;
    font-size: 13px;
  }

  .gn-floating-icon {
    width: 26px;
    height: 26px;
  }

  .gn-floating-icon::before {
    left: 9px;
    top: 6px;
    border-top-width: 7px;
    border-bottom-width: 7px;
    border-left-width: 9px;
  }
}


/* PC에서는 전체 다 보이게 */
.criteria-scroll {
  max-height: none;
  overflow: visible;
}

/* 모바일(860px 이하)에서만 세로 스크롤 */
@media (max-width: 860px) {
  .criteria-scroll {
    max-height: 350px;   /* 모바일 1번 박스 높이 맞춰 조정 */
    overflow-y: auto;
  }
}
/* PC에서는 전체 다 보이게 */
.criteria-scroll2 {
  max-height: none;
  overflow: visible;
}

/* 모바일(860px 이하)에서만 세로 스크롤 */
@media (max-width: 860px) {
  .criteria-scroll2 {
    max-height: 500px;   /* 모바일 1번 박스 높이 맞춰 조정 */
    overflow-y: auto;
  }
}


/* PC에서는 전체 다 보이게 */
.criteria-scroll3 {
  max-height: none;
  overflow: visible;
}

/* 모바일(860px 이하)에서만 세로 스크롤 */
@media (max-width: 860px) {
  .criteria-scroll3 {
    max-height: 488px;   /* 모바일 1번 박스 높이 맞춰 조정 */
    overflow-y: auto;
  }
}


/* 기본(PC) – 그대로 사용 중이라면 이 상태 유지
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
*/

/* ===== 모바일에서만 가로 슬라이더 ===== */
@media (max-width: 860px) {
  .testimonial-list {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* 카드 하나가 화면의 80% 정도 차지하게 */
  .testimonial-card {
            display: flex;
        flex-direction: column;
        justify-content: center;
    flex: 0 0 90%;
    scroll-snap-align: center;
    min-width: 80%;
  }

  /* 스크롤바 안 보이게(선택사항) */
  .testimonial-list::-webkit-scrollbar {
    display: none;
  }
  .testimonial-list {
    scrollbar-width: none;
  }
}
