/* 1. 기본 제목/여백 숨김 (기존과 동일) */ .post-header, .blog-header, .article-header, .blog-post-header, .post-title-wrap, .title-wrap, .blog-post-detail__header, .s-blog-post-detail__header, .post-title, .blog-post-title, .article-title, .post-date, .blog-post-date, .article-date, .date, main h1, h1, .post-content-top, .blogPost.title.designSettingElement.text-title { display: none !important; } .post-content, .ck-content, .blog-post-container, .entry-content { margin-top: 0 !important; padding-top: 0 !important; } /* 💡 2. [핵심] 식스샵 바깥쪽 메인 스크롤바를 완전히 삭제해버림 */ html, body { overflow: hidden !important; } .safety-container { width: 100vw; position: relative; left: 50%; margin-left: -50vw; overflow: hidden; } /* 3. 모니터 화면 크기에 딱 맞게 조절 */ .safety-iframe { width: 100%; border: none; display: block; margin: 0; padding: 0; /* 100vh(화면 전체 높이)에서 상단 식스샵 하얀색 메뉴 높이(약 120px)를 뺀 나머지 꽉 채우기 */ height: calc(100vh - 120px) !important; }