/* =========================================================
   032 INCHEON SUB CSS
   File: /css/sub.css
   Version: 20260610_site032_sub_final01

   ---------------------------------------------------------
   Role
   ---------------------------------------------------------
   - common_top.php 전용 서브 레이아웃 CSS
   - common_top.php가 여는 site032-* 구조만 기준으로 정리
   - index.css와 충돌하는 구형 sub-content-* 임시 구조만 안전 차단
   - 좌측 LNB / 우측 콘텐츠 / 모바일 1단 레이아웃 고정

   ---------------------------------------------------------
   DOM 기준
   ---------------------------------------------------------
   body.page-sub.site032-sub-page.site032-sub-body
     header#siteHeader
     section.site032-sub-hero
     section.site032-sub-shell
       div.site032-sub-shell__inner
         div.site032-sub-mobile-nav
         aside.site032-sub-side
         div.site032-sub-content
           div.site032-sub-content-head
           main.site032-sub-content-main
             page content
     footer
========================================================= */


/* =========================================================
   00. BASE
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
}

body.site032-sub-page,
body.site032-sub-body {
    min-width: 320px;
    overflow-x: hidden;
    background: #f5f8fc;
    color: #17233b;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.035em;
}

body.site032-sub-page *,
body.site032-sub-body * {
    box-sizing: border-box;
}

body.site032-sub-page a,
body.site032-sub-body a {
    text-decoration: none;
}

body.site032-sub-page img,
body.site032-sub-body img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   01. SUB HERO
========================================================= */

body.site032-sub-page .site032-sub-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 360px;
    margin-top: 78px;
    overflow: hidden;
    background-color: #102653;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

body.site032-sub-page .site032-sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 28%, rgba(23, 100, 255, 0.26), transparent 34%),
        radial-gradient(circle at 80% 72%, rgba(23, 184, 151, 0.18), transparent 32%),
        linear-gradient(90deg, rgba(16, 38, 83, 0.98), rgba(16, 38, 83, 0.72));
    pointer-events: none;
}

body.site032-sub-page .site032-sub-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    border: 70px solid rgba(255, 255, 255, 0.045);
    pointer-events: none;
}

body.site032-sub-page .site032-sub-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 20px 76px;
    text-align: center;
}

body.site032-sub-page .site032-sub-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 0 0 22px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

body.site032-sub-page .site032-sub-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.085em;
}

body.site032-sub-page .site032-sub-hero__desc {
    max-width: 760px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.72;
    font-weight: 650;
    letter-spacing: -0.055em;
}


/* =========================================================
   02. SUB SHELL
========================================================= */

body.site032-sub-page .site032-sub-shell {
    position: relative;
    clear: both;
    width: 100%;
    padding: 74px 20px 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(23, 100, 255, 0.08), transparent 32%),
        radial-gradient(circle at 92% 20%, rgba(23, 184, 151, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

body.site032-sub-page .site032-sub-shell::before {
    content: "";
    position: absolute;
    left: -160px;
    top: 120px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(23, 100, 255, 0.045);
    pointer-events: none;
}

body.site032-sub-page .site032-sub-shell::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: 80px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(23, 184, 151, 0.05);
    pointer-events: none;
}

body.site032-sub-page .site032-sub-shell__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    width: min(1320px, 100%);
    margin: 0 auto;
    align-items: start;
}


/* =========================================================
   03. MOBILE SUB NAV
========================================================= */

body.site032-sub-page .site032-sub-mobile-nav {
    display: none;
}

body.site032-sub-page .site032-sub-mobile-nav__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

body.site032-sub-page .site032-sub-mobile-nav__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid #dfe9f7;
    border-radius: 18px;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    line-height: 1.28;
    font-weight: 850;
    letter-spacing: -0.045em;
    text-align: center;
    box-shadow: 0 12px 32px rgba(16, 38, 83, 0.06);
}

