

  
/* ==================================================
   SECTION 01 : 구제 성공 사례
================================================== */
#section-cases {
    padding: 120px 0;
    background: #fff;
  }
  
  #section-cases .section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ---------- 텍스트 영역 ---------- */
  #section-cases .cases-eyebrow {
    text-align: center;
    font-weight: 700;
    font-size: 55px;
    margin-bottom: 76px;
  }
  
  #section-cases .cases-desc {
    text-align: center;
    color: #666;
    font-size: 24px;
    margin-bottom: 77px;
  }
  
  #section-cases .cases-slogan {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 50px;
  }
  
  #section-cases .bh-muje {
    font-size: 80px;
  }
  
  /* ---------- 슬라이더 영역 ---------- */
  #section-cases .cases-slider {
    position: relative;
    padding: 20px 54px; /* 네비 버튼 공간 */
  }
  
  /* 슬라이드 안에서 카드 중앙 정렬 */
  #section-cases .swiper-slide {
    display: flex;
    justify-content: center;
  }
  
  /* ==================================================
     카드 : 문서형(case-card--doc)
     - PC 기준 256 x 350
  ================================================== */
  #section-cases .case-card--doc {
    display: block;
    width: 256px;
    aspect-ratio: 256 / 350;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }
  
  /* 이미지 꽉 채우기 */
  #section-cases .case-card--doc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* ---------- 네비게이션 버튼 ---------- */
  #section-cases .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    z-index: 5;
  }
  
  #section-cases .nav-btn.prev { left: 0; }
  #section-cases .nav-btn.next { right: 0; }
  
  /* ==================================================
     Responsive
  ================================================== */
  @media (max-width: 1000px) {
    #section-cases {
      padding: 80px 0;
    }
  
    #section-cases .cases-slogan {
      font-size: 24px;
    }
  
    #section-cases .cases-slider {
      padding: 16px 46px;
    }
  
    /* 모바일 카드 사이즈 */
    #section-cases .case-card--doc {
      width: 170px;
      aspect-ratio: 256 / 350;
      border-radius: 16px;
    }
    #section-cases .cases-eyebrow{
        font-size: 40px;
    }
    #section-cases .cases-desc{
        font-size: 16px;
    }
    #section-cases .bh-muje{
        font-size: 40px;
    }
  }







/* =============================== */
/* SECTION 03 신상공개             */
/* =============================== */

.section-sexcrime-focus {
    padding: 150px 0;
    background: #ffffff;
  }
  
  .sc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* =============================== */
  /* 상단 아이콘 + 타이틀            */
  /* =============================== */
  
  .sc-head {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .sc-icon {
    width: 56px;
    margin-bottom: 40px;
  }
  
  .sc-title {
    font-size: 55px;
    font-weight: bold;
    color: #000;
  }
  
  /* =============================== */
  /* 카드 2개 영역                   */
  /* =============================== */
  
  .sc-card-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  
  .sc-card {
    width: 47%;
    text-align: center;
  }
  
  .sc-card-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 14px;
  }
  
  .sc-card-caption {
    font-size: 24px;
    color: #000;
    font-weight: normal;
  }
  
  /* =============================== */
  /* 스크롤 애니메이션               */
  /* =============================== */
  /* 섹션 전체가 아래에서 위로 슥 올라오게 */
  .section-sexcrime-focus.js-ani {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .section-sexcrime-focus.js-ani.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* 내부 요소들 순차 등장 */
  .section-sexcrime-focus .sc-head,
  .section-sexcrime-focus .sc-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  
  .section-sexcrime-focus.is-visible .sc-head {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
  }
  
  .section-sexcrime-focus.is-visible .sc-card-wrap .sc-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
  }
  
  .section-sexcrime-focus.is-visible .sc-card-wrap .sc-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }
  
  /* =============================== */
  /* 모바일 반응형 (1000px)          */
  /* =============================== */
  
  @media (max-width: 1000px) {
    .section-sexcrime-focus {
      padding: 60px 0;
    }
  
    .sc-title {
      font-size: 25px;
      line-height: 1.4;
      word-break: auto-phrase;
    }
    .sc-card-caption{
      font-size: 16px;
    }
    .sc-card-wrap {
      flex-direction: column;
      gap: 24px;
    }
  
    .sc-card {
      width: 100%;
    }
  }
  
