/* 히어링루프 최종 스타일. 03폴더의 글꼴·크기·색상 변수를 공유합니다. */

/* 기본 설정 */

.he {
    --he-ink: #102d53;
    --he-navy: #081f3e;
    --he-pale: #f2f6fb;
    --he-line: #dbe3ed;
    background: #fff;
    color: var(--hkb-text);
    font-family: var(--hkb-font);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    overflow-wrap: anywhere;
}

.he, .he * {
    box-sizing: border-box;
}

.he figure {
    margin: 0;
    min-width: 0;
}

.he img {
    display: block;
    width: 100%;
    height: auto;
}

.he p {
    margin: 0 0 20px;
}

.he a {
    text-decoration: none;
}

.he :is(a, summary, [tabindex]):focus-visible {
    outline: 3px solid var(--hkb-blue);
    outline-offset: 5px;
}

.he :is(h1, h2, h3, h4) {
    margin: 0;
    line-height: var(--lh-heading);
    font-weight: var(--hkb-weight-bold);
    letter-spacing: -.035em;
}

.hl-wrap {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* 상단 소개 */

.he-intro {
    background: var(--he-navy);
    color: #fff;
    padding: 32px 0 clamp(80px, 7vw, 120px);
}

.he-intro-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding-bottom: 22px;
    font-size: var(--fs-caption);
    letter-spacing: .08em;
    color: #b5c6dc;
}

.he-intro-copy {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 72px 0 52px;
}

.he-eyebrow {
    font-size: var(--fs-caption);
    font-weight: var(--hkb-weight-semibold);
    letter-spacing: .16em;
    margin: 0 0 20px !important;
    color: var(--hkb-blue);
}

.he-intro .he-eyebrow {
    color: #a7c4ff;
}

.he-intro h1 {
    font-size: var(--fs-display);
    line-height: 1.25;
    letter-spacing: -.045em;
}

.he-lead {
    font-size: var(--fs-lead);
    color: #c4d1e1;
    line-height: 1.7;
    margin: 24px 0 0 !important;
}

.he-button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 16px 22px;
    background: var(--hkb-blue);
    color: #fff;
    border-radius: 8px;
    margin-top: 26px;
    font-size: var(--fs-body);
    font-weight: var(--hkb-weight-semibold);
    transition: background .2s;
}

.he-button:hover {
    color: #fff;
    background: var(--hkb-blue-dark);
}

.he-intro .he-button {
    background: #fff;
    color: var(--he-ink);
}

.he-intro .he-button:hover {
    background: #dfeaff;
}

.he-intro-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto !important;
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    overflow: hidden;
}

.he-intro-image img {
    border-radius: 8px;
}

/* 비교 사진과 편집 가능한 제목 */
.he-comparison {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding: 30px;
    background: #f7f8fa;
    border: 12px solid #fff;
}

.he-comparison-card {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.he-comparison-card figcaption {
    padding: 18px 12px;
    color: var(--he-ink);
    font-size: var(--fs-body);
    font-weight: var(--hkb-weight-bold);
    text-align: center;
}

.he-comparison-card--after figcaption,
.he-comparison-vs {
    background: var(--hkb-blue);
    color: #fff;
}

.he .he-comparison-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
}

.he-comparison-vs {
    padding: 12px;
    border-radius: 30px;
    font-size: var(--fs-small);
    font-weight: var(--hkb-weight-bold);
    text-align: center;
}

.he-intro-footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 8px 0 0;
    font-size: var(--fs-small);
    color: var(--hkb-text-muted);
}

.he-intro-footer strong {
    font-weight: var(--hkb-weight-semibold);
    color: var(--he-ink);
}

.he-intro-footer p {
    margin: 0;
}

/* 탭 메뉴 */

.he-tab-shell {
    position: sticky;
    top: 84px;
    z-index: 20;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--he-line);
    padding: 20px 0;
}

.he-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0;
    scroll-margin-top: 105px;
}

.he-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 0;
    background: var(--hkb-tab-bg);
    border-radius: var(--hkb-radius-md);
    color: var(--hkb-white);
    font-size: var(--fs-lead);
    font-weight: var(--hkb-weight-semibold);
    padding: 20px 6px;
    line-height: var(--lh-caption);
    transition: background .2s, color .2s;
}