body.site032-sub-page .site032-sub-mobile-nav__item.is-active {
    border-color: rgba(23, 100, 255, 0.28);
    background: linear-gradient(135deg, #1764ff 0%, #102653 100%);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(23, 100, 255, 0.22);
}


/* =========================================================
   04. LEFT LNB
========================================================= */

body.site032-sub-page .site032-sub-side {
    position: relative;
    min-width: 0;
}

body.site032-sub-page .site032-sub-side__card {
    position: sticky;
    top: 104px;
    overflow: hidden;
    border: 1px solid rgba(223, 233, 247, 0.98);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(16, 38, 83, 0.11);
    backdrop-filter: blur(16px);
}

body.site032-sub-page .site032-sub-side__card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, #102653, #1764ff, #17b897);
}

body.site032-sub-page .site032-sub-side__head {
    padding: 34px 28px 24px;
    border-bottom: 1px solid #e5edf8;
    background:
        radial-gradient(circle at 88% 18%, rgba(23, 100, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

body.site032-sub-page .site032-sub-side__eyebrow {
    margin: 0 0 9px;
    color: #1764ff;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.site032-sub-page .site032-sub-side__title {
    margin: 0;
    color: #102653;
    font-size: 25px;
    line-height: 1.22;
    font-weight: 950;
    letter-spacing: -0.06em;
}

body.site032-sub-page .site032-sub-side__nav {
    display: grid;
    gap: 7px;
    padding: 18px;
}

body.site032-sub-page .site032-sub-side__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 0 17px 0 19px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: transparent;
    color: #475569;
    transition: 0.18s ease;
}

body.site032-sub-page .site032-sub-side__link:hover {
    border-color: #dbeafe;
    background: #eff6ff;
    color: #1d4ed8;
    transform: translateX(3px);
}

body.site032-sub-page .site032-sub-side__link.is-active {
    border-color: rgba(23, 100, 255, 0.24);
    background: linear-gradient(135deg, #1764ff 0%, #102653 100%);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(23, 100, 255, 0.22);
}

body.site032-sub-page .site032-sub-side__link-text {
    display: block;
    min-width: 0;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.045em;
}

body.site032-sub-page .site032-sub-side__link-icon {
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 900;
    opacity: 0.78;
}

body.site032-sub-page .site032-sub-side__link.is-active .site032-sub-side__link-icon {
    opacity: 1;
}

body.site032-sub-page .site032-sub-side__contact {
    margin: 0 18px 20px;
    padding: 22px 20px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(23, 184, 151, 0.28), transparent 36%),
        linear-gradient(135deg, rgba(16, 38, 83, 0.98), rgba(23, 100, 255, 0.92));
    color: #ffffff;
}

body.site032-sub-page .site032-sub-side__contact-label {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.1em;
}

body.site032-sub-page .site032-sub-side__contact-title {
    display: block;
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.045em;
}

body.site032-sub-page .site032-sub-side__contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #102653;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.035em;
}


/* =========================================================
   05. RIGHT CONTENT
========================================================= */

body.site032-sub-page .site032-sub-content {
    min-width: 0;
    width: 100%;
}

body.site032-sub-page .site032-sub-content-head {
    position: relative;
    overflow: hidden;
    margin-bottom: 34px;
    padding: 34px 38px 38px;
    border: 1px solid rgba(223, 233, 247, 0.98);
    border-radius: 34px;
    background:
        radial-gradient(circle at 96% 12%, rgba(23, 184, 151, 0.12), transparent 30%),
        radial-gradient(circle at 8% 90%, rgba(23, 100, 255, 0.10), transparent 34%),
        #ffffff;
    box-shadow: 0 24px 70px rgba(16, 38, 83, 0.09);
}

body.site032-sub-page .site032-sub-content-head::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -62px;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    border: 34px solid rgba(23, 100, 255, 0.055);
    pointer-events: none;
}

body.site032-sub-page .site032-sub-content-titlebox {
    position: relative;
    z-index: 1;
}

body.site032-sub-page .site032-sub-content-eyebrow {
    margin: 0 0 10px;
    color: #17b897;
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.site032-sub-page .site032-sub-content-title {
    margin: 0;
    color: #102653;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.075em;
}

body.site032-sub-page .site032-sub-content-desc {
    max-width: 720px;
    margin: 18px 0 0;
    color: #66758f;
    font-size: 17px;
    line-height: 1.78;
    font-weight: 650;
    letter-spacing: -0.045em;
}

body.site032-sub-page .site032-sub-content-main {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    min-width: 0;
}


/* =========================================================
   06. TEXT NAV
========================================================= */

body.site032-sub-page .site032-text-nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 750;
    letter-spacing: -0.025em;
}

