.page-community,
.page-community-detail,
.page-community-write,
.page-support,
.page-policy,
.page-search,
.page-error {
    background: #f8f7f5;
}

.content-hero {
    color: var(--white);
    background: #56514d;
}

.content-hero__inner {
    display: grid;
    min-height: 330px;
    padding-block: 82px 72px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: end;
    gap: 70px;
}

.content-hero .eyebrow,
.search-page > header > p {
    color: #f06469;
    font: 700 12px "Figtree", sans-serif;
    letter-spacing: .18em;
}

.content-hero h1 {
    margin-top: 20px;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.065em;
}

.content-hero__inner > p {
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.8;
}

.content-tabs {
    display: flex;
    min-height: 66px;
    align-items: stretch;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
}

.content-tabs a {
    position: relative;
    display: flex;
    min-width: 150px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    color: #79736e;
    border-right: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}

.content-tabs a[aria-current="page"] {
    color: var(--white);
    background: var(--ink);
}

.content-main {
    padding-top: 68px;
    padding-bottom: 120px;
}

.content-alert {
    margin-bottom: 24px;
    padding: 17px 20px;
    color: #246b4b;
    border: 1px solid #cfe5d9;
    background: #f0f8f4;
    font-size: 13px;
}

.content-alert--error {
    color: #a52a30;
    border-color: #efcdd0;
    background: #fff4f5;
}

.content-toolbar {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--ink);
}