.he-tabs a:hover {
    background: var(--hkb-tab-hover);
    color: var(--hkb-white);
}

.he-tabs a[aria-selected=true] {
    background: var(--hkb-blue);
    color: var(--hkb-white);
}

.he-tabs a[aria-selected=true]:hover {
    background: var(--hkb-blue-dark);
}

.he-tab-number {
    font-family: var(--hkb-font-number);
    font-size: var(--fs-caption);
    opacity: .6;
}

.he-panel[hidden] {
    display: none !important;
}

.he-panel {
    scroll-margin-top: 180px;
}

/* 본문 · 의무화 */

.he .hl-section {
    padding: clamp(64px, 7vw, 104px) 0;
    border-bottom: 1px solid var(--he-line);
}

.he .hl-section--alt {
    background: var(--he-pale);
}

.he .hl-section > .hl-wrap {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.hl-heading > span {
    display: block;
    color: var(--hkb-blue);
    font-size: var(--fs-caption);
    font-weight: var(--hkb-weight-semibold);
    letter-spacing: .1em;
    margin-bottom: 18px;
}

.hl-heading h2 {
    font-size: var(--fs-heading-md);
    color: var(--he-ink);
    line-height: 1.5 !important;
}

.he-section-body {
    min-width: 0;
}

.he-section-body > p {
    color: var(--hkb-text-muted);
}

.hl-lead {
    font-size: var(--fs-lead);
    color: var(--he-ink) !important;
}

.he .hl-banner {
    background: transparent;
    padding: 0 0 36px;
    border-bottom: 1px solid var(--he-line);
    border-radius: 0;
    color: var(--he-ink);
    margin: 0 0 28px;
}

.hl-banner > span {
    font-size: var(--fs-caption);
    color: var(--hkb-text-muted);
}

.hl-banner > strong {
    display: block;
    font-size: var(--fs-display);
    line-height: 1.25;
    letter-spacing: -.04em;
    font-family: var(--hkb-font-number);
    color: var(--hkb-blue);
    margin: 18px 0 22px;
}

.hl-banner > p {
    font-size: var(--fs-heading-sm);
    max-width: 760px;
    margin: 0;
}

.hl-law {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--he-line);
    border-radius: 8px;
}

.hl-law p {
    color: var(--hkb-text-muted);
}

.hl-law p:last-child {
    margin: 0;
}

.hl-note {
    font-size: var(--fs-small);
    color: var(--hkb-text-note) !important;
    margin: 18px 0 28px !important;
}

.hl-media img {
    border-radius: 8px;
}

.hl-media figcaption {
    font-size: var(--fs-caption);
    line-height: var(--lh-caption);
    color: var(--hkb-text-caption);
    margin-top: 12px;
}

.he-section-body > .hl-media {
    margin-top: 32px;
}

.hl-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.hl-split > div {
    min-width: 0;
}

.hl-split h3 {
    font-size: var(--fs-heading-sm);
    color: var(--he-ink);
    margin: 28px 0 14px;
}

.hl-split p {
    color: var(--hkb-text-muted);
}

.hl-split .hl-lead {
    font-size: var(--fs-heading-sm);
}

.hl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.hl-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hl-grid img {
    max-height: 280px;
    object-fit: contain;
}

.hl-law-images {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.hl-law-images img {
    border: 1px solid var(--he-line);
}

.he-detail {
    border-top: 1px solid var(--he-line);
    border-bottom: 1px solid var(--he-line);
    background: #fff;
    padding: 22px 24px;
    margin-top: 28px;
}

.he :is(.he-detail) summary {
    color: var(--he-ink);
    font-weight: var(--hkb-weight-semibold);
    cursor: pointer;
}

.he :is(.he-detail)[open] .hl-media {
    margin-top: 24px;
}

.hl-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    padding: 0;
    margin: 32px 0;
    gap: 0;
    background: var(--he-ink);
    border-radius: 8px;
}

.hl-steps li {
    list-style: none;
    padding: 24px 18px;
    color: #fff;
    min-width: 0;
}

