@charset "utf-8";

.hanho-content { max-width: 960px; margin: 0 auto; }
.hanho-content-wide { max-width: 1100px; margin: 0 auto; }

/* ===== 인사말 페이지 ===== */
.gc-ceo-page .gc-page-content { padding-top: 80px; }

.gc-ceo-section { margin-bottom: 72px; }

.gc-ceo-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 56px;
    align-items: start;
}

.gc-ceo-visual { position: relative; }

.gc-ceo-visual-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(21, 101, 192, 0.15);
    border: 1px solid #dbeafe;
}

.gc-ceo-visual-frame img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.gc-ceo-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    width: 96px;
    height: 96px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.gc-badge-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gc-badge-year {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
}

.gc-ceo-brand-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(13, 71, 161, 0.92);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.gc-ceo-content .gc-section-subtitle {
    text-align: left;
    margin-bottom: 12px;
}

.gc-ceo-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 28px;
    word-break: keep-all;
}

.gc-ceo-quote {
    margin: 0 0 28px;
    padding: 22px 24px 22px 28px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.85;
    color: var(--primary-dark);
}

.gc-ceo-message p {
    font-size: 16px;
    line-height: 1.95;
    color: var(--gray);
    margin-bottom: 18px;
}

.gc-ceo-message p strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.gc-ceo-sign {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e3eaf3;
    text-align: right;
}

.gc-sign-company {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 6px;
}

.gc-sign-name {
    font-size: 20px;
    color: var(--dark);
    margin: 0;
}

.gc-sign-name strong {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    margin-right: 8px;
}

.gc-ceo-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0 20px;
    border-top: 1px solid #e3eaf3;
}

.gc-ceo-value-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.05);
}

.gc-ceo-value-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 32px rgba(21, 101, 192, 0.12);
}

.gc-ceo-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    color: var(--primary);
    border-radius: 50%;
    font-size: 24px;
}

.gc-ceo-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.gc-ceo-value-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 992px) {
    .gc-ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gc-ceo-visual-frame img { height: 320px; }

    .gc-ceo-badge {
        left: auto;
        right: 20px;
        bottom: -20px;
    }

    .gc-ceo-values { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .gc-ceo-headline { font-size: 26px; }
    .gc-ceo-quote { font-size: 15px; padding: 18px 20px; }
    .gc-ceo-sign { text-align: left; }
}

.hanho-lead { font-size: 18px; line-height: 1.9; color: var(--dark); margin-bottom: 24px; }
.hanho-text { font-size: 16px; line-height: 1.9; color: var(--gray); margin-bottom: 18px; }

/* ===== 연혁 페이지 ===== */
.gc-history-page .gc-page-content { padding-top: 80px; padding-bottom: 100px; }

.gc-history-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    margin-bottom: 72px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e3eaf3;
}

.gc-history-intro-text .gc-section-subtitle { text-align: left; margin-bottom: 12px; }

.gc-history-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 20px;
    word-break: keep-all;
}

.gc-history-lead {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray);
    margin: 0;
    max-width: 520px;
}

.gc-history-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 280px;
}

.gc-history-stat {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gc-history-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(21, 101, 192, 0.12);
}

.gc-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.gc-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

.gc-history-timeline-wrap {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 8px 0 40px;
}

.gc-history-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    margin-left: -1.5px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border-radius: 3px;
    opacity: 0.35;
}

.gc-history-decade {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 48px 0 36px;
}

.gc-history-decade:first-child { margin-top: 0; }

.gc-decade-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 10px 28px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.25);
}

.gc-history-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    margin-bottom: 32px;
    align-items: start;
}

.gc-history-left .gc-history-marker { grid-column: 2; grid-row: 1; }
.gc-history-left .gc-history-card { grid-column: 1; grid-row: 1; margin-right: 24px; }

.gc-history-right .gc-history-marker { grid-column: 2; grid-row: 1; }
.gc-history-right .gc-history-card { grid-column: 3; grid-row: 1; margin-left: 24px; }

.gc-history-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 18px;
    z-index: 2;
}

.gc-history-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.15);
    flex-shrink: 0;
}

.gc-history-year {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

.gc-history-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gc-history-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 14px 40px rgba(21, 101, 192, 0.14);
}

.gc-history-events {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-history-events li + li {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed #e3eaf3;
}

.gc-history-events time {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: #e3f2fd;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.gc-history-events p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    margin: 8px 0 0;
    word-break: keep-all;
}

.gc-history-closing {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e3eaf3;
}

.gc-history-closing-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.2);
}

