/* AI 프롬프트 바 */
.idx-ai-wrap {
    position: relative;
    max-width: 600px;
    margin: 12px auto 28px;
}
.idx-ai-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 10px 10px 10px 20px;
    transition: box-shadow .3s ease;
}
.idx-ai-icon { color: var(--accent); font-size: 18px; flex-shrink: 0; }
.idx-ai-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    outline: none;
}
.idx-ai-input::placeholder { color: var(--text-muted); }
.idx-ai-input:disabled { opacity: .6; }
.idx-ai-btn {
    border: none;
    background: var(--accent);
    color: var(--bg);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .15s;
}
.idx-ai-btn:hover { opacity: .85; }
.idx-ai-btn:disabled { opacity: .45; cursor: default; }
.idx-ai-samples {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
    z-index: 40;
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .2s ease, transform .38s cubic-bezier(.34, 1.56, .64, 1);
}
.idx-ai-samples.idx-ai-samples-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.idx-ai-samples-list {
    display: flex;
    flex-direction: column;
}
.idx-ai-sample {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    padding: 9px 12px;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color .15s, color .15s;
}
.idx-ai-sample:hover {
    color: var(--accent);
    background-color: var(--accent-tint);
}
.idx-ai-sample-launched { opacity: .25; }
.idx-ai-sample-drop {
    z-index: 2000;
    transition: transform .55s cubic-bezier(.55, 0, 1, .45), opacity .4s ease .15s;
}
.idx-ai-bar:has(.idx-ai-input-landed) {
    box-shadow: 0 0 0 3px var(--accent-tint);
}
.idx-ai-result {
    margin-top: 8px;
    font-size: 13px;
    color: var(--accent-hover);
    background: var(--bg);
    border: 1px solid var(--accent-tint);
    border-radius: 16px;
    padding: 10px 20px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .idx-ai-bar {
        gap: 6px;
        padding: 8px 8px 8px 16px;
    }
    .idx-ai-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

.hero-top-copy {
    margin: 28px 0 8px;
    padding: 0 24px;
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    font-size: clamp(var(--fs-18), 2.5vw, var(--fs-28));
    font-weight: 700;
    color: var(--text);
    text-align: center;
    letter-spacing: -0.01em;
}

.hero-top-subcopy {
    margin: 0 0 20px;
    padding: 0 24px;
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    font-size: var(--fs-16);
    font-weight: 400;
    color: var(--text);
    text-align: center;
    letter-spacing: -0.01em;
}

@media (max-width: 1112px) {
    .home-wrapper .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .hero-top-copy {
        margin-bottom: 14px;
    }
}

/* STUDIO 섹션 헤더 */
.ab-section-label {
    font-size: var(--fs-12);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--danger);
    margin-bottom: 16px;
}

.ab-section-title {
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    font-size: clamp(var(--fs-16), 2.2vw, var(--fs-22));
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.ab-section-title .small { font-size: 1em; } /* Bootstrap .small 기본값(0.875em)이 제목보다 작아 보이던 것 방지 */

.collection-strip-header .home-blog-more {
    font-size: var(--fs-16);
    font-weight: 400;
}

.ab-section-body {
    font-size: var(--fs-16);
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 0;
}

/* HERO WRAPPER */
.home-wrapper {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    padding-bottom: 72px;
}

@media (max-width: 768px) {
    .home-wrapper {
        padding-bottom: 80px;
    }
}

/* CURATION DIVIDER */
.curation-divider {
    margin: 56px 0 0;
    border: none;
    border-top: 1px solid var(--border);
}

/* COLLECTION STRIP (마퀴 슬라이드) */
.collection-strip-section {
    margin-top: 40px;
}

.collection-strip-header {
    position: relative;
}

.collection-strip-outer {
    position: relative;
}

.collection-strip-viewport {
    overflow: hidden;
    padding: 8px 0 32px;
}

.collection-strip-track {
    display: flex;
    width: max-content;
    gap: 16px;
    will-change: transform;
}

.collection-strip-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(var(--text-rgb), 0.12);
    transition: background 0.15s ease;
}

.collection-strip-nav-prev { left: 8px; }
.collection-strip-nav-next { right: 8px; }

.collection-strip-nav:hover {
    background: var(--border);
}