.hl-steps li + li {
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.hl-steps span {
    font-family: var(--hkb-font-number);
    color: #adc4e5;
    font-size: var(--fs-heading-sm);
}

.hl-steps h3 {
    font-size: var(--fs-body);
    margin: 18px 0 0;
    color: inherit;
}

.hl-coverage {
    padding: 24px 0;
    border-top: 1px solid var(--he-line);
    border-bottom: 1px solid var(--he-line);
}

.hl-coverage h3 {
    font-size: var(--fs-heading-sm);
    color: var(--he-ink);
    margin-bottom: 12px;
}

.hl-coverage p {
    margin: 0;
    color: var(--hkb-text-muted);
}

/* 도입 장점 */

.he-benefit-title {
    font-size: var(--fs-heading-sm);
    color: var(--he-ink);
    margin: 0 0 24px !important;
}

.he-benefit-title:not(:first-child) {
    margin-top: 48px !important;
}

.he-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.he-benefit-grid article > span {
    font-family: var(--hkb-font-number);
}

.he-benefit-grid h4 {
    font-size: var(--fs-lead);
    color: var(--he-ink);
}

.he-benefit-grid p {
    margin: 0;
    font-size: var(--fs-body);
    color: var(--hkb-text-muted);
}

/* 설치내역 표 기본 */

.he table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    font-size: var(--fs-small);
    line-height: 1.7;
}

.he caption {
    background: var(--he-ink);
    color: #fff;
    text-align: left;
    font-size: var(--fs-lead);
    font-weight: var(--hkb-weight-semibold);
    padding: 18px 20px;
}

.he th, .he td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--he-line);
    vertical-align: top;
}

.he thead {
    background: #edf3fb;
    color: var(--he-ink);
}

.he tbody th {
    min-width: 92px;
    width: 25%;
    font-weight: var(--hkb-weight-semibold);
    color: var(--he-ink);
}

.he tbody tr:last-child > * {
    border-bottom: 0;
}

/* 설치사례 요약 */

.hl-case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 0 0 28px;
    border-bottom: 1px solid var(--he-line);
}

.hl-case-meta > strong {
    font-family: var(--hkb-font-number);
    color: var(--hkb-blue);
    font-size: var(--fs-display);
    line-height: 1;
}

.hl-case-meta strong span {
    font-family: var(--hkb-font);
    font-size: var(--fs-lead);
    margin-left: 10px;
}

.hl-case-meta p {
    margin: 0;
    color: var(--hkb-text-muted);
    font-size: var(--fs-lead);
}

/* 상담 안내 */

.he-contact {
    color: #fff;
    padding: 64px 0;
    background: url("/image/main/hearing/bg-hearing.jpg") center center;
    background-size: cover;
}

.he-contact-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.he-contact .he-eyebrow {
    color: #a7c4ff;
}

.he-contact h2 {
    font-size: var(--fs-heading-lg);
    margin-bottom: 22px;
}

.he-contact p:not(.he-eyebrow) {
    color: #c4d1e1;
    margin: 0;
}

