/*
Theme Name: Hello Elementor Child
Theme URI: https://snatch.co.kr/
Description: Snatch 커스텀 페이지(생짜 HTML/CSS/JS)용 hello-elementor 차일드 테마. Elementor 미경유 커스텀 템플릿 제공.
Author: Snatch
Template: hello-elementor
Version: 1.0.1
*/

/* ─────────────────────────────────────────────────────────────
   불필요한 가로 스크롤 제거.
   레거시 Elementor 페이지가 1520px 고정폭 + 큰 고정 margin으로 짜여 있어
   화면이 좁으면 빈 영역이 우측으로 넘쳐 가로 스크롤바가 생김.
   overflow-x:clip 은 스크롤만 막고 position:sticky 등은 깨지 않음.
   ───────────────────────────────────────────────────────────── */
html { overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; }

/* ── 헤더 스크롤 고정 (sticky) ──
   overflow-x:clip 은 sticky를 깨지 않음(hidden과 달리 scroll container를 만들지 않음). */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.04);
}