/* 컬럼(2장 세로 스택) 너비는 JS가 뷰포트 폭에 맞춰 정확히 계산해 인라인으로 지정 (잘린 카드 노출 방지) */
.collection-strip-col {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collection-strip-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.collection-strip-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.collection-strip-card:hover img {
    transform: scale(1.05);
}

.collection-strip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
    pointer-events: none;
}

.collection-strip-card:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.collection-strip-label {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 12px;
    color: var(--bg);
    font-size: var(--fs-14);
    font-weight: 600;
    letter-spacing: -0.01em;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.collection-strip-card:hover .collection-strip-label {
    opacity: 1;
}

@media (max-width: 576px) {
    .collection-strip-nav {
        width: 32px;
        height: 32px;
    }
}

/* SPACE CARDS — 사이트 폭(container)에 맞춰 정렬 */
.space-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    padding: 28px 0 32px;
}

.space-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.space-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.space-card:hover img {
    transform: scale(1.05);
}

.space-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--text-rgb), 0.5) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
}

.space-card-label {
    color: var(--bg);
    font-size: var(--fs-16);
    font-weight: 700;
    letter-spacing: -0.01em;
}

@media (max-width: 640px) {
    .space-cards-wrapper {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .space-cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
    }

    .space-card img {
        aspect-ratio: 16 / 9;
    }

    .space-card-overlay {
        padding: 16px 18px;
    }

    .space-card-label {
        font-size: var(--fs-18);
    }
}

/* PROCESS */
/* ── PROCESS SECTION (Slidesgo card style) ──────────────── */
.process-section {
    background: #f9f9f9;
    padding: 64px 0 80px;
}

.process-section .ab-section-label { color: var(--accent, var(--accent)); }
.process-section .ab-section-title { color: var(--text, var(--text)); }

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.process-step {
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(var(--text-rgb), .07);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(var(--text-rgb), .1);
}

.process-card-bg {
    padding: 1.4rem 1.6rem .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-num {
    font-size: var(--fs-13);
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text);
    line-height: 1;
}

.process-icon {
    font-size: 1.6rem;
    color: var(--text);
}

.process-card-overlay {
    flex: 1;
    padding: .75rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    border-top: 1px solid rgba(var(--text-rgb), .06);
}

.process-title {
    font-size: calc(var(--fs-18) * 1.1);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.02em;
    line-height: 1.3;
    margin: 0;
}

.process-desc {
    font-size: var(--fs-14);
    color: var(--text);
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

.process-hints {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    border-top: 1px solid rgba(var(--text-rgb), .1);
    padding-top: .75rem;
}

.process-hints li {
    font-size: var(--fs-13);
    color: var(--text);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.process-hints li i {
    color: var(--accent-hover);
    font-size: var(--fs-13);
    flex-shrink: 0;
}

.process-guide-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px solid rgba(var(--text-rgb), .08);
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}
.process-guide-link:hover { text-decoration: underline; }

.process-cta-group { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.process-cta-group .process-guide-link { margin-top: 0; align-self: flex-start; }
.process-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: .35rem;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--text);
    color: var(--bg);
    font-size: var(--fs-13);
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.process-cta-btn:hover { background: var(--accent-hover); color: var(--bg); transform: translateY(-1px); }

@media (max-width: 1024px) {
    .process-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .process-container { gap: .75rem; }
    .process-step:hover { transform: none; box-shadow: none; }
}

@media (max-width: 480px) {
    .process-container { grid-template-columns: 1fr; }
}

/* VALUES */
.values-section {
    padding-bottom: 40px;
}

/* ENGINE 아이콘 바로가기 (캔바 스타일 원형 아이콘 줄) */
.engine-icon-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin: 8px 0 16px;
}

.engine-icon-shortcut {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 92px;
    text-decoration: none;
    color: var(--text);
}

.engine-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .15s ease;
}

.engine-icon-circle svg {
    width: 36px;
    height: 36px;
    transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.engine-icon-shortcut:hover .engine-icon-circle {
    background: var(--text);
    transform: translateY(-3px);
}

.engine-icon-shortcut:hover .engine-icon-circle svg {
    transform: rotate(45deg);
}

.engine-icon-label {
    font-size: var(--fs-13);
    font-weight: 600;
    text-align: center;
    word-break: keep-all;
}

.pm-symbol-bar {
    fill: rgba(var(--text-rgb), 0.9);
}

.engine-icon-shortcut:hover .pm-symbol-bar {
    fill: #fff;
}

.pm-symbol-stroke {
    stroke: rgba(var(--text-rgb), 0.9);
}

.engine-icon-shortcut:hover .pm-symbol-stroke {
    stroke: #fff;
}

/* BLOG SECTION */
.home-blog-section {
    padding: 64px 0 56px;
    border-top: 1px solid var(--border);
}
.home-blog-section .ab-section-label { color: var(--danger); }
.home-blog-section .ab-section-title { color: var(--text, var(--text)); }

.home-blog-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: var(--fs-14); font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
    white-space: nowrap;
}
.home-blog-more:hover { color: var(--danger); gap: 9px; }