.he-contact-actions {
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

.he-phone {
    font-size: var(--fs-heading-lg);
    font-family: var(--hkb-font-number);
    font-weight: var(--hkb-weight-bold);
    color: #fff;
}

.he-button--white {
    background: #fff;
    color: var(--he-ink);
}

@media(max-width:1100px) {
    .hl-split {
        grid-template-columns: 1fr;
    }
    .he .hl-section > .hl-wrap {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 36px;
    }
}

@media(max-width:760px) {
    .he-intro {
        padding-top: 24px;
        padding-bottom: 56px;
    }

    .he-intro-top {
        font-size: 12px;
        letter-spacing: .04em;
    }

    .he-intro-copy {
        padding: 48px 0 36px;
    }

    .he-intro h1 {
        font-size: var(--fs-display);
    }

    .he-intro-image {
        padding: 6px;
        border-radius: 10px;
    }

    .he-intro-image img {
        border-radius: 6px;
    }

    .he-comparison {
        grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
        gap: 8px;
        border-width: 6px;
        padding: 16px 12px;
    }

    .he-comparison-card {
        border-radius: 6px;
    }

    .he-comparison-card figcaption {
        padding: 14px 8px;
        font-size: var(--fs-caption);
    }

    .he-comparison-vs {
        padding: 8px 0;
        font-size: 11px;
    }

    .he-intro-footer {
        display: block;
        padding: 12px 8px 8px;
    }

    .he-intro-footer p {
        margin-top: 8px;
    }

    .he-tab-shell {
        top: 72px;
        padding: 12px 0;
    }

    .he-tabs {
        gap: 5px;
        scroll-margin-top: 84px;
    }

    .he-tabs a {
        gap: 8px;
        padding: 12px 6px;
        font-size: var(--fs-small);
    }

    .he-tab-number {
        font-size: 12px;
    }

    .he .hl-section > .hl-wrap {
        display: block;
    }

    .hl-heading {
        margin-bottom: 30px;
    }

    .hl-heading > span {
        margin-bottom: 12px;
    }

    .hl-heading h2 {
        font-size: var(--fs-heading-lg);
        line-height: var(--lh-heading) !important;
    }

    .hl-heading h2 br {
        display: none;
    }

    .he .hl-section {
        padding: 52px 0;
    }

    .hl-law {
        padding: 24px;
    }

    .hl-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hl-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hl-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hl-steps li {
        padding: 20px;
    }

    .hl-steps li:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .hl-steps li:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, .2);
    }

    .he-benefit-grid {
        grid-template-columns: 1fr;
    }

    .hl-case-meta p {
        font-size: var(--fs-body);
    }

    .he-contact-grid {
        display: block;
    }

    .he-contact-actions {
        margin-top: 32px;
        min-width: 0;
    }

    .he-panel {
        scroll-margin-top: 155px;
    }
}

@media(prefers-reduced-motion:reduce) {
    .he * {
        transition: none !important;
    }
}

/* 제품 구성 · 사양 */

.he .he-product>.hl-wrap {
    display: block;
}

.he-product-top {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: clamp(32px,6vw,88px);
    align-items: center;
}

.he-product-top>.hl-media {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--he-line);
    border-radius: 12px;
}

.he-product-top>.hl-media img {
    height: 320px;
    object-fit: contain;
}

.he-product-top>.hl-media figcaption {
    display: none;
}

.he .he-product-heading {
    margin: 0;
}

.he .he-product-heading>span {
    margin-bottom: 12px;
}

.he .he-product-heading h2 {
    font-size: var(--fs-heading-lg);
    line-height: var(--lh-heading)!important;
}

.he .he-product-heading .hl-lead {
    margin: 24px 0 0;
    max-width: 480px;
    font-size: var(--fs-body);
    color: var(--hkb-text-muted)!important;
    line-height: var(--lh-body);
}

.he-product-specs {
    margin-top: 40px;
}

.he-product-specs dl {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    column-gap: 48px;
    row-gap: 0;
    margin: 0;
}

.he-product-specs dl>div {
    padding: 20px 0;
    border-top: 1px solid #9fb8e3;
    min-width: 0;
}

.he-product-specs dl>div:nth-last-child(-n+2) {
    border-bottom: 1px solid #9fb8e3;
}

.he-product-specs dt {
    font-size: var(--fs-body);
    margin: 0 0 8px;
    font-weight: var(--hkb-weight-bold);
    color: var(--hkb-blue-dark);
}

.he-product-specs dd {
    margin: 0;
    font-size: var(--fs-small);
    line-height: 1.7;
    color: var(--hkb-text-muted);
}

.he-product-sr-only {
    position: absolute!important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px!important;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.he #tab-products .he-product .he-product-gallery {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
    border: 0;
    padding: 0;
    margin: 36px 0 0;
}

@media(max-width:1024px) {
    .he-product-top {
        gap: 32px;
    }

    .he-product-top>.hl-media {
        padding: 24px;
    }

    .he-product-top>.hl-media img {
        height: 260px;
    }
}

@media(max-width:760px) {
    .he-product-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .he-product-top>.hl-media img {
        height: 240px;
    }

    .he .he-product-heading .hl-lead {
        margin-top: 16px;
    }

    .he-product-specs {
        margin-top: 32px;
    }

    .he-product-specs dl {
        column-gap: 24px;
    }

    .he-product-specs dl>div {
        padding: 16px 0;
    }

    .he-product-specs dt {
        font-size: var(--fs-small);
    }

    .he #tab-products .he-product .he-product-gallery {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media(max-width:420px) {
    .he-product-specs dl {
        grid-template-columns: 1fr;
    }
}