.gc-history-closing-inner i {
    font-size: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.gc-history-closing-inner p {
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.gc-history-closing-inner strong {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .gc-history-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gc-history-stats {
        min-width: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-history-line { left: 20px; margin-left: 0; }

    .gc-history-item {
        grid-template-columns: 40px 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .gc-history-left .gc-history-marker,
    .gc-history-right .gc-history-marker {
        grid-column: 1;
        grid-row: 1;
        flex-direction: row;
        gap: 10px;
        padding-top: 22px;
        align-items: center;
    }

    .gc-history-left .gc-history-card,
    .gc-history-right .gc-history-card {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }

    .gc-history-year { margin-top: 0; }

    .gc-history-closing-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .gc-history-stats { grid-template-columns: 1fr 1fr; }
    .gc-stat-num { font-size: 24px; }
    .gc-history-headline { font-size: 26px; }
}

/* ===== 조직도 페이지 ===== */
.gc-org-page .gc-page-content { padding-top: 80px; padding-bottom: 100px; }

.gc-org-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e3eaf3;
}

.gc-org-intro-text .gc-section-subtitle { text-align: left; margin-bottom: 12px; }

.gc-org-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
    margin: 0 0 20px;
    word-break: keep-all;
}

.gc-org-lead {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray);
    margin: 0;
    max-width: 520px;
}

.gc-org-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 280px;
}

.gc-org-stat {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gc-org-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(21, 101, 192, 0.12);
}

.gc-org-chart {
    position: relative;
    margin-bottom: 56px;
}

.gc-org-ceo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.gc-org-ceo {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 28px 56px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.25);
    min-width: 220px;
}

.gc-org-ceo-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 22px;
    color: var(--gold);
}

.gc-org-ceo-label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gc-org-ceo-sub {
    display: block;
    font-size: 13px;
    opacity: 0.85;
    margin-top: 6px;
}

.gc-org-connector--ceo {
    width: 3px;
    height: 36px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0.5;
    margin: 0 auto;
}

.gc-org-branches {
    position: relative;
    height: 24px;
    max-width: 920px;
    margin: 0 auto 8px;
}

.gc-org-branch-line {
    display: block;
    position: absolute;
    top: 0;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), var(--primary), var(--primary-light), transparent);
    opacity: 0.45;
}

.gc-org-branch-line::before,
.gc-org-branch-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 24px;
    background: var(--primary-light);
    opacity: 0.45;
}

.gc-org-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.gc-org-dept-card {
    position: relative;
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 0 0 20px;
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.gc-org-dept-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 16px 44px rgba(21, 101, 192, 0.14);
}

.gc-org-dept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
}

.gc-org-dept-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 20px 16px;
}

.gc-org-dept-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    color: var(--primary);
    border-radius: 12px;
    font-size: 20px;
}

.gc-org-dept-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 4px;
    line-height: 1.35;
    word-break: keep-all;
}

.gc-org-dept-head p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

.gc-org-dept-connector {
    width: 3px;
    height: 16px;
    background: var(--primary-light);
    opacity: 0.35;
    margin: 0 auto 12px;
}

.gc-org-team-list {
    list-style: none;
    padding: 0 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gc-org-team-list li span {
    display: block;
    background: #f8fbff;
    border: 1px solid #e3eaf3;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gc-org-dept-card:hover .gc-org-team-list li span {
    border-color: #dbeafe;
}

.gc-org-team-list li span:hover {
    background: #e3f2fd;
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.gc-org-legend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid #e3eaf3;
}

.gc-org-legend-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
    border: 1px solid #e3eaf3;
    border-radius: 14px;
    padding: 24px 22px;
}

.gc-org-legend-item i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: var(--gold);
    border-radius: 10px;
    font-size: 18px;
}