.content-toolbar > div {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.content-toolbar strong { font-size: 14px; }
.content-toolbar span { color: var(--muted); font-size: 12px; }

.content-toolbar form {
    display: grid;
    width: min(100%, 340px);
    grid-template-columns: 1fr auto;
}

.content-toolbar input,
.faq-search input,
.search-page form input {
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-right: 0;
    background: var(--white);
    font: inherit;
}

.content-toolbar form button,
.faq-search button,
.search-page form button {
    min-width: 70px;
    color: var(--white);
    background: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.content-filters {
    display: flex;
    padding: 24px 0 26px;
    flex-wrap: wrap;
    gap: 8px;
}

.content-filters a {
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    color: #77716b;
    border: 1px solid var(--line);
    background: var(--white);
    font-size: 12px;
}

.content-filters a[aria-current="page"] {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.board-list { border-top: 1px solid var(--ink); }

.board-list__head,
.board-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 120px 110px 65px;
    align-items: center;
    gap: 20px;
}

.board-list__head {
    min-height: 45px;
    padding: 0 18px;
    color: #8c8680;
    border-bottom: 1px solid var(--line);
    background: #efedea;
    font-size: 10px;
    text-align: center;
}

.board-list__head span:nth-child(2) { text-align: left; }

.board-row {
    position: relative;
    min-height: 100px;
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.board-row.is-pinned { background: #fbfaf8; }
.board-row > span,
.board-row > time { color: #77716b; font-size: 11px; text-align: center; }
.board-row > span:first-child { color: var(--red); font-weight: 700; }
.board-row > div { display: grid; gap: 7px; }
.board-row > div a { width: fit-content; font-size: 16px; font-weight: 600; }
.board-row > div a:hover { color: var(--red); }
.board-row > div small { color: #85807b; font-size: 12px; line-height: 1.5; }
.board-row__download { position: absolute; right: 10px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: default; }

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 22px;
}

.story-card__image { display: block; aspect-ratio: 1.28; overflow: hidden; background: #e9e7e3; }
.story-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.story-card:hover .story-card__image img { transform: scale(1.035); }
.story-card__body { padding-top: 20px; }
.story-card__body > p { color: var(--red); font: 700 10px "Figtree", sans-serif; letter-spacing: .14em; }
.story-card h2 { min-height: 57px; margin-top: 12px; font-size: 21px; line-height: 1.35; letter-spacing: -.035em; }
.story-card__body > span { display: block; min-height: 45px; margin-top: 10px; color: #77716b; font-size: 13px; line-height: 1.7; }
.story-card footer { display: flex; margin-top: 22px; padding-top: 14px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.story-card time { color: #918b86; font-size: 10px; }
.story-card footer b { font: 700 9px "Figtree", sans-serif; letter-spacing: .12em; }

.content-empty { display: grid; min-height: 330px; place-content: center; text-align: center; border: 1px solid var(--line); background: var(--white); }
.content-empty strong { font-size: 21px; }
.content-empty p { margin-top: 10px; color: var(--muted); font-size: 13px; }
.content-empty a { width: fit-content; margin: 22px auto 0; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }

.content-list-actions { position: relative; display: flex; min-height: 76px; margin-top: 28px; align-items: center; justify-content: center; }
.content-list-actions > .content-button { position: absolute; right: 0; }
.content-pagination { display: flex; align-items: center; gap: 6px; }
.content-pagination a { display: grid; width: 38px; height: 38px; place-items: center; color: #807a74; font-size: 12px; }
.content-pagination a[aria-current="page"] { color: var(--white); background: var(--ink); }

.content-button {
    display: inline-flex;
    min-width: 126px;
    min-height: 44px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
}

.content-button--dark { color: var(--white); background: var(--ink); }

.article-page { padding-top: 75px; padding-bottom: 120px; }
.content-back { display: inline-block; margin-bottom: 45px; color: #756f6a; font-size: 12px; font-weight: 600; }
.article-head { max-width: 1050px; margin-inline: auto; text-align: center; }
.article-head > p { color: var(--red); font: 700 11px "Figtree", sans-serif; letter-spacing: .16em; }
.article-head h1 { margin-top: 20px; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.18; letter-spacing: -.055em; }
.article-head > span { display: block; max-width: 760px; margin: 24px auto 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.article-head > div { display: flex; margin-top: 34px; justify-content: center; gap: 18px; color: #8a847e; font-size: 11px; }
.article-head > div > * + * { padding-left: 18px; border-left: 1px solid var(--line); }

.article-content { max-width: 1200px; margin: 75px auto 0; }
.article-content__cover { width: 100%; max-height: 700px; object-fit: cover; }
.article-content section { max-width: 840px; margin: 70px auto 0; }
.article-content section h2 { font-size: 28px; letter-spacing: -.04em; }
.article-content section p { margin-top: 18px; color: #625d58; font-size: 16px; line-height: 2; }
.admin-editor-output { max-width: 1000px; overflow-wrap: anywhere; color: #4f4a46; font-size: 16px; line-height: 1.9; }
.admin-editor-output > *:first-child { margin-top: 0; }
.admin-editor-output h2,
.admin-editor-output h3,
.admin-editor-output h4 { margin: 48px 0 16px; color: var(--ink); line-height: 1.35; letter-spacing: -.035em; }
.admin-editor-output h2 { font-size: 30px; }
.admin-editor-output h3 { font-size: 24px; }
.admin-editor-output p,
.admin-editor-output ul,
.admin-editor-output ol,
.admin-editor-output blockquote { margin: 18px 0; }
.admin-editor-output ul,
.admin-editor-output ol { padding-left: 1.5em; }
.admin-editor-output img,
.admin-editor-output video,
.admin-editor-output iframe { display: block; max-width: 100%; height: auto; margin: 34px auto; }
.admin-editor-output iframe { width: 100%; aspect-ratio: 16 / 9; }
.admin-editor-output a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.admin-editor-output table { width: 100%; margin: 28px 0; border-collapse: collapse; }
.admin-editor-output th,
.admin-editor-output td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; }
.article-attachments { max-width: 1000px; margin: 55px auto 0; border-top: 1px solid var(--ink); }
.article-attachments h2 { padding: 18px 4px; font-size: 15px; }
.article-attachments a { display: grid; min-height: 62px; padding: 0 16px; grid-template-columns: minmax(0,1fr) auto auto; align-items: center; gap: 20px; border-top: 1px solid var(--line); }
.article-attachments a small { color: var(--muted); }
.article-attachments a b { font-size: 12px; }
.article-download { display: flex; width: 100%; max-width: 840px; min-height: 96px; margin: 65px auto 0; padding: 22px 25px; align-items: center; justify-content: space-between; color: var(--white); border: 0; background: var(--ink); text-align: left; cursor: default; }
.article-download span { display: grid; gap: 6px; }
.article-download b { color: #f26c71; font: 700 10px "Figtree", sans-serif; letter-spacing: .15em; }
.article-download small { color: rgba(255,255,255,.58); }
.article-download strong { font-size: 14px; }


/* 커뮤니티 글쓰기 에디터 */
.community-editor { display: grid; gap: 6px; }
.community-editor .ql-toolbar.ql-snow { border: 1px solid var(--line); border-bottom: 0; border-radius: 0; background: #faf9f8; }
.community-editor .ql-container.ql-snow { border: 1px solid var(--line); border-radius: 0; font-family: inherit; }
.community-editor__surface { min-height: 320px; background: var(--white); }
.community-editor .ql-editor { padding: 16px 18px; font-size: 14px; line-height: 1.75; }
.community-editor .ql-editor.ql-blank::before { left: 18px; right: 18px; color: #a9a29c; font-style: normal; }
.community-editor .ql-editor img { max-width: 100%; height: auto; }
.community-editor__status { color: var(--muted); font-size: 11px; min-height: 15px; }

/* 커뮤니티 댓글 */
.article-comments { max-width: 1000px; margin: 70px auto 0; border-top: 1px solid var(--ink); }
.article-comments h2 { padding: 18px 4px; font-size: 15px; }
.article-comments h2 b { margin-left: 6px; color: var(--red, #c92f35); }
.article-comments__empty { padding: 26px 4px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.article-comments__empty a { text-decoration: underline; }
.comment-list { display: grid; list-style: none; }
.comment-list > li { padding: 18px 4px; border-top: 1px solid var(--line); }
.comment-list > li.is-reply { padding-left: 26px; background: #faf9f8; }
.comment-list > li.is-reply .comment-meta::before { content: "↳"; margin-right: 6px; color: var(--muted); }
.comment-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.comment-meta b { font-weight: 600; }
.comment-badge { padding: 2px 7px; border-radius: 20px; background: var(--ink); color: var(--white); font-size: 9px; font-style: normal; }
.comment-meta time { color: var(--muted); font-size: 11px; }
.comment-body { margin-top: 8px; font-size: 13px; line-height: 1.7; word-break: break-word; }
.comment-actions { display: flex; margin-top: 10px; align-items: center; flex-wrap: wrap; gap: 8px; }
.comment-actions form { display: flex; align-items: center; gap: 6px; }
.comment-actions input { width: 120px; height: 30px; padding: 0 9px; border: 1px solid var(--line); font-size: 11px; }
.comment-actions button { height: 30px; padding: 0 12px; border: 1px solid var(--line); background: var(--white); font-size: 11px; cursor: pointer; }
.comment-actions button:hover { border-color: var(--ink); }
.comment-form { display: grid; margin-top: 22px; padding: 20px; gap: 12px; border: 1px solid var(--line); background: var(--white); }
.comment-form__replying { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; }
.comment-form__replying button { border: 0; background: none; color: var(--ink); font-size: 11px; text-decoration: underline; cursor: pointer; }
.comment-form__guest { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.comment-form__guest label { display: grid; gap: 5px; font-size: 11px; }
.comment-form__guest input { height: 38px; padding: 0 11px; border: 1px solid var(--line); font-size: 13px; }
.comment-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--line); font-size: 13px; line-height: 1.6; resize: vertical; }
.comment-form__error { color: var(--red, #c92f35); font-size: 11px; }
.comment-form__actions { display: flex; justify-content: flex-end; }

.article-neighbors { max-width: 1000px; margin: 90px auto 0; border-top: 1px solid var(--ink); }
.article-neighbors > div { display: grid; min-height: 68px; padding: 0 18px; grid-template-columns: 90px minmax(0,1fr); align-items: center; border-bottom: 1px solid var(--line); }
.article-neighbors span { color: #89837e; font-size: 11px; }
.article-neighbors a,
.article-neighbors b { font-size: 13px; font-weight: 500; }
.article-actions { display: flex; margin-top: 35px; justify-content: center; gap: 8px; }

.content-form-page { max-width: 900px; }
.content-form { padding: 45px 50px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 20px 55px rgba(32,28,24,.05); }
.content-form > label { display: grid; margin-top: 25px; gap: 9px; }
.content-form > label:first-child { margin-top: 0; }
.content-form label > span:first-child { font-size: 13px; font-weight: 600; }
.content-form label b { margin-left: 5px; color: var(--red); font-size: 10px; }
.content-form input:not([type="checkbox"]):not([type="file"]),
.content-form select,
.content-form textarea { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid #d8d4cf; border-radius: 0; background: var(--white); font: inherit; }
.content-form textarea { min-height: 220px; padding-block: 15px; resize: vertical; line-height: 1.7; }
.content-form input:focus,
.content-form select:focus,
.content-form textarea:focus { border-color: var(--ink); outline: 0; box-shadow: inset 0 0 0 1px var(--ink); }
.content-form label > small { min-height: 17px; color: var(--red); font-size: 11px; }
.editor-toolbar { display: flex; min-height: 42px; padding: 0 10px; align-items: center; gap: 4px; border: 1px solid #d8d4cf; border-bottom: 0; background: #f6f5f3; }
.editor-toolbar button { min-width: 32px; height: 28px; padding: 0 7px; font-size: 11px; font-weight: 700; }
.editor-toolbar span { width: 1px; height: 18px; background: var(--line); }
.editor-toolbar + textarea { margin-top: -9px; }
.file-field { display: flex; min-height: 68px; padding: 15px; align-items: center; justify-content: space-between; gap: 20px; border: 1px dashed #cbc6c0; background: #faf9f7; }
.file-field input { max-width: 70%; }
.file-field i { color: var(--muted); font-size: 10px; font-style: normal; }
.content-form__actions { display: flex; margin-top: 38px; justify-content: center; gap: 8px; }

.content-form__section { display: flex; margin: 45px 0 5px; padding: 26px 0 18px; align-items: flex-start; gap: 16px; border-top: 1px solid var(--line); }
.content-form__section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.content-form__section > span { display: grid; width: 30px; height: 30px; place-items: center; color: var(--white); background: var(--ink); font: 700 10px "Figtree", sans-serif; }
.content-form__section h2 { font-size: 21px; }
.content-form__section p { margin-top: 5px; color: var(--muted); font-size: 12px; }
.content-form__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.content-form__grid label { display: grid; margin-top: 25px; gap: 9px; }
.content-check { display: flex !important; min-height: 48px; padding: 0 14px; align-items: center; grid-template-columns: auto 1fr; border: 1px solid var(--line); background: #faf9f7; cursor: pointer; }
.content-check input { width: 17px; height: 17px; margin: 0 10px 0 0; accent-color: var(--red); }
.content-check span { font-size: 12px !important; font-weight: 400 !important; }

.faq-search { max-width: 760px; margin: 0 auto 44px; }
.faq-search > label { display: block; margin-bottom: 16px; font-size: 26px; font-weight: 600; text-align: center; }
.faq-search > div { display: grid; grid-template-columns: 1fr auto; }
.faq-search input { height: 58px; padding-left: 20px; }
.faq-search button { min-width: 90px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list article { border-bottom: 1px solid var(--line); background: var(--white); }
.faq-list article > button { display: grid; width: 100%; min-height: 88px; padding: 18px 22px; grid-template-columns: 38px 110px minmax(0,1fr) 32px; align-items: center; gap: 14px; text-align: left; }
.faq-list article > button > span,
.faq-list article > div > span { color: var(--red); font: 700 18px "Figtree",sans-serif; }
.faq-list article > button b { color: #7f7974; font-size: 11px; }
.faq-list article > button strong { font-size: 16px; }
.faq-list article > button i { font-size: 23px; font-style: normal; font-weight: 300; text-align: center; transition: transform .2s; }
.faq-list article > button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-list article > div { display: grid; padding: 28px 66px 34px; grid-template-columns: 38px minmax(0,1fr); gap: 14px; color: #625d58; background: #f1efec; }
.faq-list article > div p { font-size: 14px; line-height: 1.85; }
.support-contact-strip { display: flex; min-height: 150px; margin-top: 58px; padding: 32px 40px; align-items: center; justify-content: space-between; gap: 40px; color: var(--white); background: #252321; }
.support-contact-strip p { color: #e65c62; font: 700 9px "Figtree",sans-serif; letter-spacing: .15em; }
.support-contact-strip strong { display: block; margin-top: 8px; font-size: 22px; }
.support-contact-strip span { display: block; margin-top: 7px; color: rgba(255,255,255,.58); font-size: 12px; }
.support-contact-strip > a { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: 13px; font-weight: 700; }

.software-notice { display: flex; padding: 22px 25px; align-items: center; gap: 16px; border: 1px solid #dad6d1; background: var(--white); }
.software-notice > span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--white); border-radius: 50%; background: var(--ink); font-weight: 700; }
.software-notice strong { font-size: 13px; }
.software-notice p { margin-top: 4px; color: var(--muted); font-size: 11px; }
.software-list { margin-top: 30px; border-top: 1px solid var(--ink); }
.software-list article { display: grid; min-height: 190px; padding: 28px 24px; grid-template-columns: 72px minmax(0,1fr) auto; align-items: center; gap: 26px; border-bottom: 1px solid var(--line); background: var(--white); }
.software-icon { display: grid; width: 64px; height: 64px; place-items: center; color: var(--white); border-radius: 50%; background: #3c3936; font-size: 24px; }
.software-list article > div:nth-child(2) > p { color: var(--red); font: 700 9px "Figtree",sans-serif; letter-spacing: .14em; }
.software-list h2 { margin-top: 6px; font-size: 24px; }
.software-list article > div:nth-child(2) > span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
.software-list dl { display: flex; margin-top: 20px; gap: 32px; }
.software-list dl div { display: grid; gap: 4px; }
.software-list dt { color: #9a948e; font: 700 8px "Figtree",sans-serif; letter-spacing: .1em; }
.software-list dd { margin: 0; font-size: 11px; }
.software-list article > a,
.software-list article > button { min-width: 120px; min-height: 44px; display: flex; padding-inline: 15px; align-items: center; justify-content: center; color: var(--white); border: 0; background: var(--ink); font-size: 12px; font-weight: 700; cursor: default; }

.product-inquiry-list { border-top: 1px solid var(--ink); }
.product-inquiry-list article { display: grid; min-height: 134px; padding: 18px 10px; grid-template-columns: 280px minmax(0,1fr); align-items: center; gap: 32px; border-bottom: 1px solid var(--line); background: var(--white); }
.product-inquiry-list article > a { display: grid; grid-template-columns: 94px minmax(0,1fr); align-items: center; gap: 18px; }
.product-inquiry-list img { width: 94px; height: 94px; object-fit: cover; background: #efedea; }
.product-inquiry-list article > a span { display: grid; gap: 8px; }
.product-inquiry-list article > a small { color: var(--muted); font-size: 11px; }
.product-inquiry-list article > a b { font-size: 13px; }
.product-inquiry-list article > div > p { display: flex; align-items: center; gap: 10px; }
.product-inquiry-list article > div i { color: #8b8580; font-size: 10px; font-style: normal; }
.product-inquiry-list h2 { margin-top: 9px; font-size: 17px; }
.product-inquiry-list footer { display: flex; margin-top: 12px; gap: 16px; color: #8e8882; font-size: 10px; }

.content-status { display: inline-flex; width: fit-content; min-height: 25px; padding: 0 8px; align-items: center; color: #9c6c28; background: #fff2dd; font-size: 9px; font-weight: 700; }
.content-status.is-complete { color: #25734e; background: #e8f6ee; }
.private-board-list { border-top: 1px solid var(--ink); }
.private-board-list > div,
.private-board-list article { display: grid; grid-template-columns: 110px minmax(0,1fr) 120px 110px; align-items: center; gap: 20px; }
.private-board-list > div { min-height: 44px; padding: 0 18px; color: #8b8580; border-bottom: 1px solid var(--line); background: #efedea; font-size: 10px; text-align: center; }
.private-board-list > div span:nth-child(2) { text-align: left; }
.private-board-list article { position: relative; min-height: 92px; padding: 18px; border-bottom: 1px solid var(--line); background: var(--white); }
.private-board-list article > div { display: grid; gap: 7px; }
.private-board-list article small { color: var(--muted); font-size: 10px; }
.private-board-list article a { font-size: 15px; font-weight: 600; }
.private-board-list article > span:not(.content-status),
.private-board-list article time { color: #807a75; font-size: 11px; text-align: center; }

.support-detail-head { padding: 50px 55px; border: 1px solid var(--line); background: var(--white); }
.support-detail-head > p { margin-top: 18px; color: var(--red); font-size: 11px; font-weight: 700; }
.support-detail-head h1 { margin-top: 12px; font-size: 36px; letter-spacing: -.04em; }
.support-detail-head > div { display: flex; margin-top: 25px; gap: 18px; color: var(--muted); font-size: 11px; }
.support-conversation { margin-top: 16px; }
.support-conversation article { padding: 45px 55px; border: 1px solid var(--line); background: var(--white); }
.support-conversation article + article { margin-top: 12px; }
.support-conversation article.is-answer { background: #efedea; }
.support-conversation p { color: var(--red); font: 700 9px "Figtree",sans-serif; letter-spacing: .14em; }
.support-conversation strong { display: block; margin-top: 12px; font-size: 20px; }
.support-conversation span { display: block; margin-top: 16px; color: #625d58; font-size: 14px; line-height: 1.9; }

.as-process { display: grid; min-height: 300px; padding: 45px; grid-template-columns: minmax(270px,.7fr) minmax(0,1.3fr); align-items: center; gap: 55px; color: var(--white); background: #262422; }
.as-process header p { color: #e55b60; font: 700 10px "Figtree",sans-serif; letter-spacing: .15em; }
.as-process header h2 { margin-top: 15px; font-size: 34px; line-height: 1.3; }
.as-process ol { display: grid; padding: 0; grid-template-columns: repeat(4,minmax(0,1fr)); list-style: none; }
.as-process li { min-height: 150px; padding: 18px; border-left: 1px solid rgba(255,255,255,.14); }
.as-process li > span { color: #e45a5f; font: 700 10px "Figtree",sans-serif; }
.as-process li strong { display: block; margin-top: 35px; font-size: 15px; }
.as-process li small { display: block; margin-top: 8px; color: rgba(255,255,255,.5); font-size: 10px; line-height: 1.5; }
.as-process + .content-toolbar { margin-top: 52px; }
.as-case-list { border-top: 1px solid var(--ink); }
.as-case-list article { display: grid; min-height: 115px; padding: 20px 18px; grid-template-columns: 170px minmax(0,1fr) 110px 40px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); background: var(--white); }
.as-case-list article > div:first-child { display: grid; justify-items: start; gap: 9px; }
.as-case-list article > div:first-child small { color: var(--muted); font-size: 10px; }
.as-case-list h2 { font-size: 17px; }
.as-case-list p { margin-top: 8px; color: var(--muted); font-size: 12px; }
.as-case-list time { color: var(--muted); font-size: 11px; }
.as-case-list article > a { font-size: 18px; }

.service-detail-title { display: flex; padding: 42px 0 38px; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.service-detail-title p { color: var(--red); font: 700 10px "Figtree",sans-serif; letter-spacing: .16em; }
.service-detail-title h1 { margin-top: 10px; font-size: 48px; }
.service-detail-title div > span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; }
.service-progress { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4,minmax(0,1fr)); list-style: none; border-bottom: 1px solid var(--line); }
.service-progress li { position: relative; min-height: 150px; padding: 25px; color: #aaa49e; background: var(--white); }
.service-progress li + li { border-left: 1px solid var(--line); }
.service-progress li::before { position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--red); content: ""; transition: width .3s; }
.service-progress li.is-done { color: var(--ink); }
.service-progress li.is-done::before { width: 100%; }
.service-progress span { color: var(--red); font: 700 10px "Figtree",sans-serif; }
.service-progress strong { display: block; margin-top: 35px; font-size: 15px; }
.service-progress small { display: block; margin-top: 8px; color: #99938d; font-size: 10px; }
.service-detail-grid { display: grid; margin-top: 35px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.service-detail-grid > section { padding: 38px; border: 1px solid var(--line); background: var(--white); }
.service-detail-grid section > p { color: var(--red); font: 700 9px "Figtree",sans-serif; letter-spacing: .14em; }
.service-detail-grid h2 { margin-top: 9px; font-size: 23px; }
.service-detail-grid dl { margin: 26px 0 0; }
.service-detail-grid dl div { display: grid; min-height: 52px; grid-template-columns: 100px 1fr; align-items: center; border-top: 1px solid var(--line); }
.service-detail-grid dt { color: var(--muted); font-size: 11px; }
.service-detail-grid dd { margin: 0; font-size: 12px; font-weight: 600; }
.service-detail-grid article { margin-top: 26px; padding: 22px; background: #f2f0ed; }
.service-detail-grid article time { color: var(--muted); font-size: 10px; }
.service-detail-grid article strong { display: block; margin-top: 12px; font-size: 16px; }
.service-detail-grid article span { display: block; margin-top: 10px; color: #6f6964; font-size: 12px; line-height: 1.7; }

.policy-page { padding-top: 65px; padding-bottom: 120px; }
.policy-page > nav { display: flex; border-bottom: 1px solid var(--ink); }
.policy-page > nav a { min-width: 180px; min-height: 52px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; }
.policy-page > nav a[aria-current="page"] { color: var(--white); background: var(--ink); }
.policy-updated { margin-top: 25px; color: var(--muted); font-size: 11px; text-align: right; }
.policy-content { margin-top: 35px; padding: 55px 65px; border: 1px solid var(--line); background: var(--white); }
.policy-content section + section { margin-top: 45px; padding-top: 45px; border-top: 1px solid var(--line); }
.policy-content h2 { font-size: 20px; }
.policy-content p { margin-top: 16px; color: #625d58; font-size: 14px; line-height: 1.95; }

.search-page { padding-top: 90px; padding-bottom: 120px; }
.search-page > header { max-width: 900px; margin: 0 auto; text-align: center; }
.search-page h1 { margin-top: 13px; font-size: 58px; letter-spacing: -.06em; }
.search-page form { display: grid; margin-top: 38px; grid-template-columns: 1fr auto; }
.search-page form input { height: 62px; padding-left: 20px; }
.search-page form button { min-width: 100px; }
.search-summary { display: flex; margin-top: 80px; min-height: 65px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink); }
.search-summary h2 { font-size: 22px; }
.search-summary span { color: var(--red); font-size: 13px; font-weight: 700; }
.search-results article { padding: 32px 20px; border-bottom: 1px solid var(--line); background: var(--white); }
.search-results article > p { color: var(--red); font-size: 10px; font-weight: 700; }
.search-results h2 { margin-top: 8px; font-size: 20px; }
.search-results article > span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.search-results footer { display: flex; margin-top: 18px; align-items: center; justify-content: space-between; color: #8b8580; font-size: 10px; }
.search-results footer a { color: var(--ink); font-size: 11px; font-weight: 700; }
.search-page .content-empty { margin-top: 70px; }

.error-page { min-height: 680px; padding-block: 120px; display: flex; align-items: center; flex-direction: column; justify-content: center; text-align: center; }
.error-page > p { color: var(--red); font: 700 72px "Figtree",sans-serif; letter-spacing: -.04em; }
.error-page h1 { margin-top: 15px; font-size: 38px; letter-spacing: -.05em; }
.error-page > span { margin-top: 15px; color: var(--muted); font-size: 14px; }
.error-page > div { display: flex; margin-top: 35px; gap: 8px; }

@media (max-width: 1024px) {
    .content-hero__inner { min-height: 290px; padding-block: 65px 58px; grid-template-columns: 1fr; gap: 24px; }
    .content-hero__inner > p { max-width: 650px; }
    .content-tabs { overflow-x: auto; scrollbar-width: none; }
    .content-tabs::-webkit-scrollbar { display: none; }
    .content-tabs a { min-width: 140px; }
    .story-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .board-list__head,
    .board-row { grid-template-columns: 90px minmax(0,1fr) 100px 100px; }
    .board-list__head span:last-child,
    .board-row > span:last-of-type { display: none; }
    .as-process { grid-template-columns: 1fr; }
    .product-inquiry-list article { grid-template-columns: 230px minmax(0,1fr); }
}

@media (max-width: 700px) {
    .content-hero__inner { width: calc(100% - 36px); min-height: 245px; padding-block: 50px 44px; }
    .content-hero h1 { font-size: 44px; }
    .content-hero__inner > p { font-size: 13px; }
    .content-tabs { width: 100%; border-left: 0; border-right: 0; }
    .content-tabs a { min-width: 120px; padding: 0 18px; }
    .content-main { width: calc(100% - 36px); padding-top: 42px; padding-bottom: 80px; }
    .content-toolbar { min-height: 0; padding-bottom: 18px; align-items: stretch; flex-direction: column; gap: 15px; }
    .content-toolbar form { width: 100%; }
    .content-toolbar > .content-button { width: 100%; }
    .content-filters { padding: 18px 0 20px; flex-wrap: nowrap; overflow-x: auto; }
    .content-filters a { flex: 0 0 auto; }
    .story-grid { grid-template-columns: 1fr; gap: 42px; }
    .story-card h2,
    .story-card__body > span { min-height: 0; }
    .board-list__head { display: none; }
    .board-row { min-height: 112px; padding: 18px 12px; grid-template-columns: 58px minmax(0,1fr); gap: 10px 12px; }
    .board-row > span:first-child { grid-row: 1 / 3; align-self: start; text-align: left; }
    .board-row > div { grid-column: 2; }
    .board-row > div a { font-size: 15px; }
    .board-row > div small { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .board-row > span:nth-of-type(2) { grid-column: 2; text-align: left; }
    .board-row > time { position: absolute; right: 12px; bottom: 18px; }
    .content-list-actions { justify-content: flex-start; }
    .content-list-actions > .content-button { right: 0; min-width: 95px; padding-inline: 12px; }
    .article-page { width: calc(100% - 36px); padding-top: 45px; padding-bottom: 80px; }
    .content-back { margin-bottom: 30px; }
    .article-head h1 { font-size: 35px; }
    .article-head > span { font-size: 13px; }
    .article-head > div { flex-wrap: wrap; gap: 8px 12px; }
    .article-head > div > * + * { padding-left: 12px; }
    .article-content { margin-top: 48px; }
    .article-content section { margin-top: 45px; }
    .article-content section h2 { font-size: 23px; }
    .article-content section p { font-size: 14px; line-height: 1.9; }
    .article-download { padding: 19px; align-items: flex-start; flex-direction: column; gap: 16px; }
    .article-neighbors { margin-top: 60px; }
    .article-neighbors > div { padding: 12px 6px; grid-template-columns: 64px minmax(0,1fr); }
    .content-form-page { width: calc(100% - 36px); }
    .content-form { padding: 28px 20px; }
    .content-form__grid { grid-template-columns: 1fr; gap: 0; }
    .file-field { align-items: flex-start; flex-direction: column; }
    .file-field input { max-width: 100%; }
    .faq-search > label { font-size: 21px; }
    .faq-search input { height: 52px; }
    .faq-list article > button { min-height: 82px; padding: 16px 12px; grid-template-columns: 28px minmax(0,1fr) 28px; gap: 10px; }
    .faq-list article > button b { display: none; }
    .faq-list article > button strong { font-size: 14px; }
    .faq-list article > div { padding: 24px 16px; grid-template-columns: 28px minmax(0,1fr); gap: 10px; }
    .support-contact-strip { padding: 28px 24px; align-items: flex-start; flex-direction: column; gap: 24px; }
    .software-list article { padding: 24px 18px; grid-template-columns: 48px minmax(0,1fr); align-items: start; gap: 15px; }
    .software-icon { width: 46px; height: 46px; }
    .software-list h2 { font-size: 20px; }
    .software-list dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
    .software-list article > a,
    .software-list article > button { grid-column: 1 / -1; width: 100%; }
    .product-inquiry-list article { padding: 16px 0; grid-template-columns: 1fr; gap: 15px; }
    .product-inquiry-list article > a { grid-template-columns: 78px minmax(0,1fr); }
    .product-inquiry-list img { width: 78px; height: 78px; }
    .private-board-list > div { display: none; }
    .private-board-list article { min-height: 120px; padding: 18px 12px; grid-template-columns: 85px minmax(0,1fr); gap: 12px; }
    .private-board-list article > div { grid-column: 2; }
    .private-board-list article > span:not(.content-status) { grid-column: 2; text-align: left; }
    .private-board-list article time { position: absolute; right: 12px; bottom: 18px; }
    .support-detail-head,
    .support-conversation article { padding: 28px 22px; }
    .support-detail-head h1 { font-size: 27px; }
    .as-process { padding: 30px 22px; gap: 30px; }
    .as-process header h2 { font-size: 28px; }
    .as-process ol { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .as-process li { min-height: 125px; }
    .as-case-list article { padding: 18px 12px; grid-template-columns: 1fr auto; gap: 12px; }
    .as-case-list article > div:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
    .as-case-list time { grid-row: 1; grid-column: 2; }
    .as-case-list article > a { grid-row: 2; grid-column: 2; }
    .service-detail-title { align-items: flex-start; flex-direction: column; gap: 22px; }
    .service-detail-title h1 { font-size: 36px; }
    .service-progress { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .service-progress li { min-height: 125px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-grid > section { padding: 26px 20px; }
    .policy-page { width: calc(100% - 36px); padding-top: 42px; padding-bottom: 80px; }
    .policy-page > nav a { min-width: 0; flex: 1; }
    .policy-content { padding: 32px 22px; }
    .search-page { width: calc(100% - 36px); padding-top: 60px; }
    .search-page h1 { font-size: 45px; }
    .search-page form input { height: 56px; }
    .search-summary { margin-top: 55px; }
    .error-page { width: calc(100% - 36px); min-height: 560px; }
    .error-page > p { font-size: 58px; }
    .error-page h1 { font-size: 30px; }
}

/* v2 cascade lock: keep these rules after the legacy content declarations. */
.content-hero { color: var(--ink); background: var(--paper); }
.content-hero__inner {
    min-height: 0;
    padding-block: 82px 54px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    align-items: end;
    gap: 70px;
}
.content-hero .eyebrow { color: var(--red); }
.content-hero h1 {
    margin-top: 12px;
    color: var(--ink);
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.065em;
}
.content-hero__inner > p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.content-tabs {
    display: grid;
    min-height: 60px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    align-items: stretch;
    border: 1px solid var(--line);
    border-right: 0;
    background: rgba(255,255,255,.92);
}
.content-tabs a {
    min-width: 0;
    padding: 0 18px;
    color: #837d78;
    border-right: 1px solid var(--line);
    background: transparent;
    font-size: 13px;
}
.content-tabs a[aria-current="page"] { color: var(--ink); background: var(--white); font-weight: 700; }
.content-tabs a[aria-current="page"]::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
}
.content-main { padding-top: 54px; padding-bottom: 110px; }
.content-toolbar { min-height: 64px; border-top: 1px solid var(--ink); border-bottom-color: var(--line); }
.content-toolbar strong { font-size: 15px; }
.content-toolbar span { font-size: 13px; }
.content-filters { padding: 22px 0 28px; gap: 7px; }
.board-list,
.private-board-list,
.as-case-list,
.product-inquiry-list { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.board-list__head,
.private-board-list > div { min-height: 50px; color: #8f8983; background: #f0eeeb; }
.board-row { min-height: 88px; padding-block: 17px; }
.story-grid { gap: 58px 24px; }
.story-card__image { aspect-ratio: 1.36; }
.story-card h2 { font-size: 22px; }
.content-button { min-width: 132px; min-height: 50px; padding-inline: 22px; font-size: 13px; }
.content-form { padding: 48px 52px; box-shadow: none; }
.content-form input:not([type="checkbox"]):not([type="file"]),
.content-form select,
.content-form textarea { min-height: 54px; }
.content-form input[aria-invalid="true"],
.content-form select[aria-invalid="true"],
.content-form textarea[aria-invalid="true"] { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.content-check.is-invalid { border-color: var(--red); }
.content-check-error { display: block; min-height: 17px; margin-top: 7px; color: var(--red); font-size: 11px; }
.faq-search { max-width: none; margin: 0 0 34px; }
.faq-search > label { margin-bottom: 14px; font-size: 24px; text-align: left; }
.faq-search > div { max-width: 700px; }
.faq-list article > button { min-height: 82px; padding-inline: 24px; }
.support-contact-strip { min-height: 144px; margin-top: 52px; padding: 34px 40px; background: var(--taupe); }
.support-contact-strip > a {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.44);
}
.software-list article { min-height: 170px; }
.software-icon { width: 58px; height: 58px; background: var(--taupe); }
.product-inquiry-list article { min-height: 126px; grid-template-columns: 270px minmax(0,1fr); }
.product-inquiry-list img { width: 92px; height: 92px; object-fit: contain; }
.private-board-list article { min-height: 86px; }
.as-process { display: block; min-height: 0; padding: 0; color: var(--ink); background: transparent; }
.as-process header {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: minmax(0,1fr) minmax(280px,440px);
    align-items: end;
    gap: 60px;
}
.as-process header p { color: var(--red); }
.as-process header h2 { margin-top: 12px; font-size: clamp(32px,3vw,46px); line-height: 1.25; letter-spacing: -.045em; }
.as-process ol { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.as-process li { min-height: 178px; padding: 26px 24px; color: var(--ink); border-left: 1px solid var(--line); background: var(--white); }
.as-process li:last-child { border-right: 1px solid var(--line); }
.as-process li > span { color: var(--red); }
.as-process li strong { margin-top: 42px; font-size: 17px; }
.as-process li small { color: var(--muted); font-size: 11px; }
.policy-page > nav { border: 1px solid var(--line); border-right: 0; }
.policy-page > nav a { position: relative; min-height: 58px; color: var(--muted); border-right: 1px solid var(--line); background: var(--white); }
.policy-page > nav a[aria-current="page"] { color: var(--ink); background: var(--white); font-weight: 700; }
.policy-page > nav a[aria-current="page"]::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--red); content: ""; }

@media (max-width: 1024px) {
    .content-hero__inner { padding-block: 68px 46px; grid-template-columns: 1fr; gap: 22px; }
    .content-tabs { display: flex; }
    .content-tabs a { min-width: 145px; }
    .as-process header { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 700px) {
    .content-hero__inner { width: calc(100% - 36px); min-height: 0; padding-block: 48px 34px; }
    .content-hero h1 { font-size: 42px; }
    .content-hero__inner > p { font-size: 13px; }
    .content-tabs { width: 100%; min-height: 56px; border-inline: 0; }
    .content-tabs a { min-width: 124px; }
    .content-main { width: calc(100% - 36px); padding-top: 38px; padding-bottom: 78px; }
    .content-form { padding: 28px 20px; }
    .faq-search > div { max-width: none; }
    .as-process header { margin-bottom: 22px; }
    .as-process header h2 { font-size: 30px; }
    .as-process ol { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .as-process li { min-height: 136px; padding: 20px 16px; }
    .as-process li strong { margin-top: 28px; font-size: 15px; }
    .product-inquiry-list article { grid-template-columns: 1fr; }
}

/* ------------------------------ 비회원 조회 ------------------------------ */
.guest-lookup-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 26px;
    padding: 22px 26px;
    border: 1px solid var(--line, #e3e0dc);
    background: #fbfaf9;
}

.guest-lookup-box > div p {
    margin: 0;
    color: #c92f35;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.guest-lookup-box > div strong { display: block; margin: 5px 0 3px; font-size: 16px; }
.guest-lookup-box > div span { color: #76716d; font-size: 13px; }

.guest-lookup-box form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.guest-lookup-box form label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: #55504c;
}

.guest-lookup-box form input {
    height: 46px;
    width: 180px;
    padding: 0 14px;
    border: 1px solid var(--line, #e3e0dc);
    font-size: 14px;
}

.guest-lookup-box form button { height: 46px; padding: 0 24px; }

@media (max-width: 720px) {
    .guest-lookup-box form input { width: 100%; }
    .guest-lookup-box form label { flex: 1 1 100%; }
    .guest-lookup-box form button { flex: 1 1 100%; }
}

@media (max-width: 700px) {
    .article-comments { margin-top: 48px; }
    .comment-form__guest { grid-template-columns: minmax(0, 1fr); }
    .comment-list > li.is-reply { padding-left: 16px; }
    .comment-actions input { width: 100px; }
}
.rig-summary__partners{display:grid;margin-top:10px;padding:13px 14px;gap:7px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04)}.rig-summary__partners>small{color:#9ca0a6;font-size:9px;font-weight:700;letter-spacing:.12em}.rig-summary__partners>a{display:flex;min-height:32px;align-items:center;justify-content:space-between;gap:12px;color:#fff;font-size:11px;font-weight:700}.rig-summary__partners>a:hover span{text-decoration:underline}.rig-summary__partners b{color:#d62f38}
