 
/* ==================================================
   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;
    }
  }






  /* ===============================
   운전자보험 안내 섹션
=============================== */
.driver-insurance-section {
    padding: 120px 0;
    background: #F4F5FA;
    text-align: center;
  }
  
  .insurance-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .insurance-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
  }
  
  .insurance-box-wrap {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  
  .insurance-box {
    width: 260px;
    height: 180px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
  
  .insurance-box img {
    width: 80px;
    margin-bottom: 16px;
  }
  
  .insurance-box strong {
    font-size: 25px;
    font-weight: 700;
    color: #0D2764;
  }
  
  /* ===============================
     모바일 대응
  =============================== */
  @media (max-width: 1000px) {
    .driver-insurance-section {
      padding: 80px 0;
    }
  
    .insurance-title {
      font-size: 24px;
    }
  
    .insurance-desc {
      font-size: 15px;
      margin-bottom: 40px;
    }
  
    .insurance-box-wrap {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
  
    .insurance-box {
      width: 100%;
      max-width: 320px;
      height: 150px;
    }
  }
  



  
/* =============================== */
/* 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%;
    }
  }
  



  /* ===============================
   교통사고 - 주요 사건 언론 보도
=============================== */
.ta-presscase{
    padding: 120px 0;
    background: #fff;
  }
  
  .ta-presscase__inner{
    max-width: 1200px;
  }
  
  .ta-presscase__title{
    text-align:center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
  }
  
  .ta-presscase__grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
  }
  
  /* LEFT */
  .ta-presscase__media{
    background: #f6f7f9;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  }
  
  .ta-presscase__img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
  }
  
  /* RIGHT */
  .ta-presscase__content{
    padding-top: 10px;
  }
  
  .ta-presscase__headline{
    font-size: 26px;
    font-weight: 800;
    color: #9F003A;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
  }
  
  .ta-presscase__block{
    padding: 18px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  
  .ta-presscase__block:first-of-type{
    border-top: 0;
    padding-top: 0;
  }
  
  .ta-presscase__label{
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
  }
  
  .ta-presscase__text{
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin: 0;
    word-break: keep-all;
  }
  
  /* PC/MO 헬퍼 */
  .pc-only{ display:block; }
  .mo-only{ display:none; }
  
  /* ===============================
     Responsive
  =============================== */
  @media (max-width: 1000px){
    .ta-presscase{
      padding: 80px 0;
    }
  
    .ta-presscase__title{
      font-size: 30px;
      margin-bottom: 34px;
    }
  
    .ta-presscase__grid{
      grid-template-columns: 1fr;
      gap: 22px;
    }
  
    .ta-presscase__media{
      padding: 18px;
      border-radius: 16px;
    }
  
    .ta-presscase__headline{
      font-size: 20px;
      margin-bottom: 14px;
    }
  
    .ta-presscase__text{
      font-size: 15px;
    }
  
    .pc-only{ display:none; }
    .mo-only{ display:block; }
  }