/* ============================================================
   pad.css — 태블릿 (769px ~ 1024px) 반응형
   * main.css 다음, mobile.css 이전에 로드
   * 태블릿은 데스크톱 풀페이지 레이아웃을 사용하되, 요소가
     잘리거나 겹치지 않도록 크기/여백을 조정한다.
   ============================================================ */

/*@media (min-width: 769px) and (max-width: 1024px) {*/
/*  !* 헤더: 좁은 폭에서 요소 간격 축소 *!*/
/*  .header-left {*/
/*    gap: 12px;*/
/*  }*/

/*  .header-right {*/
/*    gap: 18px;*/
/*  }*/

/*  .telephone-number {*/
/*    font-size: 16px;*/
/*  }*/

/*  !* (섹션별 태블릿 조정은 이어서 추가) *!*/
/*}*/















/* ============================================================
   pad.css
   노트북 / 태블릿 / 대형 폴더블
   769px ~ 1439px
   ============================================================ */

@media (min-width: 769px) and (max-width: 1439px) {

  /* ========================================
     공통
     ======================================== */

  :root {
    --pad-x: clamp(24px, 4vw, 52px);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  img,
  video {
    max-width: 100%;
  }


  /* ========================================
     HEADER
     ======================================== */

  .site-header {
    height: clamp(82px, 9vw, 112px);
  }

  .header-left {
    left: var(--pad-x);
    gap: clamp(10px, 1.6vw, 20px);
  }

  .header-right {
    right: var(--pad-x);
    gap: clamp(14px, 2vw, 26px);
  }

  .open-schedule {
    font-size: clamp(14px, 1.45vw, 19px);
  }

  .project-type {
    display: block;
    font-size: clamp(13px, 1.25vw, 17px);
  }

  .telephone {
    gap: 8px;
  }

  .telephone-number {
    display: block;
    font-size: clamp(15px, 1.5vw, 19px);
  }

  .header-left .header-divider:last-of-type {
    display: block;
  }

  .telephone-icon {
    max-width: 18px;
    height: auto;
    object-fit: contain;
  }

  .menu-button {
    width: clamp(42px, 4.5vw, 56px);
  }

  .menu-line {
    width: 100%;
  }

  .brand-logo {
    width: auto !important;
    height: auto !important;
    max-width: min(27vw, 300px) !important;
    object-fit: contain !important;
  }


  /* ========================================
     전체 메뉴
     ======================================== */

  .site-aside-content {
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .site-aside-navigation {
    width: min(520px, 70vw);
  }

  .site-menu-item {
    height: clamp(68px, 9vh, 90px);
  }

  .site-menu-primary {
    height: 38px;
    font-size: clamp(23px, 2.4vw, 29px);
    line-height: 38px;
  }


  /* ========================================
     SECTION 01
     ======================================== */

  .hero-copy {
    max-width: calc(100vw - 130px);
  }

  .hero-copy-image {
    width: auto !important;
    height: auto !important;
    max-width: clamp(190px, 22vw, 285px) !important;
    object-fit: contain !important;
  }

  .hero-copy-line {
    width: clamp(190px, 27vw, 390px);
    flex-basis: clamp(190px, 27vw, 390px);
    margin-right: clamp(20px, 3vw, 42px);
    margin-left: clamp(20px, 3vw, 42px);
  }

  .hero-copy-text {
    font-size: clamp(16px, 1.6vw, 21px);
  }

  .scroll-guide {
    height: min(270px, 36vh);
  }


  /* ========================================
     SECTION 02
     ======================================== */

  :root {
    --overview-right-size: 56vw;
  }

  .overview-title {
    --overview-title-start: clamp(110px, 12vw, 170px);
    --overview-title-end: clamp(48px, 5vw, 66px);
  }

  .overview-statement {
    font-size: clamp(18px, 1.8vw, 23px);
  }

  .overview-brand {
    font-size: clamp(16px, 1.6vw, 20px);
  }

  .section02.is-overview-split .overview-copy {
    padding-left: clamp(30px, 5vw, 72px);
  }

  .overview-data {
    gap:
            clamp(18px, 4vh, 40px)
            clamp(18px, 2.4vw, 34px);

    padding:
            clamp(86px, 11vh, 118px)
            clamp(24px, 3.5vw, 48px)
            clamp(36px, 5vh, 60px);
  }

  .overview-data dt {
    font-size: clamp(13px, 1.25vw, 16px);
  }

  .overview-data dd {
    font-size: clamp(12px, 1.15vw, 15px);
    white-space: normal;
  }


  /* ========================================
     SECTION 03
     ======================================== */

  .forest-title {
    font-size: clamp(70px, 9vw, 124px);
  }

  .forest-eyebrow {
    top: calc(50% - clamp(95px, 11vw, 140px));
    font-size: clamp(17px, 1.7vw, 22px);
  }

  .forest-description {
    top: calc(50% + clamp(88px, 10vw, 125px));
    font-size: clamp(12px, 1.2vw, 15px);
  }

  .forest-detail-inner {
    grid-template-columns:
      minmax(0, 1.05fr)
      minmax(0, .95fr);

    gap: clamp(20px, 3vw, 40px);

    padding:
            clamp(90px, 11vh, 118px)
            clamp(24px, 3vw, 44px)
            clamp(26px, 4vh, 42px);
  }

  .forest-feature-grid {
    width: 100%;
    min-height: min(48vh, 440px);
  }

  .forest-feature,
  .forest-feature:nth-child(1),
  .forest-feature:nth-child(2),
  .forest-feature:nth-child(3),
  .forest-feature:nth-child(4) {
    padding: clamp(14px, 2vw, 26px);
  }

  .forest-feature-image-wrap {
    height: clamp(55px, 9vh, 92px);
  }

  .forest-feature-image {
    width: auto;
    height: auto;
    max-width: 78%;
    max-height: 100%;
    object-fit: contain;
  }

  .forest-feature:nth-child(2) .forest-feature-image {
    margin-bottom: 8px;
  }

  .forest-feature h3 {
    margin-top: clamp(8px, 1.4vh, 15px);
    font-size: clamp(16px, 1.7vw, 21px);
  }

  .forest-feature p {
    margin-top: 7px;
    font-size: clamp(11px, 1.1vw, 14px);
    line-height: 1.5;
    white-space: normal;
  }


  .forest-special-info {
    left: clamp(34px, 6vw, 82px);
    bottom: clamp(32px, 5vh, 60px);
    width: min(560px, 62vw);
  }

  .forest-special-info strong {
    margin-bottom: 8px;
    font-size: clamp(14px, 1.45vw, 18px);
  }

  .forest-special-info p {
    font-size: clamp(10px, 1.05vw, 13px);
    line-height: 1.65;
  }

  /* ========================================
     SECTION 04
     ======================================== */

  .park-copy {
    padding-left: clamp(34px, 6vw, 82px);
  }

  .park-brand {
    font-size: clamp(13px, 1.25vw, 17px);
  }

  .park-title {
    font-size: clamp(72px, 10vw, 128px);
  }

  .park-desc {
    font-size: clamp(14px, 1.4vw, 18px);
  }

  .park-slidenav {
    left: clamp(34px, 6vw, 82px);
  }


  .contact-map-m {
    height: fit-content;
  }



  /* ========================================
     SECTION 05
     ======================================== */

  .premium-intro {
    transform-origin: left top;
  }

  .premium-eyebrow {
    font-size: clamp(20px, 2vw, 27px);
  }

  .premium-title {
    font-size: clamp(56px, 6.8vw, 90px);
  }

  .premium-lead {
    font-size: clamp(14px, 1.35vw, 18px);
  }

  .premium-label {
    font-size: clamp(20px, 2.1vw, 28px);
  }

  .premium-desc {
    margin-top: clamp(16px, 2.4vh, 28px);
    font-size: clamp(13px, 1.25vw, 17px);
  }



  /* ========================================
     SECTION 06
     ======================================== */

  .contact-inner {
    padding:
            clamp(82px, 10vh, 110px)
            clamp(28px, 4vw, 56px)
            clamp(28px, 4vh, 48px);
  }

  .contact-head {
    margin-top: clamp(0px, 2vh, 20px);
  }

  .contact-eyebrow {
    margin-top: 0;
    font-size: clamp(14px, 1.4vw, 18px);
  }

  .contact-title {
    font-size: clamp(42px, 5vw, 66px);
  }

  .contact-maps {
    width: min(1150px, 92vw);
    gap: clamp(18px, 3vw, 40px);
  }

  .contact-map {
    min-width: 0;
  }

  .contact-map-frame {
    width: 100%;
  }

  .contact-map-frame img {
    width: 100%;
    height: auto;
  }

  .contact-map-caption {
    font-size: clamp(13px, 1.25vw, 16px);
  }

  .contact-btn {
    min-width: 0;
    flex: 1 1 0;
    font-size: clamp(12px, 1.1vw, 14px);
  }


  /* ========================================
     FOOTER
     ======================================== */

  .footer-inner {
    padding-right: clamp(28px, 4vw, 60px);
    padding-left: clamp(28px, 4vw, 60px);
  }

  .footer-row {
    gap: 24px;
  }

  .footer-logo img {
    width: auto;
    max-width: min(250px, 25vw);
    height: auto;
  }

  .footer-tel {
    font-size: clamp(24px, 2.6vw, 34px);
  }

  .footer-partners,
  .footer-copy,
  .footer-note {
    font-size: clamp(10px, 1vw, 13px);
  }
}


















/* ============================================================
   낮은 높이의 노트북 / 태블릿 가로
   ============================================================ */

@media (min-width: 769px) and (max-width: 1439px) and (max-height: 800px) {

  .site-header {
    height: 78px;
  }

  .site-aside-content {
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .site-menu-item {
    height: 68px;
  }


  /* S2 */

  .overview-data {
    gap: 14px 24px;
    padding-top: 78px;
    padding-bottom: 26px;
  }

  .overview-data dt {
    padding-bottom: 5px;
  }

  .overview-data dd {
    margin-top: 5px;
  }


  /* S3 */

  .forest-detail-inner {
    padding-top: 76px;
    padding-bottom: 16px;
  }

  .forest-feature-grid {
    min-height: 360px;
  }

  .forest-feature-image-wrap {
    height: 58px;
  }

  .forest-feature h3 {
    margin-top: 6px;
  }

  .forest-feature p {
    margin-top: 4px;
    line-height: 1.4;
  }


  /* S5 */

  .premium-track {
    transform-origin: left top;
  }


  /* S6 */

  .contact-inner {
    padding-top: 70px;
    padding-bottom: 16px;
  }

  .contact-head {
    margin-top: 0;
  }

  .contact-maps {
    margin-top: 12px;
  }
}



/* 아주 낮은 화면 */
@media (min-width: 769px) and (max-width: 1439px) and (max-height: 680px) {

  .forest-feature-image-wrap {
    height: 48px;
  }

  .forest-feature p {
    font-size: 11px;
  }

  .contact-map-frame {
    max-height: 180px;
    overflow: hidden;
  }

  .contact-map-frame img {
    height: 180px;
    object-fit: cover;
  }
}








/* ============================================================
   태블릿 가로 전용
   Galaxy Tab / iPad landscape
   769 ~ 1366px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1366px) and (orientation: landscape) {

  /* =====================================================
     공통 / HEADER
     ===================================================== */

  .site-header {
    height: 76px !important;
  }

  .header-left {
    left: 38px !important;
    gap: 14px !important;
  }

  .header-right {
    right: 38px !important;
    gap: 20px !important;
  }

  .open-schedule {
    font-size: 15px !important;
  }

  .project-type {
    font-size: 13px !important;
  }

  .telephone-number {
    font-size: 16px !important;
  }

  .brand-logo {
    max-width: 230px !important;
  }


  /* =====================================================
     SECTION 01
     ===================================================== */

  .hero-copy-image {
    max-width: 210px !important;
  }

  .hero-copy-line {
    width: 260px !important;
    flex-basis: 260px !important;
    margin-left: 26px !important;
    margin-right: 26px !important;
  }

  .hero-copy-text {
    font-size: 16px !important;
  }


  /* =====================================================
     SECTION 02 - OVERVIEW
     양옆 잘림 방지
     ===================================================== */

  .overview-title {
    --overview-title-start: 104px !important;
    --overview-title-end: 46px !important;

    font-size: 104px !important;
    max-width: 94vw !important;
  }

  .section02.is-overview-visible .overview-title,
  .section02.is-overview-spread .overview-title,
  .section02.is-overview-condensed .overview-title {
    letter-spacing: 0.18em !important;
    word-spacing: -0.42em !important;
  }

  .section02.is-overview-split .overview-title {
    font-size: 46px !important;
    letter-spacing: 0 !important;
    word-spacing: 0.1em !important;
  }

  .overview-statement {
    font-size: 17px !important;
  }

  .overview-brand {
    font-size: 15px !important;
  }

  .section02.is-overview-split .overview-copy {
    padding-left: 46px !important;
    transform: translateY(-105px) !important;
  }

  .overview-data {
    gap: 18px 24px !important;
    padding: 90px 30px 32px !important;
  }

  .overview-data dt {
    font-size: 12px !important;
  }

  .overview-data dd {
    font-size: 11px !important;
  }


  /* =====================================================
     SECTION 03 - GRAND FORET
     ===================================================== */

  .forest-title {
    font-size: 92px !important;
  }

  .forest-eyebrow {
    top: calc(50% - 105px) !important;
    font-size: 16px !important;
  }

  .forest-description {
    top: calc(50% + 82px) !important;
    font-size: 11px !important;
  }

  /* 디테일 좌/우 비율 */
  .forest-detail-inner {
    grid-template-columns:
      minmax(0, 40%)
      minmax(0, 60%) !important;

    gap: 0 !important;

    padding:
            86px
            24px
            18px
            30px !important;
  }

  .forest-feature-grid {
    width: 94% !important;
    min-height: 420px !important;
    align-self: center !important;
  }

  .forest-feature,
  .forest-feature:nth-child(1),
  .forest-feature:nth-child(2),
  .forest-feature:nth-child(3),
  .forest-feature:nth-child(4) {
    padding: 14px 10px !important;
  }

  .forest-feature-image-wrap {
    height: 52px !important;
  }

  .forest-feature-image {
    max-width: 72% !important;
    max-height: 52px !important;
    object-fit: contain !important;
  }

  .forest-feature:nth-child(2) .forest-feature-image {
    margin-bottom: 4px !important;
  }

  .forest-feature h3 {
    margin-top: 7px !important;
    font-size: 15px !important;
  }

  .forest-feature p {
    margin-top: 5px !important;
    font-size: 9.5px !important;
    line-height: 1.45 !important;
  }

  .forest-map-frame {
    right: 18px !important;
    width: 58% !important;
    max-height: 84% !important;
  }


  /* =====================================================
     SECTION 04 - PARK LIFE
     ===================================================== */

  .park-copy {
    padding-left: 52px !important;
  }

  .park-brand {
    font-size: 14px !important;
  }

  .park-title {
    font-size: 88px !important;
  }

  .section04.is-park-shift .park-title {
    font-size: 58px !important;
  }

  .park-desc {
    font-size: 13px !important;
  }

  .park-slidenav {
    left: 52px !important;
    bottom: 24px !important;
  }


  /* =====================================================
     SECTION 05 - PREMIUM7
     핵심: 1920×930 좌표계를 태블릿 가로용 좌표로 재구성
     ===================================================== */

  .premium-track {
    width: 2575px !important;
    height: 100% !important;
  }

  /* 상단 카피 */

  .premium-intro {
    left: 63px !important;
    top: 150px !important;
  }

  .premium-eyebrow {
    font-size: 30px !important;
  }

  .premium-title {
    margin-top: 10px !important;
    font-size: 54px !important;
  }

  .premium-lead {
    margin-top: 12px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }


  /* ---------- P1 ---------- */

  .premium-item--1 {
    left: 0 !important;
    top: 386px !important;
  }

  .premium-item--1 .premium-thumb {
    width: 295px !important;
    height: 200px !important;
  }

  .premium-item--1 .premium-caption {
    top: 0 !important;
    left: calc(100% + 30px) !important;
  }


  /* ---------- P2 ---------- */

  .premium-item--2 {
    left: 598px !important;
    top: 0 !important;
  }

  .premium-item--2 .premium-thumb {
    width: 295px !important;
    height: 386px !important;
  }

  .premium-item--2 .premium-caption {
    left: calc(100% + 30px) !important;
    bottom: 30px !important;
  }


  /* ---------- P3 ---------- */

  .premium-item--3 {
    left: 893px !important;
    top: 386px !important;
  }

  .premium-item--3 .premium-thumb {
    width: 316px !important;
    height: 200px !important;
  }

  .premium-item--3 .premium-caption {
    right: calc(100% + 26px) !important;
    bottom: 30px !important;
  }


  /* ---------- P4 ---------- */

  .premium-item--4 {
    left: 1210px !important;
    top: 84px !important;
  }

  .premium-item--4 .premium-thumb {
    width: 295px !important;
    height: 304px !important;
  }

  .premium-item--4 .premium-caption {
    top: 194px !important;
    left: calc(100% + 30px) !important;
  }


  /* ---------- P5 ---------- */

  .premium-item--5 {
    left: 1505px !important;
    top: 388px !important;
  }

  .premium-item--5 .premium-thumb {
    width: 242px !important;
    height: 198px !important;
  }

  .premium-item--5 .premium-caption {
    top: 40px !important;
    right: calc(100% + 30px) !important;
  }


  /* ---------- P6 ---------- */

  .premium-item--6 {
    left: 1850px !important;
    top: 186px !important;
  }

  .premium-item--6 .premium-thumb {
    width: 239px !important;
    height: 202px !important;
  }

  .premium-item--6 .premium-caption {
    top: 0 !important;
    left: calc(100% + 30px) !important;
  }


  /* ---------- P7 ---------- */

  .premium-item--7 {
    left: 2089px !important;
    top: 388px !important;
  }

  .premium-item--7 .premium-thumb {
    width: 358px !important;
    height: 198px !important;
  }

  .premium-item--7 .premium-caption {
    right: calc(100% + 30px) !important;
    bottom: 30px !important;
  }


  /* 프리미엄 공통 텍스트 */

  .premium-label {
    font-size: 18px !important;
  }

  .premium-desc {
    margin-top: 16px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .premium-desc-sub {
    font-size: 10px !important;
  }


  /* =====================================================
     SECTION 06 - CONTACT
     가로에서는 지도 2개 나란히
     ===================================================== */

  .contact-inner {
    padding: 76px 34px 20px !important;
    justify-content: center !important;
  }

  .contact-head {
    margin-top: 0 !important;
  }

  .contact-eyebrow {
    font-size: 13px !important;
  }

  .contact-title {
    margin-top: 5px !important;
    font-size: 34px !important;
  }

  .contact-maps {
    width: min(950px, 88vw) !important;
    gap: 34px !important;
    margin-top: 18px !important;
  }

  .contact-map {
    width: calc(50% - 17px) !important;
  }

  .contact-map-frame {
    width: 100% !important;
  }

  .contact-map-frame img {
    width: 100% !important;
    height: 100% !important;
  }

  .contact-map-caption {
    margin-top: 10px !important;
    font-size: 12px !important;
  }

  .contact-map-buttons {
    margin-top: 10px !important;
  }

  .contact-btn {
    width: 44% !important;
    min-width: 0 !important;
    height: 38px !important;
    font-size: 11px !important;
  }


  .park-slidenav {
    left: 252px !important;
  }
}





/* ============================================================
   와이드 노트북 / 낮은 높이 데스크톱
   예: 1920x1080 화면에서 브라우저 실사용 영역 약 1920x900
   ============================================================ */
@media (min-width: 1440px) and (max-height: 900px) {

  /* ========================================
     HEADER
     ======================================== */

  .site-header {
    height: 96px !important;
  }

  .header-left {
    left: 48px !important;
    gap: 20px !important;
  }

  .header-right {
    right: 48px !important;
    gap: 24px !important;
  }

  .open-schedule {
    font-size: 16px !important;
  }

  .project-type {
    font-size: 15px !important;
  }

  .telephone-number {
    font-size: 18px !important;
  }

  .brand-logo {
    max-width: 250px !important;
    height: auto !important;
    object-fit: contain !important;
  }


  /* ========================================
     SECTION 01
     ======================================== */

  .hero-copy-image {
    max-width: 240px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .hero-copy-line {
    width: 380px !important;
    flex-basis: 380px !important;
    margin-left: 34px !important;
    margin-right: 34px !important;
  }

  .hero-copy-text {
    font-size: 19px !important;
  }

  .scroll-guide {
    height: 220px !important;
  }


  /* ========================================
     SECTION 02 - OVERVIEW
     첫 캡처처럼 OVERVIEW 양끝 잘리는 문제
     ======================================== */

  .overview-title {
    --overview-title-start: 150px !important;
    --overview-title-end: 60px !important;

    font-size: 150px !important;
  }

  .section02.is-overview-visible .overview-title,
  .section02.is-overview-spread .overview-title,
  .section02.is-overview-condensed .overview-title {
    letter-spacing: 0.28em !important;
    word-spacing: -0.53em !important;
  }

  .overview-message {
    height: 70px !important;
    flex-basis: 70px !important;
    margin-bottom: 25px !important;
  }

  .overview-statement {
    font-size: 20px !important;
  }

  .overview-brand {
    font-size: 18px !important;
  }

  .section02.is-overview-split .overview-copy {
    transform: translateY(-125px) !important;
    padding-left: 90px !important;
  }

  .section02.is-overview-split .overview-title {
    font-size: 60px !important;
  }

  .overview-data {
    gap: 30px 28px !important;
    padding-top: 100px !important;
    padding-bottom: 45px !important;
  }

  .overview-data dt {
    font-size: 14px !important;
  }

  .overview-data dd {
    margin-top: 7px !important;
    font-size: 13px !important;
  }


  /* ========================================
     SECTION 03 - GRAND FORET
     ======================================== */

  .forest-title {
    font-size: 120px !important;
  }

  .forest-eyebrow {
    top: calc(50% - 120px) !important;
    font-size: 20px !important;
  }

  .forest-description {
    top: calc(50% + 96px) !important;
    font-size: 13px !important;
  }

  .forest-special-info {
    bottom: 38px !important;
  }

  .forest-special-info strong {
    font-size: 14px !important;
  }

  .forest-special-info p {
    font-size: 11px !important;
    line-height: 1.55 !important;
  }


  /* GRAND FORET 디테일
     배경 지도는 main03_bg02.jpg 자체에 있으므로
     좌측 4개 박스만 절대 위치로 고정 */
  .forest-detail-inner {
    display: block !important;
    padding: 0 !important;
  }

  .forest-feature-grid {
    position: absolute !important;

    top: 52% !important;
    left: 48px !important;

    width: 600px !important;
    min-height: 410px !important;

    margin: 0 !important;

    transform: translateY(-50%) !important;
  }

  .forest-feature,
  .forest-feature:nth-child(1),
  .forest-feature:nth-child(2),
  .forest-feature:nth-child(3),
  .forest-feature:nth-child(4) {
    padding: 20px 18px !important;
  }

  .forest-feature-image-wrap {
    height: 74px !important;
  }

  .forest-feature-image {
    width: auto !important;
    height: auto !important;
    max-width: 75% !important;
    max-height: 74px !important;
    object-fit: contain !important;
  }

  .forest-feature:nth-child(2) .forest-feature-image {
    margin-bottom: 8px !important;
  }

  .forest-feature h3 {
    margin-top: 10px !important;
    font-size: 19px !important;
  }

  .forest-feature p {
    margin-top: 7px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }




  /* ========================================
     SECTION 04 - PARK LIFE
     ======================================== */

  .park-brand {
    margin-bottom: 20px !important;
    font-size: 18px !important;
  }

  .park-title {
    font-size: 110px !important;
  }

  .section04.is-park-shift .park-title {
    font-size: 70px !important;
  }

  .park-desc-wrap {
    margin-top: 28px !important;
  }

  .park-desc {
    font-size: 17px !important;
  }

  .park-slidenav {
    bottom: 24px !important;
  }


  /* ========================================
     SECTION 05 - PREMIUM7
     930px 기준 캔버스를 낮은 높이에 맞게 축소
     ======================================== */

  .premium-track {
    transform-origin: left top !important;
  }

  .premium-intro {
    left: 82px !important;
    top: 175px !important;
  }

  .premium-eyebrow {
    font-size: 40px !important;
  }

  .premium-title {
    margin-top: 12px !important;
    font-size: 72px !important;
  }

  .premium-lead {
    margin-top: 15px !important;
    font-size: 16px !important;
  }


  /* P1 */
  .premium-item--1 {
    top: 540px !important;
  }

  .premium-item--1 .premium-thumb {
    width: 410px !important;
    height: 205px !important;
  }


  /* P2 */
  .premium-item--2 {
    left: 830px !important;
  }

  .premium-item--2 .premium-thumb {
    width: 410px !important;
    height: 540px !important;
  }


  /* P3 */
  .premium-item--3 {
    left: 1240px !important;
    top: 540px !important;
  }

  .premium-item--3 .premium-thumb {
    width: 440px !important;
    height: 205px !important;
  }


  /* P4 */
  .premium-item--4 {
    left: 1680px !important;
    top: 118px !important;
  }

  .premium-item--4 .premium-thumb {
    width: 410px !important;
    height: 422px !important;
  }


  /* P5 */
  .premium-item--5 {
    left: 2090px !important;
    top: 540px !important;
  }

  .premium-item--5 .premium-thumb {
    width: 336px !important;
    height: 205px !important;
  }


  /* P6 */
  .premium-item--6 {
    left: 2570px !important;
    top: 260px !important;
  }

  .premium-item--6 .premium-thumb {
    width: 333px !important;
    height: 280px !important;
  }


  /* P7 */
  .premium-item--7 {
    left: 2903px !important;
    top: 540px !important;
  }

  .premium-item--7 .premium-thumb {
    width: 498px !important;
    height: 277px !important;
  }


  /* 캡션 */
  .premium-item--1 .premium-caption {
    left: calc(100% + 38px) !important;
  }

  .premium-item--2 .premium-caption {
    left: calc(100% + 38px) !important;
    bottom: 38px !important;
  }


  .premium-item--4 .premium-caption {
    left: calc(100% + 38px) !important;
    top: 270px !important;
  }

  .premium-item--5 .premium-caption {
    right: calc(100% + 38px) !important;
    top: 55px !important;
  }

  .premium-item--6 .premium-caption {
    left: calc(100% + 38px) !important;
  }

  .premium-item--3 .premium-caption {
    right: calc(100% + 34px) !important;
  }

  .premium-item--7 .premium-caption {
    right: calc(100% + 38px) !important;
  }

  .premium-label {
    font-size: 24px !important;
  }

  .premium-desc {
    margin-top: 16px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }

  .premium-desc-sub {
    font-size: 12px !important;
  }


  /* ========================================
     SECTION 06 - CONTACT
     ======================================== */

  .contact-inner {
    padding-top: 84px !important;
    padding-bottom: 24px !important;
  }

  .contact-head {
    margin-top: 0 !important;
  }

  .contact-eyebrow {
    margin-top: 0 !important;
    font-size: 16px !important;
  }

  .contact-title {
    margin-top: 7px !important;
    font-size: 44px !important;
  }

  .contact-maps {
    width: min(1080px, 88vw) !important;
    gap: 50px !important;
    margin-top: 25px !important;
  }

  .contact-map {
    width: 460px !important;
  }

  .contact-map-frame {
    width: 460px !important;
  }

  .contact-map-frame img {
    width: 460px !important;
    height: auto !important;
  }

  .contact-map-caption {
    margin-top: 14px !important;
    font-size: 14px !important;
  }

  .contact-map-buttons {
    margin-top: 14px !important;
  }

  .contact-btn {
    width: 165px !important;
    min-width: 165px !important;
    height: 42px !important;
    font-size: 13px !important;
  }
}



