@charset "utf-8";

.supporter-page {
    padding:40px 0 110px;
    color:#222;
}

/* =========================================================
   Intro
========================================================= */

.supporter-intro {
    position:relative;
    min-height:320px;
    padding:50px 60px;
    margin-bottom:70px;
    border-radius:24px;
    background:#f7f4ec;
    overflow:hidden;
    box-sizing:border-box;
}

.supporter-intro:before {
    position:absolute;
    top:-130px;
    right:-80px;
    width:380px;
    height:380px;
    border:1px solid rgba(179,159,108,.16);
    border-radius:50%;
    content:"";
}

.supporter-intro:after {
    position:absolute;
    right:24%;
    bottom:-90px;
    width:190px;
    height:190px;
    border-radius:50%;
    background:rgba(179,159,108,.08);
    content:"";
}

/* Intro Text */
.supporter-intro-text {
    position:relative;
    z-index:3;
    width:55%;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.supporter-eyebrow {
    display:block;
    margin-bottom:12px;
    color:#b39f6c;
    font-size:16px;
    font-weight:700;
    letter-spacing:.14em;
}

.supporter-intro h3 {
    margin:0;
    color:#3a352b;
    font-size:40px;
    line-height:1.45;
    font-weight:700;
    letter-spacing:-.055em;
    word-break:keep-all;
}

/*
 * 이미지 하단을 Intro 박스 바닥에 고정
 */
.supporter-intro-image {
    position:absolute;
    right:55px;
    bottom:0;
    z-index:2;
    width:44%;
    height:300px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    pointer-events:none;
}

.supporter-intro-image img {
    display:block;
    width:auto;
    max-width:100%;
    max-height:290px;
    margin:0;
    padding:0;
    object-fit:contain;
    object-position:center bottom;
    vertical-align:bottom;
}

/* =========================================================
   Section
========================================================= */

.supporter-section {
    margin-top:72px;
}

.supporter-section:first-of-type {
    margin-top:0;
}

.supporter-section-heading {
    margin-bottom:24px;
}

.supporter-section-heading>span {
    display:block;
    margin-bottom:4px;
    color:#b39f6c;
    font-size:14px;
    font-weight:700;
    letter-spacing:.12em;
}

.supporter-section-heading h4 {
    margin:0;
    color:#222;
    font-size:28px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:-.045em;
}

/* =========================================================
   후원방법
========================================================= */

.support-method-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.support-method-card {
    position:relative;
    min-height:220px;
    padding:32px;
    display:flex;
    align-items:flex-start;
    gap:24px;
    border:1px solid #e8e4da;
    border-radius:20px;
    background:#fff;
    box-sizing:border-box;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.support-method-card:hover {
    border-color:#cfc2a0;
    box-shadow:0 14px 38px rgba(83,69,38,.07);
    transform:translateY(-3px);
}

.support-method-icon {
    flex:0 0 auto;
    width:66px;
    height:66px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#f4f0e6;
    color:#8e7a4b;
}

.support-method-icon svg {
    width:31px;
    height:31px;
    stroke-width:1.7;
}

.support-method-content {
    min-width:0;
}

.support-method-category {
    display:block;
    margin-bottom:5px;
    color:#a39164;
    font-size:14px;
    line-height:1.4;
    font-weight:700;
}

.support-method-card h5 {
    margin:0 0 13px;
    color:#222;
    font-size:22px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:-.04em;
}

.support-method-card p {
    margin:0;
    color:#666;
    font-size:17px;
    line-height:1.75;
    letter-spacing:-.025em;
    word-break:keep-all;
}

/* CMS 상세 */
.support-method-list {
    margin:18px 0 0;
    padding:17px 0 0;
    border-top:1px solid #eee;
    list-style:none;
}

.support-method-list li {
    display:grid;
    grid-template-columns:100px 1fr;
    gap:10px;
    color:#555;
    font-size:16px;
    line-height:1.6;
}

.support-method-list li+li {
    margin-top:7px;
}

.support-method-list strong {
    color:#333;
    font-weight:700;
}

.support-method-list span {
    word-break:keep-all;
}

/* =========================================================
   계좌
========================================================= */

.support-account {
    margin-top:18px;
    padding:17px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    border-radius:12px;
    background:#f7f4ec;
}

.support-account span {
    flex:0 0 auto;
    color:#8e7a4b;
    font-size:15px;
    font-weight:700;
}

.support-account strong {
    color:#3e392e;
    font-size:19px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:.02em;
}

/* =========================================================
   후원혜택
========================================================= */

.support-benefit-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.support-benefit-card {
    min-height:180px;
    padding:30px 32px;
    display:flex;
    align-items:flex-start;
    gap:22px;
    border-radius:18px;
    background:#f7f4ec;
    box-sizing:border-box;
}

.support-benefit-icon {
    flex:0 0 auto;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:17px;
    background:#fff;
    color:#8e7a4b;
}

.support-benefit-icon svg {
    width:28px;
    height:28px;
    stroke-width:1.7;
}

.support-benefit-card h5 {
    margin:2px 0 9px;
    color:#332f27;
    font-size:20px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:-.035em;
}

.support-benefit-card p {
    margin:0;
    color:#666;
    font-size:17px;
    line-height:1.8;
    letter-spacing:-.025em;
    word-break:keep-all;
}

.support-benefit-card b {
    color:#8e7a4b;
    font-weight:700;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width:1024px) {

    .supporter-intro {
        min-height:290px;
        padding:42px;
    }

    .supporter-intro-text {
        width:56%;
        min-height:206px;
    }

    .supporter-intro h3 {
        font-size:35px;
    }

    .supporter-intro-image {
        right:24px;
        width:43%;
        height:260px;
    }

    .supporter-intro-image img {
        max-height:245px;
    }

    .support-method-grid,
    .support-benefit-grid {
        grid-template-columns:1fr;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width:700px) {

    .supporter-page {
        padding:30px 0 70px;
    }

    /*
     * 모바일에서는 이미지 absolute 해제
     */
    .supporter-intro {
        min-height:auto;
        padding:32px 24px 0;
        margin-bottom:52px;
        border-radius:18px;
    }

    .supporter-intro:before {
        top:-110px;
        right:-110px;
        width:260px;
        height:260px;
    }

    .supporter-intro:after {
        display:none;
    }

    .supporter-intro-text {
        width:100%;
        min-height:auto;
        display:block;
    }

    .supporter-intro h3 {
        font-size:29px;
    }

    .supporter-intro-image {
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        height:185px;
        margin-top:18px;
        display:flex;
        align-items:flex-end;
        justify-content:center;
    }

    .supporter-intro-image img {
        display:block;
        width:auto;
        max-width:100%;
        max-height:185px;
        margin:0;
        object-fit:contain;
        object-position:center bottom;
    }

    .supporter-section {
        margin-top:54px;
    }

    .supporter-section-heading {
        margin-bottom:18px;
    }

    .supporter-section-heading h4 {
        font-size:24px;
    }

    .support-method-card {
        min-height:auto;
        padding:24px 20px;
        gap:16px;
        border-radius:16px;
    }

    .support-method-icon {
        width:56px;
        height:56px;
        border-radius:16px;
    }

    .support-method-icon svg {
        width:27px;
        height:27px;
    }

    .support-method-card h5 {
        font-size:20px;
    }

    .support-method-card p {
        font-size:16px;
    }

    .support-method-list li {
        display:block;
        font-size:15px;
    }

    .support-method-list strong {
        display:block;
        margin-bottom:2px;
    }

    .support-account {
        padding:14px 16px;
        display:block;
    }

    .support-account span {
        display:block;
        margin-bottom:3px;
    }

    .support-account strong {
        display:block;
        font-size:17px;
        word-break:break-all;
    }

    .support-benefit-card {
        min-height:auto;
        padding:24px 20px;
        gap:16px;
    }

    .support-benefit-icon {
        width:52px;
        height:52px;
    }

    .support-benefit-card h5 {
        font-size:18px;
    }

    .support-benefit-card p {
        font-size:16px;
    }
}

@charset "utf-8";

.support-write-page {
    padding:40px 0 110px;
    color:#222;
}

/* =========================================================
   Intro
========================================================= */

.support-write-intro {
    margin-bottom:42px;
}

.support-write-eyebrow {
    display:block;
    margin-bottom:8px;
    color:#b39f6c;
    font-size:16px;
    font-weight:700;
    letter-spacing:.14em;
}

.support-write-intro h3 {
    margin:0;
    color:#222;
    font-size:38px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:-.05em;
}

.support-write-intro p {
    margin:12px 0 0;
    color:#777;
    font-size:18px;
    line-height:1.75;
    letter-spacing:-.025em;
    word-break:keep-all;
}

/* =========================================================
   Step
========================================================= */

.support-step {
    max-width:600px;
    margin:0 auto 64px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.support-step-item {
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:10px;
    color:#999;
}

.support-step-item>span {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    border-radius:50%;
    background:#fff;
    color:#999;
    font-size:13px;
    font-weight:700;
}

.support-step-item>span svg {
    width:18px;
    height:18px;
}

.support-step-item strong {
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
}

.support-step-item.is-active {
    color:#8e7a4b;
}

.support-step-item.is-active>span {
    border-color:#b39f6c;
    background:#b39f6c;
    color:#fff;
}

.support-step-item.is-complete {
    color:#8e7a4b;
}

.support-step-item.is-complete>span {
    border-color:#b39f6c;
    background:#f4f0e6;
    color:#8e7a4b;
}

.support-step-line {
    width:110px;
    height:1px;
    margin:0 18px;
    background:#ddd;
}

.support-step-line.is-complete {
    background:#c6b78d;
}

/* =========================================================
   Section Heading
========================================================= */

.support-form-section {
    margin-top:66px;
}

.support-form-section:first-of-type {
    margin-top:0;
}

.support-form-heading {
    position:relative;
    margin-bottom:22px;
}

.support-form-heading>span {
    display:block;
    margin-bottom:4px;
    color:#b39f6c;
    font-size:14px;
    font-weight:700;
    letter-spacing:.12em;
}

.support-form-heading h4 {
    margin:0;
    color:#222;
    font-size:28px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:-.045em;
}

.support-form-heading>p {
    position:absolute;
    right:0;
    bottom:4px;
    margin:0;
    color:#777;
    font-size:15px;
}

.required-mark {
    color:#d65c5c;
}

/* =========================================================
   개인정보 동의
========================================================= */

.agreement-box {
    padding:42px;
    border:1px solid #e8e4da;
    border-radius:20px;
    background:#fff;
}

.agreement-intro {
    margin:0 0 34px;
    padding:24px 26px;
    border-radius:14px;
    background:#f7f4ec;
    color:#555;
    font-size:17px;
    line-height:1.8;
    word-break:keep-all;
}

.agreement-section {
    padding:30px 0;
    border-top:1px solid #eee;
}

.agreement-section:first-of-type {
    border-top:0;
    padding-top:0;
}

.agreement-section:last-child {
    padding-bottom:0;
}

.agreement-section h5 {
    margin:0 0 16px;
    color:#332f27;
    font-size:20px;
    line-height:1.4;
    font-weight:700;
    letter-spacing:-.035em;
}

.agreement-section p {
    margin:0;
    color:#666;
    font-size:17px;
    line-height:1.8;
    word-break:keep-all;
}

.agreement-section ul {
    margin:12px 0 0;
    padding:0;
    list-style:none;
}

.agreement-section li {
    position:relative;
    padding-left:17px;
    color:#666;
    font-size:17px;
    line-height:1.8;
    word-break:keep-all;
}

.agreement-section li:before {
    position:absolute;
    top:13px;
    left:0;
    width:5px;
    height:5px;
    border-radius:50%;
    background:#b39f6c;
    content:"";
}

.agreement-check {
    margin-top:22px;
    padding:20px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    border-radius:12px;
    background:#faf9f6;
}

.agreement-check p {
    color:#444;
    font-weight:600;
}

.custom-check {
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:9px;
    cursor:pointer;
}

.custom-check input {
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
}

.custom-check-box {
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ccc;
    border-radius:7px;
    background:#fff;
    color:transparent;
    transition:.2s ease;
}

.custom-check-box svg {
    width:17px;
    height:17px;
    stroke-width:2.4;
}

.custom-check input:checked+.custom-check-box {
    border-color:#b39f6c;
    background:#b39f6c;
    color:#fff;
}

.custom-check input:focus-visible+.custom-check-box {
    outline:2px solid #8e7a4b;
    outline-offset:3px;
}

.custom-check strong {
    color:#555;
    font-size:16px;
    font-weight:700;
}

.agreement-notice {
    margin-top:18px;
    padding:22px 24px;
    display:flex;
    align-items:flex-start;
    gap:14px;
    border-radius:14px;
    background:#f4f0e6;
}

.agreement-notice>svg {
    flex:0 0 auto;
    width:22px;
    height:22px;
    margin-top:3px;
    color:#8e7a4b;
}

.agreement-notice p {
    margin:0;
    color:#665f50;
    font-size:15px;
    line-height:1.75;
    word-break:keep-all;
}

.agreement-notice p+p {
    margin-top:7px;
}

/* =========================================================
   입력폼
========================================================= */

.support-form-card {
    padding:36px;
    border:1px solid #e8e4da;
    border-radius:20px;
    background:#fff;
}

.support-field-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px 30px;
}

.support-field-full {
    grid-column:1 / -1;
}

.support-field label,
.support-field-label {
    display:block;
    margin-bottom:10px;
    color:#333;
    font-size:16px;
    line-height:1.4;
    font-weight:700;
}

.support-input {
    width:100%;
    height:54px;
    padding:0 16px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    background:#fff;
    color:#333;
    font-family:inherit;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
    transition:border-color .2s ease,box-shadow .2s ease;
}

.support-input::placeholder {
    color:#aaa;
}

.support-input:focus {
    border-color:#b39f6c;
    box-shadow:0 0 0 3px rgba(179,159,108,.12);
}

.support-input[readonly] {
    background:#fafafa;
}

/* 주소 */
.support-address {
    display:grid;
    gap:10px;
}

.support-address-zip {
    display:flex;
    gap:8px;
}

.support-address-zip .support-input {
    width:180px;
}

.support-address-btn {
    height:54px;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    border:1px solid #b39f6c;
    border-radius:10px;
    background:#fff;
    color:#8e7a4b;
    font-family:inherit;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

.support-address-btn svg {
    width:18px;
    height:18px;
}

/* Radio */
.support-choice-group {
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.support-choice {
    position:relative;
    cursor:pointer;
}

.support-choice input {
    position:absolute;
    width:1px;
    height:1px;
    opacity:0;
}

.support-choice span {
    min-width:110px;
    height:54px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    border-radius:10px;
    background:#fff;
    color:#555;
    font-size:16px;
    font-weight:600;
    box-sizing:border-box;
    transition:.2s ease;
}

.support-choice input:checked+span {
    border-color:#b39f6c;
    background:#f4f0e6;
    color:#8e7a4b;
}

.support-choice input:focus-visible+span {
    outline:2px solid #8e7a4b;
    outline-offset:2px;
}

/* 금액 */
.support-money-wrap {
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.support-money-etc {
    display:flex;
    align-items:center;
    gap:8px;
}

.support-money-etc .support-input {
    width:200px;
}

.support-money-etc span {
    color:#555;
    font-size:16px;
}

.support-money-etc .support-input:disabled {
    background:#f5f5f5;
    color:#aaa;
}

/* CMS 안내 */
.support-cms-notice {
    margin-top:22px;
    padding:24px 26px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    border-radius:14px;
    background:#f7f4ec;
}

.support-cms-notice-icon {
    flex:0 0 auto;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#fff;
    color:#8e7a4b;
}

.support-cms-notice-icon svg {
    width:21px;
    height:21px;
}

.support-cms-notice p {
    margin:0;
    color:#665f50;
    font-size:16px;
    line-height:1.75;
}

.support-cms-notice p+p {
    margin-top:3px;
}

/* =========================================================
   Buttons
========================================================= */

.support-form-buttons {
    margin-top:46px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.support-btn {
    min-width:150px;
    height:56px;
    padding:0 28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-radius:10px;
    font-family:inherit;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
}

.support-btn svg {
    width:19px;
    height:19px;
}

.support-btn-cancel {
    border:1px solid #ddd;
    background:#fff;
    color:#555;
}

.support-btn-primary {
    border:1px solid #9d8959;
    background:#9d8959;
    color:#fff;
}

.support-btn-primary:hover {
    background:#8e7a4b;
    border-color:#8e7a4b;
}

/* =========================================================
   Tablet
========================================================= */

@media (max-width:900px) {
    .agreement-check {
        display:block;
    }

    .agreement-check .custom-check {
        margin-top:16px;
    }

    .support-field-grid {
        grid-template-columns:1fr;
    }

    .support-field-full {
        grid-column:auto;
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width:700px) {
    .support-write-page {
        padding:30px 0 70px;
    }

    .support-write-intro h3 {
        font-size:30px;
    }

    .support-write-intro p {
        font-size:17px;
    }

    .support-step {
        margin-bottom:48px;
    }

    .support-step-item {
        display:block;
        text-align:center;
    }

    .support-step-item>span {
        margin:0 auto 7px;
    }

    .support-step-item strong {
        font-size:14px;
    }

    .support-step-line {
        width:48px;
        margin:0 10px 25px;
    }

    .support-form-section {
        margin-top:52px;
    }

    .support-form-heading h4 {
        font-size:24px;
    }

    .support-form-heading>p {
        position:static;
        margin-top:7px;
    }

    .agreement-box {
        padding:24px 20px;
        border-radius:16px;
    }

    .agreement-intro {
        padding:20px;
        font-size:16px;
    }

    .agreement-section {
        padding:24px 0;
    }

    .agreement-section h5 {
        font-size:18px;
    }

    .agreement-section p,
    .agreement-section li {
        font-size:16px;
    }

    .agreement-check {
        padding:18px;
    }

    .agreement-notice {
        padding:20px;
    }

    .support-form-card {
        padding:24px 20px;
        border-radius:16px;
    }

    .support-field-grid {
        gap:22px;
    }

    .support-input {
        height:52px;
        font-size:16px;
    }

    .support-address-zip {
        display:grid;
        grid-template-columns:1fr 120px;
    }

    .support-address-zip .support-input {
        width:100%;
    }

    .support-address-btn {
        height:52px;
        padding:0 12px;
    }

    .support-choice-group {
        display:grid;
        grid-template-columns:repeat(2,1fr);
    }

    .support-choice span {
        min-width:0;
        width:100%;
        height:50px;
        padding:0 10px;
        font-size:15px;
    }

    .support-money-wrap {
        display:block;
    }

    .support-money-choice {
        margin-bottom:12px;
    }

    .support-money-etc .support-input {
        width:100%;
    }

    .support-money-etc {
        display:grid;
        grid-template-columns:1fr auto;
    }

    .support-cms-notice {
        padding:20px;
    }

    .support-form-buttons {
        margin-top:36px;
    }

    .support-btn {
        flex:1;
        min-width:0;
        height:54px;
        padding:0 14px;
        font-size:16px;
    }
}