/* 설치내역 표 */

.he-install-scroll {
    overflow-x: auto;
    margin-top: 24px;
    border: 1px solid var(--he-line);
    border-radius: 8px;
    background: #fff;
}

.he .he-install-table {
    min-width: 920px;
}

.he .he-install-table caption {
    background: var(--he-pale);
    color: var(--he-ink);
    padding: 18px 20px;
    font-size: var(--fs-body);
    border-bottom: 1px solid var(--he-line);
}

.he .he-install-table thead {
    background: #fff;
}

.he .he-install-table thead th {
    white-space: nowrap;
    color: var(--he-ink);
    font-size: var(--fs-small);
}

.he .he-install-table th,.he .he-install-table td {
    padding: 14px 16px;
}

.he .he-install-table tbody th {
    min-width: 0;
    width: auto;
    font-family: var(--hkb-font-number);
    color: var(--hkb-text-muted);
    font-weight: var(--hkb-weight-normal);
}

.he .he-install-table td {
    color: var(--hkb-text-muted);
}

.he .he-install-table tbody tr:nth-child(even) {
    background: #fafbfd;
}

.he .he-install-table tbody tr:hover {
    background: var(--he-pale);
}

.he .he-install-table td:nth-child(2) {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

@media(max-width:760px) {
    .he-install-scroll {
        margin-top: 20px;
    }

    .he .he-install-table th,.he .he-install-table td {
        padding: 12px 14px;
    }
}

/* 설치사진 · 균일한 그리드 */

.he #tab-cases .hl-section .hl-grid {
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 20px 16px;
}

.he #tab-cases .hl-section .hl-grid>figure,
.he #tab-cases .hl-section .hl-grid>figure:first-child {
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
}

.he #tab-cases .hl-section .hl-grid img,
.he #tab-cases .hl-section .hl-grid>figure:first-child img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: none;
    object-fit: cover;
    border-radius: 8px;
    background: var(--he-pale);
}

.he #tab-cases .hl-grid figcaption {
    font-size: var(--fs-caption);
    margin-top: 10px;
}

.he-install-record {
    margin-top: 32px;
}

.he .he-install-record>h3 {
    font-size: var(--fs-heading-sm);
    color: var(--he-ink);
    margin: 0 0 16px;
}

.he-install-record .he-install-scroll:first-of-type {
    margin-top: 0;
}

@media(max-width:1100px) {
    .he #tab-cases .hl-section .hl-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

@media(max-width:760px) {
    .he #tab-cases .hl-section .hl-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 20px 14px;
    }
}

/* 작동 원리 · 활용 공간 */

.he-principle-image {
    margin: 32px 0 0!important;
}

.he-principle-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

.he-principle-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
    margin-top: 28px;
}

.he-principle-grid article {
    padding: 28px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--he-line);
    border-radius: 12px;
}

.he-principle-grid img {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 14px;
}

.he-principle-grid h3 {
    font-size: var(--fs-lead);
    color: var(--he-ink);
    margin-bottom: 12px;
}

.he-principle-grid p {
    font-size: var(--fs-body);
    color: var(--hkb-text-muted);
    margin: 0;
}

.he-space-heading {
    margin: 48px 0 24px;
}

.he-space-heading h3 {
    font-size: var(--fs-heading-sm);
    color: var(--he-ink);
}

.he-space-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 28px 20px;
}

.he-space-grid article {
    min-width: 0;
}

.he-space-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 13 / 8;
    object-fit: cover;
    border-radius: 10px;
}

.he-space-grid h4 {
    font-size: var(--fs-body);
    color: var(--he-ink);
    text-align: center;
    margin-top: 14px;
}

.he-benefits .hl-heading>span {
    color: #a7c4ff;
}

.he-benefits .hl-heading h2,.he-benefits .he-benefit-title {
    color: #fff;
}

.he-benefits .he-benefit-grid {
    gap: 20px;
}