.home-quote-banner {
    display: block;
    padding: 2.25rem 2rem;
    margin-bottom: 1.75rem;
    background: rgba(var(--accent-rgb), 0.06);
    border-left: 3px solid var(--accent, var(--accent));
    border-radius: var(--r, 12px);
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}
.home-quote-banner:hover {
    background: rgba(var(--accent-rgb), 0.1);
    transform: translateX(2px);
}
.home-quote-text {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700; letter-spacing: -.01em;
    color: var(--text, var(--text));
    line-height: 1.5;
    margin: 0 0 .6rem;
}
.home-quote-sub {
    font-size: var(--fs-14);
    font-weight: 600;
    color: var(--accent, var(--accent));
    margin: 0;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.home-blog-card:hover {
    box-shadow: 0 4px 16px rgba(var(--text-rgb), 0.07);
    border-color: rgba(var(--text-rgb), 0.6);
    color: inherit;
}

.home-blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #F8F9FA;
    overflow: hidden;
}
.home-blog-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.home-blog-card:hover .home-blog-card-thumb img { transform: scale(1.05); }

.home-blog-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.home-blog-card-cat {
    font-size: var(--fs-12); font-weight: 600; color: var(--accent);
    margin: 0 0 .25rem;
}
.home-blog-card-title {
    font-size: var(--fs-16); font-weight: 700;
    letter-spacing: -.01em; line-height: 1.4;
    color: var(--text, var(--text));
    margin-bottom: .4rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.home-blog-card-summary {
    font-size: var(--fs-13); color: var(--text);
    line-height: 1.5; margin-bottom: .6rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-blog-card-date { font-size: var(--fs-12); color: var(--text); margin-top: auto; }

@media (max-width: 900px) {
    .home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .home-blog-grid { grid-template-columns: 1fr; }
}

/* CONTACT MODAL */
#contactModal .modal-content {
    border: none; border-radius: 8px;
    box-shadow: 0 8px 32px rgba(var(--text-rgb), 0.12);
}
#contactModal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 16px;
}
#contactModal .modal-title {
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    font-size: var(--fs-16); font-weight: 700;
}
#contactModal .modal-body { padding: 24px; }
.ct-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; min-width: 0; }
.ct-field label { font-size: var(--fs-12); font-weight: 700; color: var(--text-muted); letter-spacing: .03em; }
.ct-field input, .ct-field textarea {
    border: 1px solid var(--border); border-radius: 4px;
    padding: 9px 12px; font-size: var(--fs-14);
    font-family: inherit; outline: none;
    transition: border-color .15s; resize: none;
}
.ct-field input:focus, .ct-field textarea:focus { border-color: var(--text); }
.ct-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ct-submit {
    width: 100%; height: 40px; margin-top: 4px;
    background: var(--danger); color: var(--bg); border: none;
    border-radius: 4px; font-family: inherit;
    font-size: var(--fs-14); font-weight: 600; cursor: pointer;
    transition: background .15s;
}
.ct-submit:hover { background: var(--danger-hover, var(--danger-hover)); }
.ct-submit:disabled { background: var(--text-muted); cursor: not-allowed; }
.ct-error {
    background: var(--danger-tint); border-left: 3px solid var(--danger);
    padding: 9px 12px; font-size: var(--fs-13); color: var(--danger);
    margin-bottom: 14px; border-radius: 2px;
}
.ct-success {
    text-align: center; padding: 32px 0 16px;
    font-size: var(--fs-16); color: var(--text); line-height: 1.8;
}
.ct-success strong { display: block; font-size: var(--fs-16); margin-bottom: 8px; }
@media (max-width: 576px) {
    .ct-row-2 { grid-template-columns: 1fr; }
    #contactModal .modal-body { padding: 16px; }
}