body.site032-sub-page .site032-text-nav__link {
    color: #64748b;
    transition: 0.16s ease;
}

body.site032-sub-page .site032-text-nav__link:hover {
    color: #1764ff;
}

body.site032-sub-page .site032-text-nav__sep {
    color: #cbd5e1;
    font-size: 12px;
}

body.site032-sub-page .site032-text-nav__current {
    color: #1764ff;
    font-weight: 950;
}


/* =========================================================
   07. CONTENT COMMON CARD
========================================================= */

body.site032-sub-page .site032-section-card {
    overflow: hidden;
    border: 1px solid rgba(223, 233, 247, 0.98);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 22px 64px rgba(16, 38, 83, 0.08);
}

body.site032-sub-page .site032-section-card__inner {
    padding: 42px;
}

body.site032-sub-page .site032-placeholder-card {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 142px;
    padding: 36px 40px;
    border: 1px solid rgba(223, 233, 247, 0.98);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 22px 64px rgba(16, 38, 83, 0.08);
}

body.site032-sub-page .site032-placeholder-card__icon {
    position: relative;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
}

body.site032-sub-page .site032-placeholder-card__icon::before,
body.site032-sub-page .site032-placeholder-card__icon::after {
    content: "";
    position: absolute;
    left: 4px;
    width: 32px;
    height: 4px;
    border-radius: 999px;
    background: #1764ff;
}

body.site032-sub-page .site032-placeholder-card__icon::before {
    top: 10px;
}

body.site032-sub-page .site032-placeholder-card__icon::after {
    top: 24px;
    width: 24px;
}

body.site032-sub-page .site032-placeholder-card__title {
    margin: 0 0 8px;
    color: #102653;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.06em;
}

body.site032-sub-page .site032-placeholder-card__desc {
    margin: 0;
    color: #66758f;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: -0.04em;
}


/* =========================================================
   08. ABOUT SAFE CONTENT
   - /company/about.php 안전 본문용
========================================================= */

body.site032-sub-page .site032-about-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

body.site032-sub-page .site032-about-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    padding: 34px;
    border: 1px solid rgba(223, 233, 247, 0.98);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 22px 64px rgba(16, 38, 83, 0.08);
}

body.site032-sub-page .site032-about-card::before,
body.site032-sub-page .site032-about-card::after,
body.site032-sub-page .site032-about-content::before,
body.site032-sub-page .site032-about-content::after {
    content: none;
    display: none;
}

body.site032-sub-page .site032-about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    background: #eff6ff;
    color: #1d4ed8;
}

body.site032-sub-page .site032-about-icon svg {
    width: 28px;
    height: 28px;
}

body.site032-sub-page .site032-about-eyebrow {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

body.site032-sub-page .site032-about-body h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.055em;
}

body.site032-sub-page .site032-about-body p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 550;
    letter-spacing: -0.04em;
}


/* =========================================================
   09. OLD WRAPPER NEUTRALIZER
   ---------------------------------------------------------
   기존 자동 생성 about.php의 sub-content-* wrapper가 남아도
   site032 공통 서브틀을 다시 깨지 않도록 무력화한다.
========================================================= */

body.site032-sub-page .sub-content-main,
body.site032-sub-page .sub-content-section,
body.site032-sub-page .sub-content-inner {
    position: static;
    width: auto;
    max-width: none;
    min-width: 0;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

body.site032-sub-page .sub-content-main::before,
body.site032-sub-page .sub-content-main::after,
body.site032-sub-page .sub-content-section::before,
body.site032-sub-page .sub-content-section::after,
body.site032-sub-page .sub-content-inner::before,
body.site032-sub-page .sub-content-inner::after,
body.site032-sub-page .content-ready-card::before,
body.site032-sub-page .content-ready-card::after,
body.site032-sub-page .content-ready-icon::before,
body.site032-sub-page .content-ready-icon::after,
body.site032-sub-page .content-ready-body::before,
body.site032-sub-page .content-ready-body::after {
    content: none;
    display: none;
}

body.site032-sub-page .content-ready-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 34px;
    border: 1px solid rgba(223, 233, 247, 0.98);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 22px 64px rgba(16, 38, 83, 0.08);
}