.gc-org-legend-item strong {
    display: block;
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.gc-org-legend-item p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 992px) {
    .gc-org-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gc-org-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gc-org-branches { display: none; }
    .gc-org-connector--ceo { display: none; }
    .gc-org-dept-connector { display: none; }

    .gc-org-legend { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .gc-org-grid { grid-template-columns: 1fr; }
    .gc-org-stats { min-width: 0; }
    .gc-org-headline { font-size: 26px; }
    .gc-org-ceo { padding: 24px 36px; min-width: 0; width: 100%; max-width: 320px; }
}

.hanho-branch-intro { text-align: center; margin-bottom: 32px; }
.hanho-branch-intro h2 { font-size: 24px; color: var(--primary); margin-bottom: 10px; }
.hanho-branch-intro p { color: var(--gray); }

.hanho-branch-map-wrap {
    margin-bottom: 36px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #dbeafe;
    box-shadow: 0 8px 32px rgba(21, 101, 192, 0.1);
    background: #fff;
}

.hanho-branch-map {
    width: 100%;
    height: 420px;
    background: #eef4fc;
    z-index: 1;
}

.hanho-branch-map-hint {
    margin: 0;
    padding: 12px 18px;
    font-size: 14px;
    color: var(--gray);
    background: #f8fbff;
    border-top: 1px solid #eef2f7;
    text-align: center;
}

.hanho-branch-map-hint i { color: var(--primary); margin-right: 6px; }

.hanho-map-marker { background: transparent; border: none; }
.hanho-map-marker-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.4);
}
.hanho-map-marker-pin i {
    transform: rotate(45deg);
    font-size: 16px;
}

.hanho-map-popup { min-width: 180px; line-height: 1.6; }
.hanho-map-popup strong { display: block; font-size: 15px; color: var(--primary-dark); margin-bottom: 6px; }
.hanho-map-popup p { margin: 0 0 4px; font-size: 13px; color: #555; }
.hanho-map-popup a {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.hanho-branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hanho-branch-card {
    display: block;
    width: 100%;
    text-align: left;
    border: 2px solid #dbeafe;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.hanho-branch-card:hover:not(.is-disabled) {
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.12);
}

.hanho-branch-card.is-active {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(21, 101, 192, 0.18);
}

.hanho-branch-card.is-disabled {
    cursor: not-allowed;
    opacity: 0.65;
    background: #fafafa;
}

.hanho-branch-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #e3f2fd;
    color: var(--primary-dark);
    padding: 14px 20px;
}

.hanho-branch-card.is-active .hanho-branch-card-head {
    background: var(--primary);
    color: #fff;
}

.hanho-branch-card-name {
    font-size: 16px;
    font-weight: 700;
}

.hanho-branch-card-pin {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.9;
}

.hanho-branch-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    line-height: 1.8;
    color: var(--gray);
    font-size: 15px;
}

.hanho-branch-card-body strong { color: var(--dark); margin-right: 6px; }
.hanho-branch-card-body a { color: var(--primary); text-decoration: none; }
.hanho-branch-card-body a:hover { text-decoration: underline; }
.hanho-branch-note { color: #999; font-style: italic; }

.hanho-branch-card h3 {
    background: #e3f2fd;
    color: var(--primary-dark);
    padding: 14px 20px;
    font-size: 16px;
    margin: 0;
}
.hanho-branch-card .body { padding: 20px; line-height: 1.8; color: var(--gray); }
.hanho-branch-card .body strong { color: var(--dark); }

.hanho-directions { max-width: 800px; margin: 0 auto; }
.hanho-direction-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--light-gray);
}
.hanho-direction-icon {
    width: 50px; height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 20px;
}
.hanho-direction-item h3 { color: var(--primary); font-size: 17px; margin-bottom: 8px; }
.hanho-direction-item p { color: var(--gray); line-height: 1.8; margin: 0; }
.hanho-map-box { margin: 30px 0; border-radius: 12px; overflow: hidden; }

.hanho-contact-map-wrap { margin-bottom: 40px; }
.hanho-contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8fbff;
    border-top: 1px solid #eef2f7;
}
.hanho-contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dbeafe;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.hanho-contact-map-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.hanho-directions .hanho-direction-item a { color: var(--primary); text-decoration: none; }
.hanho-directions .hanho-direction-item a:hover { text-decoration: underline; }

.hanho-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hanho-sitemap-col h3 {
    color: var(--primary);
    font-size: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 16px;
}
.hanho-sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.hanho-sitemap-col li { margin-bottom: 8px; }
.hanho-sitemap-col a { color: var(--gray); text-decoration: none; }
.hanho-sitemap-col a:hover { color: var(--primary); }
.hanho-sitemap-col .sub { padding-left: 16px; margin-top: 6px; }
.hanho-sitemap-col .sub a { font-size: 14px; }

@media (max-width: 992px) {
    .hanho-branch-grid, .hanho-sitemap-grid { grid-template-columns: 1fr; }
}