/* =========================================================
   [SECTION] 구속영장 대표변호사 진행 (전용)
   - 고유 네임스페이스: .arrest-lead
   - 모바일 기준: 1000px
========================================================= */

.arrest-lead{
    background:#fff;
    padding: 150px 0 110px;
  }
  .arrest-lead__inner{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* =======================
     HERO
  ======================= */
  .arrest-lead__hero{
    position: relative;
    min-height: 720px;            /* 인물(511x875) 머리 안 잘리게 */
    border-radius: 24px;
    overflow: visible;            /* 핵심: 인물 상단/외곽 잘림 방지 */
    background: #fff;
  }
  
  /* 워터마크 */
  .arrest-lead__wm{
    position:absolute;
    left: 55%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 640px;
    opacity: 0.6;
    z-index: 1;
    pointer-events:none;
    user-select:none;
  }
  
  /* 좌측 카피 */
  .arrest-lead__copy{
    position: relative;
    z-index: 3;
    width: 62%;
    padding: 52px 40px 28px;
  }
  
  /* “형사사건은 …” */
  .arrest-lead__quote{
    font-size: 26px;              /* PC 26px */
    color:#777;
    margin: 0 0 18px;
    letter-spacing: -0.2px;
  }
  
  /* “판사 출신 …” */
  .arrest-lead__title{
    margin: 0;
    font-size: 70px;              /* PC 70px */
    line-height: 1.5;
    font-weight: 800;
    color:#111;
    letter-spacing: -1.2px;
  }
  
  .arrest-lead__hl{
    display: inline;                         
    background: #9F003A;                     
    color:#fff;
    padding: 0.08em 0.22em;                  
    border-radius: 0.18em;
    box-decoration-break: clone;             
    -webkit-box-decoration-break: clone;
  }
  
  /* 세로 라인 */
  .arrest-lead__line{
    width: 1px;
    height: 70px;
    background:#cfcfcf;
    margin: 28px 0 22px;
  }
  
  /* 대표 변호사 / 차영욱 */
  .arrest-lead__profile{ margin-top: 6px; }
  
  .arrest-lead__name{
    display:flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
  }
  
  .arrest-lead__name .role{
    font-size: 40px;              /* PC 40px */
    font-weight: 700;
    color:#111;
  }
  
  .arrest-lead__name em{
    font-style: normal;
    font-size: 55px;              /* PC 55px */
    font-weight: 900;
    color:#111;
  }
  
  /* bullet 텍스트 */
  .arrest-lead__bullets{
    margin: 0;
    padding-left: 18px;
    color:#666;
    font-size: 20px;              /* PC 20px */
    line-height: 1.7;
  }
  
  /* 우측 인물 */
  .arrest-lead__person{
    position:absolute;
    right: 0;
    bottom: -20px;
    width: 48%;
    display:flex;
    justify-content:flex-end;
    z-index: 2;
    pointer-events:none;
  }
  
  .arrest-lead__person-img{
    width: 511px;                 /* 요청 사이즈 */
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.12));
  }
  
  /* =======================
     DOCS
  ======================= */
  .arrest-lead__docs{
    margin-top: 26px;
  }
  
  /* 타이틀: 구속영장 사건은 / 대표변호사가 직접 진행합니다. */
  .arrest-lead__docs-title{
    text-align:center;
    margin: 110px 0 102px;
    letter-spacing: -0.8px;
  }
  
  /* HTML에서 <span class="t1">, <span class="t2"> 사용 */
  .arrest-lead__docs-title .t1{
    display:block;
    font-size: 55px;              /* PC 55px */
    font-weight: 800;
    color:#111;
    line-height: 1.15;
  }
  .arrest-lead__docs-title .t2{
    display:block;
    font-size: 70px;              /* PC 70px */
    font-weight: 900;
    color:#0D2764;                /* 지정 컬러 */
    line-height: 1.15;
    margin-top: 8px;
  }
  
  .arrest-lead__docs-box{
    position: relative;
    background:#f4f4f4;
    border-radius: 22px;
    padding: 34px 72px;
    box-shadow: 0 18px 35px rgba(0,0,0,.08);
    overflow: visible;            /* 버튼이 살짝 밖으로 나와도 안 잘리게 */
  }
  
  /* 슬라이드 카드: 256x350 고정 */
  .arrestDocsSwiper .swiper-slide{
    display:flex;
    justify-content:center;
  }
  
  .arrest-lead__doc{
    width: 256px;
    height: 350px;
    display:block;
    border-radius: 16px;
    overflow:hidden;
    background:#fff;
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
  }
  
  .arrest-lead__doc img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
  }
  
  /* 네비게이션 버튼 */
  .arrest-lead__nav{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background:#fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.10);
    cursor:pointer;
    z-index: 5;
  }
  .arrest-lead__nav--prev{ left: 18px; }
  .arrest-lead__nav--next{ right: 18px; }
  
  .arrest-lead__nav::before{
    content:"";
    position:absolute;
    inset: 0;
    margin:auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: rotate(135deg);
  }
  .arrest-lead__nav--next::before{
    transform: rotate(-45deg);
  }
  
  /* =======================
     MOBILE (1000px)
  ======================= */
  @media (max-width: 1000px){
    .arrest-lead{ padding: 64px 0 84px; }
  
    .arrest-lead__hero{
      min-height: auto;
      border-radius: 18px;
    }
  
    .arrest-lead__copy{
      width: 100%;
      padding: 26px 18px 10px;
    }
    .arrest-lead__hl{
        display: inline;
        background: #9F003A;
        color:#fff;
        padding: 0.08em 0.22em;
        border-radius: 0.18em;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
    }
    .arrest-lead__quote{ font-size: 16px; }    /* MO 16px */
    .arrest-lead__title{ font-size: 40px; }    /* MO 40px */
  
    .arrest-lead__line{ height: 44px; }
  
    .arrest-lead__name{ margin-bottom: 10px; }
    .arrest-lead__name .role{ font-size: 16px; } /* 대표변호사 MO 16px */
    .arrest-lead__name em{ font-size: 24px; }    /* 차영욱 MO 24px */
  
    .arrest-lead__bullets{ font-size: 14px; }    /* MO 14px */
  
    .arrest-lead__wm{
      width: 360px;
      opacity: 0.6;
      left: 50%;
      top: 56%;
      transform: translate(-50%, -50%);
    }
  
    .arrest-lead__person{
      position: relative;
      width: 100%;
      right: auto;
      bottom: auto;
      padding: 8px 18px 0;
      justify-content: center;
    }
  
    .arrest-lead__person-img{
      width: 280px;
      filter: drop-shadow(0 14px 22px rgba(0,0,0,.12));
    }
  
    .arrest-lead__docs-title .t1{ font-size: 24px; } /* MO 24px */
    .arrest-lead__docs-title .t2{ font-size: 36px; } /* MO 36px */
    .arrest-lead__docs-title .t2{ color:#0D2764; }
  
    .arrest-lead__docs-box{
      padding: 22px 16px;
    }
  
    .arrest-lead__nav--prev{ left: 10px; }
    .arrest-lead__nav--next{ right: 10px; }
  
    .arrest-lead__doc{
      width: 256px;
      height: 350px;
    }
  }
  