/* Third-party font sources and licenses:
   - Noto Sans: SIL Open Font License 1.1 (https://openfontlicense.org)
   - Material Symbols Outlined: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
*/
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 100 900;
    src: url('fonts/noto-sans-vf.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/material-symbols-outlined.ttf') format('truetype');
    font-display: block;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}

/* ==========================================================================
   0) Design Tokens
   ========================================================================== */
:root {
    --primary: #94a37e;
    --secondary: #8b8fc6;
    --text-gray: #454653;
    --bg-light-blue: #f0f4f9;
    --border-color: #e3e1eb;
    --mobile-close-btn-w: 48px;
    --mobile-close-btn-h: 48px;
    --mobile-close-icon-size: clamp(28px, 3.6vw, 34px);
}


/* ==========================================================================
   1) Base / Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: #1a1b22;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   2) Header / Navigation
   ========================================================================== */
.main-header {
    width: 100%;
    min-height: 110px;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;

    display: flex;
    align-items: center;
    padding-top: 0px;
}

/* GNB - 드롭다운 */
.gnb > ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.gnb > ul > li {
    position: static;
}

.gnb > ul > li > a {
    display: flex;
    align-items: center;
    height: 110px;
    padding: 0 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    color: #1a1b22;
    transition: color 0.2s;
    gap: 6px;
    white-space: nowrap;
    position: relative;
}

.gnb > ul > li.has-dropdown > a::after {
    content: '▾';
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.2s, opacity 0.2s;
}

.gnb > ul > li > a::before {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.gnb > ul > li:hover > a {
    color: #94a37e;
}

.gnb > ul > li:hover > a::before,
.gnb > ul > li.has-dropdown.is-open > a::before {
    transform: scaleX(1);
}

.gnb > ul > li:hover > a::after,
.gnb > ul > li.has-dropdown.is-open > a::after {
    opacity: 1;
    transform: rotate(180deg);
}

.gnb > ul > li > a.active {
    color: var(--secondary);
    font-weight: 600;
}

/* 2. 드롭다운 패널 */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e6e9f2;
    border-bottom: 1px solid #dfe4ef;
    box-shadow: 0 18px 36px rgba(8, 24, 64, 0.08);
    padding: 34px 0 42px;
    z-index: 999;
}

/* 마우스 올리면 드롭다운 표시 */
.gnb > ul > li.has-dropdown:hover .dropdown {
    display: block;
}

/* 3. 내부 콘텐츠 위치 */
.dropdown .dropdown-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
}

.dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 로고(151px) + gap(40px) 기준으로 메뉴 항목 위치에 정렬 */
.gnb > ul > li:nth-child(1) .dropdown ul {
    margin-left: calc(151px + 40px + 22px);
}

.gnb > ul > li:nth-child(2) .dropdown ul {
    margin-left: calc(151px + 40px + 260px);
}

.dropdown a {
    display: block;
    padding: 2px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    letter-spacing: -0.2px;
}

.dropdown a:hover,
.dropdown a.active {
    color: var(--primary);
    font-weight: 700;
    background: none;
    transform: translateX(4px);
}

.btn-lang {
    background: #fff;
    color: #4a4a4a;
    border: 1px solid #e2e5ea;
    padding: 8px 22px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
    transition: box-shadow 0.2s;
    margin-left: auto;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   3) Sub Visual / Breadcrumb
   ========================================================================== */
.pt-header {
    padding-top: 0;
}

.sub-visual {
    background: linear-gradient(135deg, #bbcaa6 100%);
    padding: 18px 0;
    color: #444444;
    overflow: visible;
}

.sub-visual .container {
    position: relative;
}

@media (min-width: 1300px) {
    .sub-visual .container {
        padding-left: 50px;
        padding-right: 50px;
    }
    main.center-intro-page .sub-visual .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.sub-visual-deco {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(35%);
    height: 160px;
    width: auto;
    z-index: 10;
    pointer-events: none;
}


.sub-visual .breadcrumb {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #444444;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.css-home {
    display: inline-block;
    width: clamp(14px, 1.5vw, 18px);
    height: clamp(14px, 1.5vw, 18px);
    position: relative;
    flex-shrink: 0;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("/common/images/en/top_banner_home2.svg");
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.sub-visual h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 7px;
    letter-spacing: -1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.sub-visual .sub-text {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
}

/* ==========================================================================
   4) Common Spacing / Section Title
   ========================================================================== */
.py-content { padding: 40px 0 50px; }
.py-80      { padding: 40px 0 50px; }
.content-offset { margin-top: 0; }

.section-title { margin-bottom: 48px; }

.section-title .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
}

.section-title h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* ==========================================================================
   5) Page Blocks (Desktop-First)
   ========================================================================== */
.section-group {
    margin-bottom: 60px;
    padding-left: 150px;
}

.content-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.office-item h3 {
    font-size: 22px;
    color: #0a0a0a;
    margin-bottom: 4px;
    font-weight: 700;
}

.office-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;

}

/* 7. 지도 */
.map-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.map-box {
    background: none;
    border-radius: 30px;
    overflow: hidden;
    padding: 0px;
    max-width: 900px;
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid #eef2f8;
}

.map-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

/* 8. Offices */
.shelter-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-left: 150px;
}