/* CONTACT CTA SECTION */
.home-contact-section {
    padding: 64px 0 88px;
}

.home-contact-section .container {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 64px 40px;
}

@media (max-width: 768px) {
    .home-contact-section .container {
        padding: 48px 24px;
        border-radius: 14px;
    }
}

.home-contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.home-contact-label {
    font-size: var(--fs-12);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--danger, var(--danger));
    margin-bottom: 20px;
}

.home-contact-title {
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    font-size: clamp(var(--fs-16), 2.2vw, var(--fs-22));
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 20px;
}

.home-contact-body {
    font-size: var(--fs-16);
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 36px;
}

.home-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.home-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: var(--fs-15);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.home-contact-btn--primary {
    background: var(--text);
    color: var(--bg);
    border: 2px solid var(--text);
}
.home-contact-btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg);
    transform: translateY(-2px);
}

.home-contact-btn--ghost {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(var(--text-rgb), 0.2);
}
.home-contact-btn--ghost:hover {
    border-color: rgba(var(--text-rgb), 0.5);
    color: var(--text);
    transform: translateY(-2px);
}

.home-contact-hint {
    font-size: var(--fs-12);
    color: var(--text);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (max-width: 576px) {
    .home-contact-section {
        padding: 64px 0 72px;
    }
    .home-contact-actions {
        flex-direction: column;
        align-items: center;
    }
    .home-contact-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 24px 0 48px;
    border-top: 1px solid var(--border);
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

@media (max-width: 768px) {
    .faq-columns {
        grid-template-columns: 1fr;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    background: transparent;
}

.faq-button {
    font-size: var(--fs-16);
    font-weight: 700;
    color: var(--text);
    background: transparent;
    padding: 14px 20px;
    letter-spacing: -0.01em;
    box-shadow: none !important;
}

.faq-button:not(.collapsed) {
    color: var(--danger);
    background: transparent;
}

.faq-button::after {
    filter: none;
}

.faq-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc2200'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
    font-size: var(--fs-14);
    color: var(--text);
    line-height: 1.6;
    padding: 8px 20px 14px;
    font-weight: 400;
    border-top: 1px solid var(--border);
}
.faq-body p {
    margin-bottom: 0.4rem;
}
.faq-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .values-section {
        padding: 0 24px 32px;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 0 20px 24px;
    }
}

/* ── 컬렉션 아래 "빛과 살" / "살의 쓰임" 섹션 ── */
.hc {
    --hc-paper: #FFFFFF;
    --hc-line: #E7E3DA;
    --hc-red: #D23127;
}
.hc, .hc * { box-sizing: border-box; }
.hc {
    font-family: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    color: var(--text);
    line-height: 1.78;
    word-break: keep-all;
}
.hc a { color: inherit; }
.hc-band { padding-block: clamp(52px, 8vw, 92px); }
.hc-label { margin: 0 0 14px; font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--hc-red); }
.hc h2 { margin: 0; font-size: clamp(23px, 2.9vw, 33px); font-weight: 800; letter-spacing: -.03em; line-height: 1.32; }
.hc h2.hc-title-compact { font-size: clamp(var(--fs-16), 2.2vw, var(--fs-22)); font-weight: 700; letter-spacing: -.01em; line-height: 1.4; color: var(--text); }
.hc h3 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -.02em; line-height: 1.4; }
.hc-sub { margin: 18px 0 0; max-width: 34em; font-size: var(--fs-16); color: var(--text); }

/* 빛과 살 — 두 단 산문 */
.hc-prose {
    display: grid;
    gap: clamp(20px, 3vw, 44px);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 34px;
    max-width: 56em;
}
.hc-prose p { margin: 0 0 16px; font-size: var(--fs-16); color: var(--text); }
.hc-prose p:last-child { margin-bottom: 0; }
.hc-prose b { color: var(--text); font-weight: 700; }

/* 살의 쓰임 */
.hc-lines { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); margin-top: 38px; }
.hc-line { background: var(--text); border: 1px solid var(--text); border-radius: 16px; padding: 26px 24px 28px; color: #FFFFFF; }
.hc-line h3 { color: #FFFFFF; }
.hc-line p { margin: 9px 0 0; font-size: 15px; color: rgba(255, 255, 255, 0.72); }

.hc :where(a, button):focus-visible { outline: 2px solid var(--hc-red); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    .hc * { transition: none !important; }
}