body.site032-sub-page .content-ready-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    background: #eff6ff;
    color: #1d4ed8;
}

body.site032-sub-page .content-ready-icon svg {
    width: 28px;
    height: 28px;
}

body.site032-sub-page .content-ready-body h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: -0.055em;
}

body.site032-sub-page .content-ready-body p {
    margin: 10px 0 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 550;
    letter-spacing: -0.04em;
}


/* =========================================================
   10. SAFE GUARD
========================================================= */

body.site032-sub-page .site032-sub-content-main > * {
    max-width: 100%;
}

body.site032-sub-page .site032-sub-content-main img {
    max-width: 100%;
    height: auto;
}

body.site032-sub-page .site032-sub-content-main table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

body.site032-sub-page .site032-sub-content-main iframe,
body.site032-sub-page .site032-sub-content-main video {
    max-width: 100%;
}

body.site032-sub-page .site032-sub-content-main ul,
body.site032-sub-page .site032-sub-content-main ol {
    padding-left: 1.25em;
}

body.site032-sub-page footer,
body.site032-sub-page #footer,
body.site032-sub-page .site032-footer {
    position: relative;
    z-index: 10;
    clear: both;
}


/* =========================================================
   11. RESPONSIVE
========================================================= */

@media (max-width: 1080px) {
    body.site032-sub-page .site032-sub-hero {
        min-height: 320px;
    }

    body.site032-sub-page .site032-sub-shell {
        padding: 54px 18px 90px;
    }

    body.site032-sub-page .site032-sub-shell__inner {
        gap: 28px;
    }

    body.site032-sub-page .site032-sub-side__card {
        position: relative;
        top: auto;
    }

    body.site032-sub-page .site032-sub-content-head {
        padding: 32px 30px 36px;
    }
}

@media (max-width: 1023px) {
    body.site032-sub-page .site032-sub-shell__inner {
        display: block;
    }

    body.site032-sub-page .site032-sub-mobile-nav {
        display: block;
        margin-bottom: 24px;
    }

    body.site032-sub-page .site032-sub-side {
        display: none;
    }

    body.site032-sub-page .site032-sub-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body.site032-sub-page .site032-sub-hero {
        min-height: 300px;
        margin-top: 78px;
    }

    body.site032-sub-page .site032-sub-hero__inner {
        width: min(100%, calc(100% - 32px));
        padding: 62px 0 64px;
    }

    body.site032-sub-page .site032-sub-hero__eyebrow {
        min-height: 36px;
        margin-bottom: 18px;
        padding: 0 18px;
        font-size: 12px;
    }

    body.site032-sub-page .site032-sub-hero__title {
        font-size: 42px;
    }

    body.site032-sub-page .site032-sub-hero__desc {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.68;
    }

    body.site032-sub-page .site032-sub-shell {
        padding: 38px 16px 76px;
    }

    body.site032-sub-page .site032-sub-content-head {
        padding: 28px 24px 32px;
        border-radius: 28px;
    }

    body.site032-sub-page .site032-text-nav {
        margin-bottom: 20px;
        font-size: 12px;
    }

    body.site032-sub-page .site032-sub-content-title {
        font-size: 34px;
    }

    body.site032-sub-page .site032-sub-content-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    body.site032-sub-page .site032-placeholder-card,
    body.site032-sub-page .site032-about-card,
    body.site032-sub-page .content-ready-card {
        align-items: flex-start;
        padding: 28px 24px;
        border-radius: 26px;
    }

    body.site032-sub-page .site032-placeholder-card__title {
        font-size: 22px;
    }

    body.site032-sub-page .site032-section-card__inner {
        padding: 30px 24px;
    }
}

@media (max-width: 520px) {
    body.site032-sub-page .site032-sub-mobile-nav__grid {
        grid-template-columns: 1fr;
    }

    body.site032-sub-page .site032-sub-hero__title {
        font-size: 36px;
    }

    body.site032-sub-page .site032-sub-hero__desc {
        font-size: 15px;
    }

    body.site032-sub-page .site032-sub-content-head {
        padding: 26px 22px 30px;
    }

    body.site032-sub-page .site032-sub-content-title {
        font-size: 31px;
    }

    body.site032-sub-page .site032-placeholder-card,
    body.site032-sub-page .site032-about-card,
    body.site032-sub-page .content-ready-card {
        flex-direction: column;
        gap: 14px;
    }

    body.site032-sub-page .site032-section-card__inner {
        padding: 26px 20px;
    }
}