.he-benefits .he-benefit-grid article {
    display: block;
    padding: 28px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.he-benefits .he-benefit-grid article>span {
    display: block;
    margin: 0 0 18px;
    padding: 0;
    font-size: var(--fs-heading-sm);
    font-weight: var(--hkb-weight-bold);
    color: var(--hkb-blue);
}

.he-benefits .he-benefit-grid h4 {
    font-size: var(--fs-heading-sm);
    color: var(--he-ink);
    margin-bottom: 14px;
}

.he-benefits .he-benefit-grid p {
    color: var(--hkb-text-muted);
    margin: 0;
}

.he-benefits .he-benefit-grid p strong {
    color: var(--hkb-blue);
    font-size: var(--fs-lead);
    font-weight: var(--hkb-weight-bold);
}

.he-benefits .he-benefit-grid:last-child article {
    background: #14345a;
    border-color: #325174;
    box-shadow: none;
}

.he-benefits .he-benefit-grid:last-child article>span {
    color: #a7c4ff;
}

.he-benefits .he-benefit-grid:last-child h4 {
    color: #fff;
}

.he-benefits .he-benefit-grid:last-child p {
    color: #d2dfef;
}

.he-benefits .hl-note {
    color: #b9cbe2!important;
}

@media(max-width:1024px) {
    .he-principle-grid {
        gap: 14px;
    }

    .he-principle-grid article {
        padding: 24px 16px;
    }

    .he-space-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media(max-width:760px) {
    .he-principle-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .he-principle-grid article {
        padding: 24px;
    }

    .he-principle-grid img {
        margin-bottom: 18px;
    }

    .he-space-grid {
        gap: 24px 16px;
    }

    .he-space-heading {
        margin-top: 36px;
    }

    .he-benefits .he-benefit-grid article {
        padding: 24px;
    }
}

.he-principle-image img,.he-space-grid img {
    border: 1px solid var(--he-line);
    background: #fff;
}

/* 제품소개 제목 */

.he-products-title h2 {
    color: var(--he-ink);
    line-height: var(--lh-heading);
    margin: 0;
    font-size: var(--fs-display);
}

.he-products-title .he-eyebrow {
    margin-bottom: 14px!important;
}

/* 제품소개 제목 */

.he-products-title .hl-wrap>p {
    padding-bottom: 30px;
    border-bottom: 3px solid var(--he-ink);
    margin: 0;
}

/* 제품 활용 사진 */

.he .he-product-gallery>.hl-media {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #c5cfde;
    border-radius: 10px;
}

.he-product-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 16px;
    background: #fff;
    overflow: hidden;
}

.he .he-product-gallery .he-product-photo img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
}

.he .he-product-gallery figcaption {
    margin: 0;
    padding: 16px 20px;
    border-top: 1px solid #c5cfde;
    color: var(--he-ink);
    background: #fff;
    text-align: center;
    font-size: var(--fs-body);
    font-weight: var(--hkb-weight-semibold);
    line-height: var(--lh-caption);
}

@media(max-width:760px) {
    .he-product-photo {
        padding: 14px;
    }

    .he .he-product-gallery figcaption {
        padding: 14px 16px;
    }
}

/* 제품소개 그룹 */

.he-products-group {
    background: var(--he-pale);
    padding: 72px 0 100px;
}

.he .he-products-group .he-products-title {
    background: transparent;
    padding: 0 0 48px;
}

.he .he-products-group .he-products-title h2 {
    padding-bottom: 24px;
}

.he #tab-products .he-products-group .he-product {
    background: transparent;
    border: 0;
    padding: 0;
}

@media(max-width:760px) {
    .he-products-group {
        padding: 48px 0 56px;
    }

    .he .he-products-group .he-products-title {
        padding-bottom: 32px;
    }
}

/* 도입 장점 강조 배경 */

.he #tab-products .hl-section.he-benefits {
    background: var(--he-navy);
    border-color: var(--he-navy);
}

/* 제품 사이 구분선 */

.he-product-divider-wrap {
    padding: clamp(40px, 6vw, 80px) 0;
}

.he-product-divider {
    display: block;
    height: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #bdc8d6;
}

@media(max-width:760px) {
    .he-product-divider-wrap {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media(max-width:420px) {
    .he-product-specs dl>div:nth-last-child(2) {
        border-bottom: 0;
    }
}