/* ===============================
   음주운전 면허구제 사례 슬라이드 (FINAL+TOGGLE)
=============================== */
#section-drunk-case.drunk-case-section{
  padding: 120px 0;
  background:#fff;
}

#section-drunk-case.drunk-case-section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 타이틀 */
#section-drunk-case.drunk-case-section .case-title{
  text-align:center;
  font-size:55px;
  font-family: 'Gowun Batang', serif;
  font-weight:700;
  letter-spacing:-0.01em;
  margin-bottom:90px;
}

/* Swiper 래퍼(좌우 버튼 커스텀 자리) */
#section-drunk-case.drunk-case-section .drunk-case-slider{
  position: relative;
  padding: 0 70px; /* 좌우 버튼 영역 */
}

/* 슬라이드 중앙 정렬 + 높이 고정 방지 */
#section-drunk-case.drunk-case-section .swiper-slide{
  display:flex;
  justify-content:center;
  height:auto;
}

/* 카드(상단 판결문 + 하단 회색 요약) */
#section-drunk-case.drunk-case-section .dcase-item{
  width: 100%;
  max-width: 320px;
}

/* 문서 이미지 영역 */
#section-drunk-case.drunk-case-section .case-doc{
  position: relative;
  border-radius: 10px;
  background:#fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  overflow: visible; /* 스탬프/그림자 잘림 방지 */
}

#section-drunk-case.drunk-case-section .case-doc > img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 10px;
}

/* 스탬프(이미지) 오버레이 - 중앙 */
#section-drunk-case.drunk-case-section .case-doc .stamp{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  width:140px;
  opacity:0.95;
  pointer-events:none;
  user-select:none;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
}

/* 하단 요약 박스 (✅ 잘림 방지: 고정 높이 제거) */
#section-drunk-case.drunk-case-section .dcase-desc{
  margin-top: 16px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.65;
  color: #333;
  min-height: 0;
  max-height: none;
  word-break: auto-phrase;
}

/* 기본은 clamp 적용(너무 길면 더보기) */
#section-drunk-case.drunk-case-section .dcase-desc.is-clamped{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* 더보기/접기 버튼 */
#section-drunk-case.drunk-case-section .dcase-more{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color:#111;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

#section-drunk-case.drunk-case-section .dcase-more::after{
  content:"";
  width: 7px;
  height: 7px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

#section-drunk-case.drunk-case-section .dcase-item.is-open .dcase-more::after{
  transform: rotate(-135deg);
}

/* ===============================
   커스텀 네비게이션 버튼 (원형)
=============================== */
#section-drunk-case.drunk-case-section .case-nav{
  position:absolute;
  top: 180px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background:#fff;
  border:1px solid #e6e6e6;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  cursor:pointer;
  z-index: 10;
}

#section-drunk-case.drunk-case-section .case-prev{ left: 10px; }
#section-drunk-case.drunk-case-section .case-next{ right: 10px; }

/* 화살표 */
#section-drunk-case.drunk-case-section .case-nav::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: translate(-50%, -50%) rotate(45deg);
}

#section-drunk-case.drunk-case-section .case-prev::before{
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* Swiper 기본 버튼 숨김 */
#section-drunk-case.drunk-case-section .swiper-button-prev,
#section-drunk-case.drunk-case-section .swiper-button-next{
  display:none !important;
}

/* ===============================
   반응형 (1000px 이하 통일)
=============================== */
@media (max-width: 1000px){
  #section-drunk-case.drunk-case-section{
    padding: 80px 0;
  }

  #section-drunk-case.drunk-case-section .case-title{
    font-size:20px;
    margin-bottom:40px;
  }

  #section-drunk-case.drunk-case-section .drunk-case-slider{
    padding: 0 46px;
  }

  #section-drunk-case.drunk-case-section .case-nav{
    top: 160px;
    width: 40px;
    height: 40px;
  }

  #section-drunk-case.drunk-case-section .case-doc .stamp{
    width:108px;
  }

  #section-drunk-case.drunk-case-section .dcase-desc{
    font-size:12.5px;
  }

  #section-drunk-case.drunk-case-section .dcase-desc.is-clamped{
    -webkit-line-clamp: 5;
  }
}