/* =========================================================
   HEADER LOGO SIZE FIX ONLY
   Version: 20260610_header_logo_only_fix01
   ---------------------------------------------------------
   - 히어로/서브틀/본문/푸터 건드리지 않음
   - 상단 GNB 로고 크기만 이전 정상 크기로 고정
========================================================= */

body.site032-sub-page #siteHeader a[aria-label="032인천기획 메인으로 이동"] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

body.site032-sub-page #siteHeader a[aria-label="032인천기획 메인으로 이동"] img {
    display: block !important;
    width: auto !important;
    height: 48px !important;
    max-width: 180px !important;
    max-height: 48px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    body.site032-sub-page #siteHeader a[aria-label="032인천기획 메인으로 이동"] img {
        height: 42px !important;
        max-width: 160px !important;
        max-height: 42px !important;
    }
}

/* =========================================================
   FOOTER LOGO / LAYOUT FIX ONLY
   Version: 20260610_footer_logo_layout_fix01
   ---------------------------------------------------------
   - 하단 푸터 로고 과대 출력 교정
   - 푸터 좌/중/우 3단 정렬 안정화
   - hero / sub shell / content / header 영향 없음
========================================================= */

body.site032-sub-page #footer,
body.site032-sub-page .site032-footer {
    position: relative !important;
    z-index: 30 !important;
    clear: both !important;
    background: #020817 !important;
    color: #ffffff !important;
    overflow: hidden !important;
}

/* 푸터 내부 폭/여백 정리 */
body.site032-sub-page #footer > div,
body.site032-sub-page .site032-footer > div {
    width: min(1320px, calc(100% - 80px)) !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 64px 0 34px !important;
}

/* 푸터 3단 grid 안정화 */
body.site032-sub-page #footer .grid,
body.site032-sub-page .site032-footer .grid {
    display: grid !important;
    grid-template-columns: 1.15fr 0.8fr 0.9fr !important;
    gap: 72px !important;
    align-items: start !important;
}

/* 푸터 로고 링크 */
body.site032-sub-page #footer a[aria-label="032인천기획 메인으로 이동"],
body.site032-sub-page .site032-footer a[aria-label="032인천기획 메인으로 이동"] {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 360px !important;
}

/* 핵심: 푸터 로고 크기 고정 */
body.site032-sub-page #footer a[aria-label="032인천기획 메인으로 이동"] img,
body.site032-sub-page .site032-footer a[aria-label="032인천기획 메인으로 이동"] img {
    display: block !important;
    width: auto !important;
    height: 120px !important;
    max-width: 360px !important;
    max-height: 120px !important;
    object-fit: contain !important;
}

/* 푸터 설명문 */
body.site032-sub-page #footer p,
body.site032-sub-page .site032-footer p {
    color: rgba(255, 255, 255, 0.78) !important;
    word-break: keep-all !important;
}

/* 푸터 좌측 설명문 폭 제한 */
body.site032-sub-page #footer .max-w-\[420px\],
body.site032-sub-page .site032-footer .max-w-\[420px\] {
    max-width: 460px !important;
    margin-top: 28px !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
    font-weight: 600 !important;
    letter-spacing: -0.045em !important;
}

/* 푸터 제목 */
body.site032-sub-page #footer h2,
body.site032-sub-page .site032-footer h2 {
    margin: 0 0 22px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
}

/* 푸터 리스트 */
body.site032-sub-page #footer ul,
body.site032-sub-page .site032-footer ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.site032-sub-page #footer li,
body.site032-sub-page .site032-footer li {
    margin: 0 0 12px !important;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    letter-spacing: -0.04em !important;
}

/* 푸터 contact 영역 */
body.site032-sub-page #footer a,
body.site032-sub-page .site032-footer a {
    color: rgba(255, 255, 255, 0.92) !important;
}

body.site032-sub-page #footer a:hover,
body.site032-sub-page .site032-footer a:hover {
    color: #ffffff !important;
}

