/* BASIC css start */
/* 기본 */
html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

h1, h2{ margin: 0; }

/* ✅ 모바일 전용 */
@media (max-width: 768px){

  /* 헤더가 fixed/sticky라서 첫 섹션이 겹치는 문제 방지 */
  .hs-inside{
    padding-top: 99px !important; /* 필요하면 68~90 사이로 조절 */
  }

  /* 레이아웃: 무조건 1컬럼 */
  .hs-inside__grid{
    display: block !important;
    width: 100% !important;
  }
  
  
  .hs-inside__brand img{
   display: block !important;
    width: 70px !important;      /* ✅ 강제 고정 */
    height: 24px !important;     /* ✅ 강제 고정 */
    max-width: 70px !important;
    min-width: 70px !important;
    max-height: 24px !important;
    object-fit: contain !important;
}
  
  

  /* ===== 이미지 영역 (풀폭 / 동일한 크기 슬롯) ===== */
  .hs-inside__media{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;            /* ✅ 이미지에 padding 금지 */
    overflow: hidden !important;
    aspect-ratio: 4 / 3 !important;   /* 위/아래 이미지 동일 높이감 */
  }

  .hs-inside__media img{
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;     /* 동일한 슬롯에 꽉 채우기 */
    object-position: center 20% !important;
  }

  /* 상단 이미지만: 머리 덜 잘리게 */
  .hs-inside__media--top img{
    object-position: center 8% !important; /* 0~10% 사이로 조절 */
  }

  /* 하단 이미지는 기본(원하면 살짝 아래) */
  .hs-inside__media--bottom img{
    object-position: center 25% !important;
  }

  /* ===== 텍스트 영역 (좌우 여백 적용) ===== */
  .hs-inside__text{
    width: 100% !important;
    margin: 0 !important;
    padding: 42px 18px 100px !important;   /* ✅ 텍스트만 좌우 여백 */
    box-sizing: border-box !important;
    text-align: left !important;

  }

  .hs-inside__brand{
    display: block !important;
    width: 70px !important;      /* ✅ 로고 고정 폭 */
    height: 24px !important;     /* ✅ 로고 고정 높이 (원하면 22~28 조절) */
    margin: 0 0 20px -1px !important;
    overflow: hidden !important; /* ✅ 박스 밖으로 커지면 잘라버림 */
  }

  .hs-inside__ko,
  .hs-inside__en{
    margin: 0 !important;
    max-width: none !important;
    word-break: keep-all;
    line-height: 1.75 !important;
    font-weight: 500 !important;
  }

  .hs-inside__en{
    margin-top: 16px !important; /* 국/영문 간격 */
  }
}


.hs-inside__media:last-of-type{
    margin-bottom: 80px !important;
  }
  
  
  
/* GO SHOP - left aligned */
.toez_go_shop{
  margin-top: 25px;   /* 영문 아래 간격 */
}

.toez_go_shop.left{
  text-align: left;
}

.toez_go_shop .btn_go_shop{
  display:inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  color:#222;
  text-decoration:none;
  padding: 2px 0;
  position:relative;
}

/* underline */
.toez_go_shop .btn_go_shop:after{
  content:"";
  position:absolute;
  left:0;             /* ✅ 왼쪽 시작 */
  bottom:0;
  width: 72px;
  height: 1px;
  background:#222;
  opacity:.75;
}

.toez_go_shop .btn_go_shop:hover{
  opacity:.75;
}
  
  

/* 푸터 (기존 유지) */
footer{
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}

/* BASIC css end */