.badge-row {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.orange { background: #fb923c; }
.dot.purple { background: var(--secondary); }
.dot.navy   { background: var(--primary); }

.shelter-group-colored .dot.orange { background: #fb923c; }
.shelter-group-colored .dot.purple { background: #4cae72; }
.shelter-group-colored .dot.navy { background: #2563eb; }

.shelter-category-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.section-group .content-title,
.shelter-container .shelter-category-title {
    color: #0a0a0a;
}

.shelter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.shelter-card {
    display: flex;
    gap: 20px;
    padding: 10px;
    align-items: flex-start;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap span { color: var(--primary); font-size: 24px; }

.text-wrap h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.text-wrap p { font-size: 13px; color: var(--text-gray); }

.mission-statement {
    display: block;
    text-align: center;
    padding: 24px 0 60px;
    width: 100%;
    margin-top: 0;
}

.mission-statement p {
    font-size: 24px;
    font-weight: 600;
    color: #1a1b22;
    line-height: 1.6;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin: 0 auto;
}

        .pillar-wrapper {
            position: relative;
            margin-bottom: 30px;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
        }

        .pillar-header-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            position: relative;
            z-index: 2;
        }

        .pillar-header-item {
            border: 9px solid #e5bb94;
            border-radius: 45px;
            padding: 0 20px;
            text-align: center;
            background: #fff;
            margin: 0 4px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);

            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 110px;
        }

        .pillar-header-item.center {
            border-color: #94a37e;
        }

        .pillar-header-row > div:nth-child(3) {
            border-color: #91b6d3;
        }

        .pillar-header-item h4 {
            font-size: 20px;
            font-weight: 800;
            color: #e5bb94;
            line-height: 1.4;
            margin: 0;
        }

        .pillar-header-item.center h4 {
            color: #94a37e;
        }

        .pillar-header-row > div:nth-child(3) h4 {
            color: #91b6d3;
        }

        .pillar-connector {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: none;
            background: #dbdbdb;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 400;
            color: #ffffff;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            z-index: 3;
        }
        .pillar-connector.c1 { left: 33.333%; }
        .pillar-connector.c2 { left: 66.666%; }

        .pillar-body-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin-top: -50px;
            position: relative;
            z-index: 1;
        }

        .pillar-body-item {
            border: 2px dashed #e5bb94;
            border-radius: 55px;
            padding: 70px 24px 28px;
            background: #fff;
            margin: 0 18px;
            min-height: 280px;
        }

        .pillar-body-item.center {
            border-color: #94a37e;
        }

        .pillar-body-row > div:nth-child(3) {
            border-color: #91b6d3;
        }

        .pillar-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pillar-list li {
            font-size: 13.5px;
            color: #454653;
            padding-left: 14px;
            position: relative;
            line-height: 1.5;
        }

        .pillar-list li::before {
            content: '·';
            position: absolute;
            left: 0;
            font-size: 18px;
            color: #888;
            line-height: 1.2;
        }

        .ci-section {
            padding: 20px 0 80px;
        }

        .ci-section-header {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0px;
            margin-bottom: 28px;
        }

        .ci-logo-small {
            display: block;
            width: 54px;
            height: auto;
        }

        .ci-section-title {
            font-size: 26px;
            font-weight: 600;
            color: #1a1b22;
            margin: 0;
        }

        .ci-card {
            display: flex;
            align-items: stretch;
            background: #f9f9fb;
            border: 1px solid #e3e1eb;
            border-radius: 16px;
            overflow: hidden;
        }

        .ci-logo-box {
            width: 320px;
            flex-shrink: 0;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            border-right: 1px solid #e3e1eb;
        }

        .ci-logo-box img {
            max-width: 180px;
            height: auto;
        }

        .ci-desc-box {
            padding: 36px 40px;
            flex: 1;
            display: flex;
            align-items: center;
        }

        .ci-desc-box p {
            font-size: 14px;
            color: #454653;
            line-height: 1.8;
            margin: 0;
        }

/* 10. Organization Chart */
.org-container { display: flex; flex-direction: column; align-items: center; width: 100%; }
.org-top-scale {
    --org-top-width: 520px;
    --org-top-height: 360px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.org-top-inner {
    width: var(--org-top-width);
}

.node-wrapper { display: flex; flex-direction: column; align-items: center; position: relative; width: 100%; }

.line-v-50 { width: 0; height: 50px; border-left: 1.5px dashed #ccd2e3; background: none; }
.line-v-60 { width: 0; height: 60px; border-left: 1.5px dashed #ccd2e3; background: none; }
.line-v-100 { width: 0; height: 100px; border-left: 1.5px dashed #ccd2e3; background: none; }

.org-node { display: flex; align-items: center; justify-content: center;
    text-align: center; font-weight: 700; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #fff; }
.node-master { background: linear-gradient(135deg, #e5bb94, #d4a87a);
    color: #fff; width: 270px; height: 90px; font-size: 25px; border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;}
.node-secretary { background: linear-gradient(135deg, #91b6d3, #7aa4c4);
    color: #fff; width: 270px; height: 90px; font-size: 23px; border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;}

/* 영역 정렬 */
/*  영역 전체 */
.committee-area {
    height: 100px;
    position: relative;
    display: flex;
    justify-content: center;
}

/* 그룹 (수평 정렬) */
.committee-group {
    display: flex;
    align-items: center;
    position: absolute;
    left: calc(50% + 1px);
    top: 20%;
    transform: translateY(-50%);
    z-index: 10;
}

/* 1. 중앙 수직선에서 첫 번째 박스로 가는 점선 */
.committee-group::before {
    content: '';
    width: 40px;
    height: 1px;
    border-top: 1.5px dashed #ccd2e3;
    display: block;
}

/* 2. 박스 사이의 점선 */
.connector-dashed-mid {
    width: 25px;
    height: 1px;
    border-top: 1.5px dashed #ccd2e3;
    flex-shrink: 0;
}

/* 위원회 노드 디자인 */
.node-committee {
    width: 130px;
    height: 65px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
    color: #555;
    line-height: 1.2;
}
/* --- 하단  --- */
.team-layout-wrapper { position: relative; width: 100%; max-width: 1050px; display: flex; flex-direction: column; align-items: center; --team-card-width: 230px; --team-gap: 25px; }
.horizontal-branch-line { position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: calc(var(--team-card-width) + var(--team-gap)); height: 0; border-top: 1.5px dashed #ccd2e3; background: none; }

.team-row { display: flex; justify-content: center; width: 100%; gap: var(--team-gap); }
.team-item { position: relative; padding-top: 50px; }
.team-item::before { content: ''; position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: 0; height: 48px; border-left: 1.5px dashed #ccd2e3; background: none; }

.team-row:not(.bottom-row) .team-item:first-child::before {
    top: 2px; left: 50%; transform: none;
    width: calc(var(--team-card-width) + var(--team-gap)); height: 48px;
    border-left: 1.5px dashed #ccd2e3;
    border-top: 1.5px dashed #ccd2e3;
    border-top-left-radius: 12px;
    background: none;
}
.team-row:not(.bottom-row) .team-item:last-child::before {
    top: 2px; left: auto; right: 50%; transform: none;
    width: calc(var(--team-card-width) + var(--team-gap)); height: 48px;
    border-right: 1.5px dashed #ccd2e3;
    border-top: 1.5px dashed #ccd2e3;
    border-top-right-radius: 12px;
    background: none;
}
.team-row:not(.bottom-row) .team-item:nth-child(2)::before { top: 2px; height: 48px; }
.team-row:not(.bottom-row) .team-item:nth-child(3)::before { display: none; }
.bottom-row { margin-top: 8px; }
.bottom-row .team-item::before { top: -161px; height: 209px; }
.team-card { background: #fff; border: 2px solid #91b6d3; border-radius: 40px; width: var(--team-card-width); height: 105px; display: flex; align-items: center; justify-content: center; padding: 15px; box-shadow: 0 6px 16px rgba(128, 128, 128, 0.28); }
.team-card p { color: #5a90b5; font-size: 20px; font-weight: 700; text-align: center; line-height: 1.3; }
/* 11. 연혁 타임라인 */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 8px 0;
    border-left: 3px solid #c8d6e0;
    margin-left: 80px;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 6px;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #aab8c3;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c8d6e0, 0 4px 10px rgba(47, 47, 47, 0.5);
}

.timeline-item .year {
    font-size: 30px;
    font-weight: 700;
    color: #94a37e;
    display: block;
    margin-bottom: 6px;
}

.timeline-item ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-item ul li {
    font-size: 15px;
    color: var(--text-gray);
    padding-left: 12px;
    position: relative;
}

.timeline-item ul li::before {
    content: '—';
    position: absolute;
    left: -4px;
    color: var(--border-color);
}

/* 12. Greetings */
.greetings-section {
    display: flex;
    gap: 60px;
    padding: 40px 24px 80px;
    align-items: flex-start;
}

.profile-img {
    flex-shrink: 0;
    width: 240px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light-blue);
}

.profile-img img { width: 100%; height: 100%; object-fit: cover; }

.greeting-content { flex: 1; padding-top: 8px; }

.greeting-content h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.greeting-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-box {
    background: var(--bg-light-blue);
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    font-style: italic;
    color: var(--primary);
    margin: 24px 0;
    line-height: 1.7;
}


/* 1. History 상단 탭  */
.history-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 60px;
    border: 1px solid var(--border-color);
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.22s ease, box-shadow 0.22s ease;
    margin-top: 12px;
    text-decoration: none;
}

.tab-btn:hover {
    transform: translateY(-1px);
}

.tab-btn:first-child { border-radius: 50px 0 0 50px; }
.tab-btn:last-child { border-radius: 0 50px 50px 0; border-left: none; }

.tab-btn.active {
    background: #e5bb94;
    color: #fff;
    border-color: #e5bb94;
    box-shadow: 0 8px 18px rgba(95, 95, 95, 0.455);
    margin-top: 12px;
}

.history-panels {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.history-panel {
    display: none;
}

.history-panel.is-active {
    display: block;
    animation: historyPanelIn 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes historyPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. 타임라인 부제목(월) 강조 */
.timeline-item ul li strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    margin-top: 5px;
}

.timeline-item ul li {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* 13. 푸터 */
.main-footer {
    background: #fff;
    margin-top: 0;
    padding: 20px 0;
    border-top: 1px solid #bababa;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 왼쪽 정보 영역 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* 주소 및 연락처 텍스트 */
.footer-address {
    font-size: 14px;
    color: #1a1b22;
    line-height: 1.8;
}

.footer-address p {
    margin: 0;
}

.footer-address span {
    margin-right: 25px;
}

.footer-address .copyright {
    color: #1a1b22;
}

/* 오른쪽 로고 영역 */
.footer-right .footer-logo img {
    width: 170px;
    height: auto;
    transform: translate(35px, 8px);
}

/* 메인 전용 스타일 */
.main-visual {
    background: #fcf7de;
    padding: 0;
    color: #1a1b22;
    overflow: visible;
}

.visual-inner {
    display: flex;
    align-items: flex-end;
    gap: 4vw;
    position: relative;
    padding-left: max(1.85vw, calc((100% - 1300px) / 2 + 1.85vw));
}

.visual-text {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 4vw;
    padding-bottom: 4vw;
    z-index: 2;
}

.visual-text h2 {
    font-size: 3.2vw;
    font-weight: 580;
    margin-bottom: 1.6vw;
    line-height: 1.2;
    word-break: keep-all;
}

.visual-text p {
    font-size: 1.2vw;
    opacity: 0.8;
    word-break: keep-all;
}

/* 이미지 위치 및 정렬 */
.visual-graphic {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: flex-end;
}


.visual-graphic img {
    width: 110%;
    max-width: none;
    margin-left: -10%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}


/* 하단 비즈니스 섹션 타이틀 */
.main-section-title {
    text-align: center;
    margin-bottom: 48px;
}

.main-section-title h3 {
    font-size: 38px;
    color: #ff8a3d;
    font-weight: 600;
    margin-bottom: 5px;
}

/* 1. 4개를 가로로 나란히 세우는 부모 박스 */
.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    align-items: flex-start;
    justify-items: center;
    justify-content: center;
    column-gap: 45px;
    row-gap: 0px;
    margin: 0 auto;
}

/* 2. 개별 아이템 박스 (아이콘 + 글자) */
.business-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    text-align: left;
    min-width: 0;
}

/* 3. 아이콘 이미지 크기 고정 */
.biz-icon {
    width: 100%;
    max-width: 210px;
    height: 180px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-end;
}

.biz-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}


/* Business at a glance - 살짝 위로 */
.business-grid .business-item:nth-child(1) .biz-icon img {
    transform: translateY(-14px);
}

/* Policy education - 살짝 위로 */
.business-grid .business-item:nth-child(2) .biz-icon img {
    transform: translateY(-36px) scale(1.05);
}

/* Occupational safety - 살짝 위로 */
.business-grid .business-item:nth-child(3) .biz-icon img {
    transform: translateY(-25px);
}

/* Emotional labor - 살짝 아래로 */
.business-grid .business-item:nth-child(4) .biz-icon img {
    transform: translateY(-5px);
}

/* 4. 제목과 본문 스타일 */
.business-item h4 {
    font-size: 22px;
    font-weight: 500;
    color: #1a1b22;
    margin-bottom: 15px;
}

.business-item p {
    font-size: 15px;
    color: #5e5e5e;
    line-height: 1.6;
    word-break: keep-all;
    width: 100%;
}

@media (max-width: 1280px) and (min-width: 1017px) {
    .business-grid {
        grid-template-columns: repeat(2, minmax(260px, 320px));
        justify-content: center;
        gap: 48px clamp(28px, 6vw, 96px);
        padding: 0 24px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   6) Responsive
   ========================================================================== */
/* 6-1) <= 1016px */
@media (max-width: 1016px) {
    .main-header {
        min-height: 110px;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 28px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .logo {
        order: 1;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
        padding-top: 0;
    }

    .logo a {
        transform: none;
        justify-content: center;
    }

    .logo img {
        width: min(148px, 34vw);
        height: auto;
        display: block;
    }

    .btn-lang {
        order: 2;
        flex: 0 0 auto;
        margin-top: 8px;
    }

    .gnb {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .gnb > ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 10px;
    }

    .gnb > ul > li > a {
        height: auto;
        padding: 8px 18px;
    }

    .gnb > ul > li {
        position: static;
    }

    .dropdown {
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        min-width: 0;
        padding: 28px 0 34px;
        border-top: 1px solid #e6e9f2;
        border-bottom: 1px solid #dfe4ef;
        border-radius: 0;
        box-shadow: 0 18px 36px rgba(8, 24, 64, 0.08);
    }

    .business-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        justify-content: center;
        justify-items: center;
    }

    .section-group,
    .shelter-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pillar-header-item,
    .pillar-body-item {
        margin: 0;
    }

    .org-top-scale {
        --org-top-width: 520px;
        --org-top-height: 410px;
        --org-top-scale: min(1, calc((100vw - 40px) / var(--org-top-width)));
        height: calc(var(--org-top-height) * var(--org-top-scale));
        overflow: visible;
    }

    .org-top-inner {
        transform: scale(var(--org-top-scale));
        transform-origin: top center;
    }

    .committee-area {
        height: 120px;
        padding: 0;
    }

    .committee-area > .line-v-100 {
        height: 120px;
    }

    .committee-group {
        width: 0;
        height: 65px;
        position: absolute;
        left: 50%;
        top: 20%;
        transform: translate(-50%, -50%);
        display: block;
    }

    .committee-group::before,
    .connector-dashed-mid {
        display: none;
    }

    .committee-group .node-committee {
        position: absolute;
        top: 0;
    }

    .committee-group .node-committee:nth-of-type(1) {
        left: -174px;
    }

    .committee-group .node-committee:last-child {
        left: 44px;
    }

    .committee-group .node-committee::before {
        content: "";
        position: absolute;
        top: 50%;
        width: 44px;
        border-top: 1.5px dashed #ccd2e3;
    }

    .committee-group .node-committee:nth-of-type(1)::before {
        left: 100%;
    }

    .committee-group .node-committee:last-child::before {
        right: 100%;
    }

    .horizontal-branch-line {
        display: none;
    }

    .team-layout-wrapper {
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .team-row {
        width: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        justify-content: center;
    }

    .bottom-row {
        margin-top: 0;
    }

    .team-item {
        width: 100%;
        max-width: 320px;
        padding-top: 20px;
    }

    .team-card {
        position: relative;
        z-index: 1;
        height: auto;
        min-height: 92px;
    }

    .org-container .line-v-60 {
        display: block !important;
        height: 60px !important;
        width: 0 !important;
        border-left: 1.5px dashed #ccd2e3 !important;
    }

    .org-container .team-item::before,
    .org-container .team-row:not(.bottom-row) .team-item:last-child::before,
    .org-container .team-row:not(.bottom-row) .team-item:nth-child(2)::before,
    .org-container .team-row:not(.bottom-row) .team-item:nth-child(3)::before,
    .org-container .bottom-row .team-item::before {
        display: none !important;
        content: none !important;
        border: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }

    .org-container .team-row:not(.bottom-row) .team-item:first-child::before {
        display: block !important;
        content: '' !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 20px !important;
        border-left: 1.5px dashed #ccd2e3 !important;
        border-top: none !important;
        border-right: none !important;
        border-radius: 0 !important;
        background: none !important;
    }

    .greetings-section {
        padding: 72px 24px;
    }

    /* pillar 세로 전환 - 1016px 이하에서 적용 */
    .pillar-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .pillar-header-row,
    .pillar-body-row {
        display: contents;
    }

    .pillar-connector {
        position: static;
        transform: none;
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }
    .pillar-connector.c1 { order: 3; left: auto; }
    .pillar-connector.c2 { order: 6; left: auto; }

    .pillar-header-item,
    .pillar-body-item {
        margin: 0;
    }

    .pillar-header-item:nth-of-type(1) { border-color: #f1c7a0; }
    .pillar-header-item:nth-of-type(1) h4 { color: #f1c7a0; }
    .pillar-header-item:nth-of-type(2) { border-color: #94a37e; }
    .pillar-header-item:nth-of-type(2) h4 { color: #94a37e; }
    .pillar-header-item:nth-of-type(3) { border-color: #a1ccec; }
    .pillar-header-item:nth-of-type(3) h4 { color: #a1ccec; }

    .pillar-body-item {
        border: 2px solid #f1c7a0;
        border-radius: 20px;
        min-height: 0;
        padding: 20px 20px 22px;
    }

    .pillar-body-item.center { border-color: #94a37e; }
    .pillar-body-item:nth-of-type(3) { border-color: #a1ccec; }

    .pillar-header-item:nth-of-type(1) { order: 1; }
    .pillar-body-item:nth-of-type(1) { order: 2; }
    .pillar-header-item:nth-of-type(2) { order: 4; }
    .pillar-body-item:nth-of-type(2) { order: 5; }
    .pillar-header-item:nth-of-type(3) { order: 7; }
    .pillar-body-item:nth-of-type(3) { order: 8; }
}

/* 6-2) <= 900px */
@media (max-width: 900px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .sub-visual .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sub-visual .breadcrumb .css-home {
        width: 20px;
        height: 20px;
    }

    .pt-header {
        padding-top: 0;
    }

    .header-inner {
        gap: 18px 28px;
        padding-top: 30px;
        padding-bottom: 22px;
    }

    .gnb > ul {
        gap: 4px 0;
    }

    .dropdown .dropdown-inner {
        padding: 0 12px;
    }

    .sub-visual {
        padding: 19px 0;
    }

    .sub-visual h2 {
        font-size: 36px;
    }

    .sub-visual .sub-text {
        font-size: 16px;
    }

    .sub-visual-deco {
        height: 160px;
    }

    .main-section-title {
        margin-bottom: 50px;
    }

    .main-section-title h3 {
        font-size: 32px;
    }

    .mission-statement {
        padding: 5px 0 30px;
    }

    .mission-statement p {
        font-size: 22px;
    }


    .ci-card {
        flex-direction: column;
    }

    .ci-logo-box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e3e1eb;
    }

    .greetings-section {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 56px 24px;
    }

    .profile-col,
    .greeting-content {
        width: 100%;
        max-width: 720px;
    }

    .profile-img {
        width: 100%;
        max-width: 360px;
        height: auto;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
    }

    .signature {
        text-align: center;
    }

    .section-group,
    .map-section,
    .shelter-container {
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .shelter-grid {
        grid-template-columns: 1fr;
    }

    .history-tabs {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .tab-btn {
        flex: 1 1 220px;
        padding: 18px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        text-align: center;
    }

    .footer-right .footer-logo img {
        transform: none;
    }

    .footer-address span {
        display: block;
        margin-right: 0;
    }
}

/* 6-3) <= 768px */
@media (max-width: 768px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .pt-header {
        padding-top: 0;
    }

    .header-inner {
        gap: 12px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .logo {
        padding-top: 0;
    }

    .logo img {
        width: min(148px, 34vw);
    }

    .gnb > ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 0;
    }

    .gnb > ul > li > a {
        justify-content: center;
        font-size: 18px;
        padding: 8px 18px;
        height: auto;
    }

    .gnb > ul > li > a::before {
        left: 18px;
        right: 18px;
    }

    .dropdown {
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        min-width: 0;
        padding: 20px 0 24px;
    }

    .gnb > ul > li.has-dropdown.is-open .dropdown {
        display: block;
    }

    .dropdown a {
        font-size: 15px;
        padding: 5px 0;
    }

    .sub-visual {
        padding: 33px 0;
    }

    .main-footer {
        margin-top: 0;
    }

    .sub-visual h2 {
        font-size: 26px;
    }


    .business-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 420px;
        justify-items: center;
    }

    .business-item {
        width: 100%;
        max-width: 250px;
    }

    .biz-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .content-title,
    .shelter-category-title,
    .greeting-content h3,
    .ci-section-title {
        font-size: 24px;
    }

    .mission-statement p {
        font-size: 18px;
    }

    .ci-logo-box,
    .ci-desc-box {
        padding: 28px 20px;
    }

    .timeline {
        margin-left: 12px;
        gap: 28px;
    }

    .timeline-item {
        padding-left: 24px;
    }

    .map-box {
        border-radius: 20px;
    }

    .shelter-card {
        gap: 16px;
        padding: 0;
    }
}

/* 6-4) <= 480px (global tweaks) */
@media (max-width: 480px) {
    .main-section-title h3 {
        font-size: 28px;
    }

    .tab-btn {
        border-radius: 30px;
        margin-top: 0;
    }

    .tab-btn:last-child {
        border-left: 1px solid var(--border-color);
    }

    .quote-box {
        padding: 18px;
    }

    .footer-sns img {
        width: 48px;
    }
}

/* 6-5) <= 520px (history tabs only) */
@media (max-width: 520px) {
    .history-tabs {
        gap: 10px;
    }

    .history-tabs .tab-btn {
        flex: 1 1 100%;
        width: 100%;
        margin-top: 0;
        border-radius: 30px;
    }

    .history-tabs .tab-btn:last-child {
        border-left: 1px solid var(--border-color);
    }
}

.mobile-menu-toggle,
.mobile-menu-panel,
.mobile-menu-backdrop {
    display: none;
}

@media (max-width: 1016px) {
    .header-inner {
        position: relative;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 12px;
        min-height: 110px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .logo a {
        justify-content: center;
    }

    .logo img {
        width: auto;
        max-width: 100%;
    }

    .mobile-menu-toggle {
        order: 2;
        position: absolute;
        right: clamp(12px, 2vw, 24px);
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

    .gnb,
    .btn-lang {
        display: none;
    }

    .mobile-menu-toggle {
        width: 48px;
        height: 48px;
        border: none;
        background: #fff;
        border-radius: 10px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-menu-toggle:hover {
        box-shadow: 0 6px 16px rgba(9, 29, 88, 0.14);
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        background: #000;
        border-radius: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(6, 15, 43, 0.4);
        z-index: 1600;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1);
        display: block;
    }

    .mobile-menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: min(420px, 90vw);
        height: 100vh;
        background: #ffffff;
        border-left: 1px solid #e7ecf5;
        box-shadow: -10px 0 28px rgba(9, 29, 88, 0.18);
        transform: translateX(100%);
        transition: transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1700;
        display: block;
        overflow-y: auto;
    }

    .mobile-menu-panel.is-open {
        transform: translateX(0);
    }

    .mobile-menu-head {
        position: relative;
        height: 80px;
        padding: 0 8px 0 20px;
        margin-top: 18px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-bottom: none;
        margin-bottom: 18px;
    }

    .mobile-menu-lang {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 11px 26px;
        font-size: 15px;
        border-radius: 24px;
    }

    .mobile-menu-close {
        border: none;
        background: none;
        color: #273151;
        cursor: pointer;
        width: var(--mobile-close-btn-w);
        height: var(--mobile-close-btn-h);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        padding: 0;
        margin-right: -2px;
    }

    .mobile-menu-close .material-symbols-outlined {
        font-size: var(--mobile-close-icon-size);
        font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
        line-height: 1;
    }

    .mobile-gnb {
        list-style: none;
    }

    .mobile-parent-item {
        position: relative;
        opacity: 0;
        transform: translateX(26px);
        transition: opacity 0.34s ease, transform 0.34s ease;
    }

    .mobile-parent-item::after {
        content: '';
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
        height: 1px;
        background: #c8d2e3;
    }

    .mobile-menu-panel.is-open .mobile-parent-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(var(--item-index, 1) * 95ms);
    }

    .mobile-parent-button {
        width: 100%;
        border: none;
        background: #fff;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        font-size: 18px;
        font-weight: 550;
        color: #1a1b22;
        cursor: pointer;
    }

    .mobile-parent-button i {
        width: 10px;
        height: 10px;
        border-right: 2px solid #7d83a4;
        border-bottom: 2px solid #7d83a4;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .mobile-parent-item.is-open .mobile-parent-button {
        color: var(--primary);
    }

    .mobile-parent-item.is-open .mobile-parent-button i {
        transform: rotate(-135deg);
        border-color: var(--primary);
    }

    .mobile-submenu {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.46s cubic-bezier(0.22, 1, 0.36, 1);
        background: #f7f9fd;
    }

    .mobile-parent-item.is-open .mobile-submenu {
        max-height: 420px;
    }

    .mobile-submenu a {
        display: block;
        padding: 14px 28px;
        text-decoration: none;
        font-size: 15px;
        color: #44506d;
        font-weight: 500;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.34s ease, transform 0.34s ease;
    }

    .mobile-parent-item.is-open .mobile-submenu li a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--sub-item-index, 1) * 85ms);
    }

    .mobile-submenu a:hover,
    .mobile-submenu a.active {
        color: var(--primary);
        font-weight: 600;
        background: #edf3ff;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}

.legal-support-page {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.legal-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #f2f2f2;
}

.legal-tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 20px;
    border-left: 1px solid #fff;
    text-align: center;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    background: #f2f2f2;
    transition: all 0.2s ease;
}

.legal-tab-btn:first-child {
    border-left: none;
}

.legal-tab-btn.is-active {
    background: #fff;
    box-shadow: 0 4px 4px var(--biz-tab-shadow);
    outline: 1px solid var(--biz-tab-accent);
    outline-offset: -1px;
    font-size: 17px;
    font-weight: 700;
}

.legal-tab-btn:not(.is-active):hover {
    background: #fbfbfb;
    font-size: 17px;
    font-weight: 700;
    color: var(--biz-tab-accent);
}

@keyframes tab-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.legal-tab-btn.is-pulsing {
    animation: tab-pulse 0.4s ease;
}



.legal-tabs-toggle {
    display: none;
}

.breadcrumb-current-wrap {
    margin-left: 4px;
}

.legal-panels {
    display: block;
    width: 100%;
}

.legal-panel {
    display: none;
    width: 100%;
}

.legal-panel.is-active {
    display: block;
}

.legal-panel-intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.legal-panel-intro h3 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
    color: #0a0a0a;
}

.legal-panel-intro p {
    font-size: 17px;
    line-height: 1.6;
    color: #2d2d2d;
}

.legal-section-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.legal-section-mark {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.legal-section-mark i {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legal-section-mark i:nth-child(1) { background: #fb923c; }
.legal-section-mark i:nth-child(2) { background: #4cae72; }
.legal-section-mark i:nth-child(3) { background: #2563eb; }
.legal-section-mark i:nth-child(4) { display: none; }

.legal-section-heading h4 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
    color: #0a0a0a;
}

.legal-content-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-card {
    border: 1px dashed #d7d7d7;
    border-radius: 30px;
    background: #fff;
}

.legal-card-primary {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    padding: 24px;
}

.legal-card-body,
.legal-card-secondary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-card-body {
    padding: 8px 0;
}

.legal-card-secondary {
    padding: 24px 28px;
    border-radius: 28px;
}

.legal-card h5 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #2157bf;
}

.legal-bullet-list {
    margin: 0;
    padding-left: 18px;
    color: #232323;
}

.legal-bullet-list li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 2px;
}

.legal-bullet-list li:last-child {
    margin-bottom: 0;
}

.legal-bullet-list-plain {
    display: block;
}

.legal-support-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-support-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-support-block-main .legal-section-heading {
    margin-bottom: 8px;
}

.legal-support-block-table .legal-section-heading {
    margin-bottom: 8px;
}

.policy-education-page {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.policy-education-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.policy-education-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-education-block-main .legal-section-heading {
    margin-bottom: 8px;
}

.policy-education-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-education-copy p {
    font-size: 17px;
    line-height: 1.6;
    color: #0a0a0a;
}

.occupational-safety-page {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.occupational-safety-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.occupational-safety-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.occupational-safety-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.occupational-safety-grid {
    gap: 30px;
}

.occupational-safety-page .legal-card-body p,
.occupational-safety-page .legal-card-secondary p {
    font-size: 17px;
    line-height: 1.6;
    color: #0a0a0a;
}

.shelter-operation-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
}

.shelter-operation-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.shelter-operation-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.shelter-operation-table {
    border-top: 2px solid #003399;
}

.shelter-operation-table th:first-child,
.shelter-operation-table td:first-child {
    width: 16.6667%;
}

.shelter-operation-table th:nth-child(2),
.shelter-operation-table td:nth-child(2) {
    width: 41.6667%;
}

.shelter-operation-table th:nth-child(3),
.shelter-operation-table td:nth-child(3) {
    width: 41.6667%;
}

.shelter-operation-note {
    color: #626466;
    margin-top: 16px;
    margin-bottom: 16px;
}

.shelter-operation-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.shelter-operation-card {
    min-height: 100%;
    padding: 40px;
    border: 1px dashed #afafaf;
    border-radius: 40px;
    gap: 20px;
}

.shelter-operation-card h5 {
    color: #003399;
}

.shelter-operation-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.shelter-operation-copy p {
    font-size: 17px;
    line-height: 1.6;
    color: #0a0a0a;
}

.shelter-operation-bullet-list {
    margin: 0;
    color: #0a0a0a;
}

.shelter-operation-page .legal-panel-intro {
    margin-bottom: 0;
}

.emotional-labor-page {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.emotional-labor-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.emotional-labor-stack {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.emotional-labor-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.emotional-labor-summary {
    font-size: 17px;
    line-height: 1.6;
    color: #0a0a0a;
}

.emotional-labor-page .legal-card-body p {
    font-size: 17px;
    line-height: 1.6;
    color: #0a0a0a;
}

.emotional-labor-page .legal-card-body h5 {
    margin-bottom: 6px;
}

.emotional-labor-list-gap {
    margin-top: 16px;
}

.emotional-labor-table {
    border-top: 2px solid #003399;
}

.emotional-labor-col-zone {
    width: 14%;
}

.emotional-labor-col-area {
    width: 66%;
}

.emotional-labor-col-center {
    width: 20%;
}

.emotional-labor-table th:first-child,
.emotional-labor-table tbody td:first-child {
    width: 14%;
    border-right: 1px solid #d9d9d9;
}

.emotional-labor-table th:nth-child(2),
.emotional-labor-table tbody td:nth-child(2) {
    width: 66%;
    border-left: none;
}

.emotional-labor-table th:nth-child(3),
.emotional-labor-table tbody td:nth-child(3) {
    width: 20%;
}

.emotional-labor-note-list {
    margin-top: 8px;
}

.group-healing-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.group-healing-copy p {
    font-size: 17px;
    line-height: 1.6;
    color: #0a0a0a;
    width: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.group-healing-table th:first-child,
.group-healing-table td:first-child {
    width: 16.6667%;
}

.group-healing-table th:nth-child(2),
.group-healing-table td:nth-child(2) {
    width: 33.3333%;
}

.group-healing-table th:nth-child(3),
.group-healing-table td:nth-child(3) {
    width: auto;
}

.group-healing-table td {
    vertical-align: top;
}

.group-healing-table td:first-child,
.group-healing-table th:first-child {
    text-align: center;
}

.group-healing-table td:nth-child(2),
.group-healing-table td:nth-child(3) {
    text-align: left !important;
}

.group-healing-bullet-list {
    margin: 0;
    padding-left: 20px;
    min-width: 0;
}

.group-healing-bullet-list li {
    margin-bottom: 4px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.group-healing-bullet-list li:last-child {
    margin-bottom: 0;
}

.group-healing-details-cell {
    padding: 0 !important;
}

.group-healing-detail-split {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.group-healing-detail-split > div {
    flex: 1 1 0;
    padding: 20px 16px;
}

.group-healing-detail-split > div + div {
    border-top: 1px solid #d9d9d9;
}

.policy-education-list-gap {
    margin-top: 16px;
}

.legal-section-heading-tight {
    margin-bottom: 8px;
}

.legal-card-copy .legal-card-body {
    width: 100%;
    padding: 0;
}

.legal-note {
    font-size: 17px;
    line-height: 1.6;
    color: #414141;
}

.legal-eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.legal-eligibility-card {
    min-height: 100%;
    padding: 40px;
}

.legal-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legal-support-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    border-top: 2px solid rgba(0, 0, 0, 0.4);
    table-layout: fixed;
}

.legal-support-table th,
.legal-support-table td {
    padding: 18px 16px;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    vertical-align: middle;
    font-size: 17px;
    line-height: 1.6;
    color: #414141;
    text-align: left;
    font-weight: 400;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.legal-support-table th:first-child,
.legal-support-table td:first-child {
    border-left: none;
    text-align: center;
}

.legal-support-table thead th {
    color: #003399;
    text-align: center;
}

.legal-support-table tbody td:first-child {
    width: 18%;
    border-right: 1px solid #d9d9d9;
}

.legal-support-table tbody td:nth-child(2),
.legal-support-table tbody td:nth-child(3) {
    width: 41%;
    text-align: left !important;
}

.rights-relief-table tbody td:nth-child(2),
.rights-relief-table tbody td:nth-child(3) {
    text-align: left !important;
    vertical-align: top;
}

.rights-relief-left {
  text-align: left !important;
}

.rights-relief-complaint {
  text-align: left !important;
  padding-top: 34px !important;
}

.legal-support-table tbody td:nth-child(2) {
    border-left: none;
}

.legal-table-footnote {
    font-size: 17px;
    line-height: 1.6;
    color: #414141;
}

@media (max-width: 1300px) {
    .breadcrumb-current-wrap {
        display: none;
    }

    .legal-support-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .policy-education-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .occupational-safety-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .shelter-operation-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .emotional-labor-page {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 900px) {
    .legal-support-page {
        gap: 44px;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .legal-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-tab-btn:nth-child(odd) {
        border-left: none;
    }

    .legal-panel-intro {
        margin-bottom: 36px;
    }

    .legal-card-primary {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 24px;
    }

    .legal-eligibility-grid {
        grid-template-columns: 1fr;
    }

    .policy-education-page {
        gap: 44px;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .occupational-safety-page {
        gap: 44px;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .shelter-operation-page {
        gap: 44px;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .emotional-labor-page {
        gap: 44px;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1016px) {
    .legal-panel-intro {
        text-align: center;
        align-items: center;
    }

    .legal-section-heading {
        align-items: center;
        text-align: center;
    }

    .legal-card-primary,
    .legal-card-secondary {
        text-align: center;
        align-items: center;
    }

    .legal-card-primary {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .legal-card-body,
    .legal-card-secondary {
        width: 100%;
        align-items: center;
    }

    .legal-card h5 {
        width: 100%;
        text-align: center;
    }

    .legal-bullet-list {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .legal-note,
    .legal-table-footnote {
        text-align: center;
    }

    .legal-support-table th,
    .legal-support-table td {
        padding: 16px 14px;
        font-size: 15px;
        line-height: 1.55;
    }

    .policy-education-block {
        align-items: center;
        text-align: center;
    }

    .occupational-safety-page .legal-card-primary,
    .occupational-safety-page .legal-card-secondary {
        text-align: center;
        align-items: center;
    }

    .occupational-safety-page .legal-card h5,
    .occupational-safety-page .legal-card-body p,
    .occupational-safety-page .legal-card-secondary p {
        text-align: center;
    }

    .shelter-operation-page .legal-card-secondary,
    .shelter-operation-page .legal-card h5,
    .shelter-operation-copy p {
        text-align: center;
    }

    .shelter-operation-bullet-list {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .emotional-labor-summary {
        text-align: center;
    }

    .group-healing-copy {
        align-items: center;
        text-align: center;
    }

    .group-healing-copy p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .legal-support-page {
        gap: 36px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .policy-education-page {
        gap: 36px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .occupational-safety-page {
        gap: 36px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .shelter-operation-page {
        gap: 36px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .emotional-labor-page {
        gap: 36px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .sub-visual-deco {
        height: 75px;
        bottom: auto;
        top: 0;
        transform: translateY(50%);
    }

    .sub-visual:has(.sub-visual-deco) .breadcrumb,
    main.center-intro-page .sub-visual .breadcrumb {
        display: none;
    }

    .sub-visual:has(.sub-visual-deco) h2,
    main.center-intro-page .sub-visual h2 {
        font-size: 36px;
    }


    .legal-tabs {
        grid-template-columns: 1fr;
        position: relative;
        overflow: hidden;
        transition: max-height 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .legal-tab-btn {
        min-height: 72px;
        border-left: none;
        border-top: 1px solid #fff;
        font-size: 15px;
        justify-content: flex-start;
        padding-right: 72px;
        text-align: left;
        overflow: hidden;
        opacity: 1;
        transform: translateY(0);
        transition: max-height 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s ease, transform 0.46s ease, padding 0.46s ease, border-color 0.46s ease;
    }

    .legal-tab-btn:first-child {
        border-top: none;
    }

    .legal-tab-btn.is-active {
        order: -1;
    }

    .legal-tabs-toggle {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 72px;
        min-height: 72px;
        border: none;
        background: transparent;
        color: #001a8e;
        font-size: 34px;
        font-weight: 400;
        line-height: 1;
        cursor: pointer;
        transform: rotate(0deg);
        transition: transform 0.28s ease, color 0.2s ease;
    }

    .legal-tabs.is-expanded .legal-tabs-toggle {
        font-size: 38px;
        transform: rotate(45deg);
    }

    .legal-tabs:not(.is-expanded) .legal-tab-btn:not(.is-active) {
        max-height: 0;
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-top-color: transparent;
        opacity: 0;
        transform: translateY(8px);
        pointer-events: none;
    }

    .legal-tabs:not(.is-expanded) .legal-tab-btn.is-active {
        max-height: 72px;
        min-height: 72px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .legal-tabs.is-expanded .legal-tab-btn {
        max-height: 72px;
        min-height: 72px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding-right: 72px;
    }

    .legal-tabs:not(.is-expanded) .legal-tab-btn {
        transition-delay: 0s;
    }

    .legal-panel-intro {
        margin-bottom: 36px;
    }

    .legal-panel-intro h3 {
        font-size: 30px;
    }

    .legal-panel-intro p,
    .legal-bullet-list li {
        font-size: 15px;
    }

    .legal-section-heading h4 {
        font-size: 22px;
    }

    .legal-card-primary,
    .legal-card-secondary {
        padding: 24px;
        border-radius: 24px;
    }

    .legal-support-table th,
    .legal-support-table td {
        padding: 14px 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .group-healing-detail-split > div {
        padding: 16px 14px;
    }

    .group-healing-bullet-list {
        padding-left: 18px;
    }

    .shelter-operation-card-grid {
        grid-template-columns: 1fr;
    }
}

/* 6-6) <= 480px (business-intro subpages) */
@media (max-width: 480px) {
    .legal-support-page {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .policy-education-page {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .occupational-safety-page {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .shelter-operation-page {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .emotional-labor-page {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .legal-support-table th,
    .legal-support-table td {
        padding: 12px 10px;
        font-size: 13px;
        line-height: 1.45;
    }

    .group-healing-copy p,
    .group-healing-bullet-list li,
    .group-healing-detail-split > div {
        font-size: 13px;
        line-height: 1.45;
    }

    .group-healing-detail-split > div {
        padding: 12px 10px;
    }

    .group-healing-table {
        table-layout: auto;
        border-top: none;
    }

    .group-healing-table colgroup,
    .group-healing-table thead {
        display: none;
    }

    .group-healing-table,
    .group-healing-table tbody,
    .group-healing-table tr,
    .group-healing-table td {
        display: block;
        width: 100% !important;
    }

    .group-healing-table tbody {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .group-healing-table tr {
        border-top: 2px solid rgba(0, 0, 0, 0.4);
        border-bottom: 1px solid #d9d9d9;
    }

    .group-healing-table td {
        position: relative;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #d9d9d9;
        padding: 10px 10px 10px 110px;
        text-align: left !important;
        min-height: 44px;
    }

    .group-healing-table td:first-child {
        border-right: none;
    }

    .group-healing-table tr td:last-child {
        border-bottom: none;
    }

    .group-healing-table td::before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 88px;
        font-size: 12px;
        line-height: 1.4;
        font-weight: 700;
        color: #003399;
        content: "";
    }

    .group-healing-table td:nth-child(1)::before {
        content: "Program Name";
    }

    .group-healing-table td:nth-child(2)::before {
        content: "Objective";
    }

    .group-healing-table td:nth-child(3)::before {
        content: "Details";
    }

    .group-healing-details-cell {
        padding: 10px 10px 10px 110px !important;
    }

    .group-healing-detail-split {
        gap: 0;
    }

    .group-healing-detail-split > div {
        padding: 0;
    }

    .group-healing-detail-split > div + div {
        margin-top: 10px;
        padding-top: 10px;
    }

    .shelter-operation-copy p,
    .shelter-operation-bullet-list li {
        font-size: 13px;
        line-height: 1.45;
    }

    .shelter-operation-table {
        table-layout: auto;
        border-top: none;
    }

    .shelter-operation-table colgroup,
    .shelter-operation-table thead {
        display: none;
    }

    .shelter-operation-table,
    .shelter-operation-table tbody,
    .shelter-operation-table tr,
    .shelter-operation-table td {
        display: block;
        width: 100% !important;
    }

    .shelter-operation-table tbody {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .shelter-operation-table tr {
        border-top: 2px solid #003399;
        border-bottom: 1px solid #d9d9d9;
    }

    .shelter-operation-table td {
        position: relative;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #d9d9d9;
        padding: 10px 10px 10px 110px;
        text-align: left !important;
        min-height: 44px;
    }

    .shelter-operation-table td:first-child {
        border-right: none;
    }

    .shelter-operation-table tr td:last-child {
        border-bottom: none;
    }

    .shelter-operation-table td::before {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 88px;
        font-size: 12px;
        line-height: 1.4;
        font-weight: 700;
        color: #003399;
        content: "";
    }

    .shelter-operation-table td:nth-child(1)::before {
        content: "division";
    }

    .shelter-operation-table td:nth-child(2)::before {
        content: "Space Status";
    }

    .shelter-operation-table td:nth-child(3)::before {
        content: "Amenities";
    }
}

@media (max-width: 402px) {
    .sub-visual:has(.sub-visual-deco) h2,
    main.center-intro-page .sub-visual h2 {
        font-size: 30px;
        text-align: left;
    }

    .sub-visual:has(.sub-visual-deco),
    main.center-intro-page .sub-visual {
        padding: 40px 0;
    }
}

@media (max-width: 1016px) {
    .visual-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }

    .visual-text {
        width: 100%;
        padding-top: 41px;
        padding-bottom: 10px;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }

    .visual-text h2 {
        font-size: 44px;
        margin-bottom: 24px;
    }

    .visual-text p {
        font-size: 18px;
    }

    .visual-graphic {
        width: 100%;
    }

}

@media (min-width: 1017px) {
    .visual-text h2 {
        font-size: 44px;
        margin-bottom: 24px;
    }

    .visual-text p {
        font-size: 18px;
    }
}
.greeting-director-label {
    color: #888;
}

.greeting-highlight-title {
    color: #333;
    margin-bottom: 30px;
}

.quote-box-highlight {
    color: #606060;
    background: #fcf7de;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
/* Business introduction theme variables (banner/tab colors per page) */
main.business-introduction-page {
    --biz-banner-bg: #fcf7de;
    --biz-tab-accent: #001a8e;
    --biz-tab-shadow: rgba(0, 26, 142, 0.24);
}

main.business-introduction-page .py-content {
    padding-top: 40px;
    padding-bottom: 30px;
}

main.business-introduction-page .sub-visual {
    background: var(--biz-banner-bg, #fcf7de);
}

main.theme-legal-support {
    --biz-banner-bg: #fcf7de;
    --biz-tab-accent: #c9a830;
    --biz-tab-shadow: rgba(201, 168, 48, 0.24);
}

main.theme-policy-education {
    --biz-banner-bg: #e5bb94;
    --biz-tab-accent: #b57d40;
    --biz-tab-shadow: rgba(181, 125, 64, 0.24);
}

main.theme-occupational-safety {
    --biz-banner-bg: #94a37e;
    --biz-tab-accent: #607246;
    --biz-tab-shadow: rgba(96, 114, 70, 0.24);
}

main.theme-emotional-labor {
    --biz-banner-bg: #91b6d3;
    --biz-tab-accent: #4e8ab0;
    --biz-tab-shadow: rgba(78, 138, 176, 0.24);
}

main.theme-policy-education .legal-tab-btn.is-active,
main.theme-occupational-safety .legal-tab-btn.is-active,
main.theme-emotional-labor .legal-tab-btn.is-active {
    color: var(--biz-tab-accent);
}

main.theme-shelter-operation {
    --biz-banner-bg: #aaa7ce;
}

main.business-location-page .py-content.content-offset {
    padding-top: 40px;
    padding-bottom: 40px;
}

main.business-location-page .section-group {
    margin-bottom: 30px;
}

main.business-location-page .map-section {
    margin-bottom: 30px;
}

main.business-location-page .shelter-container {
    gap: 20px;
}

main.business-location-page .shelter-category-title {
    margin-bottom: 10px;
}

main.business-location-page .badge-row {
    margin-bottom: 8px;
}

main.business-location-page .office-info {
    gap: 12px;
}

main.business-location-page .shelter-grid {
    gap: 12px;
}

main.business-location-page .shelter-card .icon-wrap span,
main.business-location-page .shelter-card .text-wrap h4,
main.business-location-page .office-item h3 {
    color: #607246;
}

main.business-location-page .shelter-card .text-wrap h4 {
    font-weight: 700;
}

.vision-content {
    padding-top: 40px;
}

@media (max-width: 1200px) {
    main.business-location-page .section-group,
    main.business-location-page .map-section,
    main.business-location-page .shelter-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}