/* copyright 라인 */
body.site032-sub-page #footer .border-t,
body.site032-sub-page .site032-footer .border-t {
    margin-top: 52px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

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

@media (max-width: 1024px) {
    body.site032-sub-page #footer > div,
    body.site032-sub-page .site032-footer > div {
        width: min(100% - 48px, 760px) !important;
        padding: 52px 0 30px !important;
    }

    body.site032-sub-page #footer .grid,
    body.site032-sub-page .site032-footer .grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    body.site032-sub-page #footer a[aria-label="032인천기획 메인으로 이동"] img,
    body.site032-sub-page .site032-footer a[aria-label="032인천기획 메인으로 이동"] img {
        height: 96px !important;
        max-width: 300px !important;
        max-height: 96px !important;
    }
}

@media (max-width: 640px) {
    body.site032-sub-page #footer > div,
    body.site032-sub-page .site032-footer > div {
        width: min(100% - 32px, 520px) !important;
        padding: 44px 0 28px !important;
    }

    body.site032-sub-page #footer a[aria-label="032인천기획 메인으로 이동"] img,
    body.site032-sub-page .site032-footer a[aria-label="032인천기획 메인으로 이동"] img {
        height: 76px !important;
        max-width: 240px !important;
        max-height: 76px !important;
    }

    body.site032-sub-page #footer .max-w-\[420px\],
    body.site032-sub-page .site032-footer .max-w-\[420px\] {
        margin-top: 22px !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
    }
}

/* =========================================================
   SUB CONTENT HEAD - COMPACT ONE LINE PATCH
   - COMPANY eyebrow 제거
   - 제목 + 설명을 과하지 않은 한 줄형으로 정리
   - 기존 breadcrumb 유지
========================================================= */
.site032-sub-content-titlebox--compact {
    margin-top: 16px;
}

.site032-sub-content-title--compact {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.site032-sub-content-title-main {
    display: inline-block;
    color: #10295f;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.045em;
}

.site032-sub-content-title-desc {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.site032-sub-content-title-desc::before {
    content: "·";
    display: inline-block;
    margin-right: 9px;
    color: #14b8a6;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

/* 기존 eyebrow/desc가 혹시 다른 CSS 영향으로 남는 경우 방지 */
.site032-sub-content-titlebox--compact .site032-sub-content-eyebrow,
.site032-sub-content-titlebox--compact .site032-sub-content-desc {
    display: none !important;
}

@media (max-width: 1024px) {
    .site032-sub-content-title-main {
        font-size: 28px;
    }

    .site032-sub-content-title-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .site032-sub-content-titlebox--compact {
        margin-top: 13px;
    }

    .site032-sub-content-title--compact {
        display: block;
        line-height: 1.28;
    }

    .site032-sub-content-title-main {
        display: block;
        font-size: 25px;
        line-height: 1.28;
    }

    .site032-sub-content-title-desc {
        display: block;
        margin-top: 7px;
        font-size: 14px;
        line-height: 1.45;
    }

    .site032-sub-content-title-desc::before {
        display: none;
    }
}


/* =========================================================
   032 GNB 1DEPTH FONT PATCH - FORCE
   - 중앙 1depth 메뉴 글자 강제 확대
   - a 내부 span까지 같이 적용
========================================================= */
.site032-header nav ul li > a,
.site032-header nav ul li > a *,
.site032-header .gnb ul li > a,
.site032-header .gnb ul li > a *,
.site032-header .nav ul li > a,
.site032-header .nav ul li > a *,
.site032-header .site032-gnb ul li > a,
.site032-header .site032-gnb ul li > a *,
.site032-header .site032-main-nav ul li > a,
.site032-header .site032-main-nav ul li > a *,
.site032-header .site032-header-nav ul li > a,
.site032-header .site032-header-nav ul li > a *,
.site032-header .site032-menu ul li > a,
.site032-header .site032-menu ul li > a * {
    font-size: 20px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.035em !important;
}

/* 우측 CTA 버튼 원복 */
.site032-header a[href*="contact"],
.site032-header a[href*="quote"],
.site032-header a[href*="estimate"],
.site032-header .site032-header-cta a,
.site032-header .site032-header-cta a *,
.site032-header .site032-btn,
.site032-header .site032-btn * {
    font-size: 16px !important;
    font-weight: 800 !important;
}