/* ============================================================
   Section 2 polish — Switch on Your cells 인트로 섹션
   사람 눈으로 명확히 보이는 변화:
   1. 워터마크 이미지 톤다운 (opacity ↓, blur 살짝)
   2. "Switch on Your cells." 영문 헤딩 크게 + 더 우아하게
   3. 한국어 본문 가독성 ↑
   4. DETAIL VIEW 버튼 라운드 박스 → underline + 화살표 (헤더 패턴과 통일)
   브랜드 컬러/콘텐츠 보존.
   ============================================================ */

/* ── 1. 워터마크 (배경 큰 곡선 텍스트 이미지) 톤다운 ────────── */

.section_main.section2 .bg {
  opacity: 0.35 !important;
  /* 살짝 흐릿하게 — 콘텐츠가 더 부각 */
  filter: blur(0.5px);
}

@media (max-width: 1200px) {
  .section_main.section2 .bg {
    opacity: 0.3 !important;
  }
}

/* ── 2. "Switch on Your cells." 영문 헤딩 강화 ─────────────── */

.section_main.section2 .right .txt2.en {
  font-size: clamp(48px, 5.5vw, 80px) !important;
  font-weight: 300 !important;
  font-style: italic !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: #2a2521 !important;
  font-family: 'Cormorant Infant', serif !important;
  margin-bottom: 36px !important;
}

/* ── 3. 한국어 본문 가독성 ↑ ─────────────────────────────── */

.section_main.section2 .left p {
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  letter-spacing: -0.005em !important;
  color: #2a2521 !important;
  max-width: 460px;
  margin-top: 32px !important;
  margin-bottom: 36px !important;
}

/* ── 4. DETAIL VIEW 버튼 — 라운드 박스 → underline + 화살표 ── */

.section_main.section2 .left .btn_area .btn_style {
  /* 기존 box 스타일 무력화 */
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #2a2521 !important;
  font-family: 'Pretendard Variable', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  text-decoration: none !important;
  position: relative;
  transition: gap 0.3s ease, color 0.3s ease;
}

/* 하단 underline — 살짝 슬라이드 인 */
.section_main.section2 .left .btn_area .btn_style::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 1px;
  background: #aa8e7d;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.section_main.section2 .left .btn_area .btn_style:hover::before {
  width: calc(100% + 12px);
}

/* 화살표 (CSS 로 → 문자) */
.section_main.section2 .left .btn_area .btn_style::after {
  content: '→';
  font-family: 'Pretendard Variable', sans-serif;
  font-style: normal;
  transition: transform 0.3s ease;
  display: inline-block;
}

.section_main.section2 .left .btn_area .btn_style:hover::after {
  transform: translateX(6px);
}

/* ── 5. 미세 spacing 조정 ──────────────────────────────────── */

.section_main.section2 .left {
  margin-top: 220px !important; /* 살짝 위로 — 영문 헤딩과 수평 가까이 */
}

/* 모바일 ──────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  /* 영문 헤딩이 한국어 본문 + DETAIL VIEW 보다 위로 — 시각 위계 */
  .section_main.section2 .inner {
    display: flex !important;
    flex-direction: column !important;
  }
  .section_main.section2 .right { order: 1 !important; }
  .section_main.section2 .left  { order: 2 !important; }
  .section_main.section2 .bg    { order: 0 !important; }

  .section_main.section2 .right .txt2.en {
    font-size: clamp(36px, 9vw, 48px) !important;
    margin-bottom: 24px !important;
  }
  .section_main.section2 .left p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    margin-top: 20px !important;
  }
  .section_main.section2 .left .btn_area .btn_style {
    font-size: 13px !important;
  }
  .section_main.section2 .left {
    margin-top: 24px !important;
  }
  /* 워터마크 모바일에서 더 흐리게 + section1 위로 leak 방지 (top:-71px override) */
  .section_main.section2 .bg {
    opacity: 0.18 !important;
    top: 0 !important;
  }
}
