/* =========================================================
   1. 공통 설정
========================================================= */
.discipleship-page {
    --disc-main: #526b5c;
    --disc-main-dark: #334b3e;
    --disc-deep: #283b32;
    --disc-point: #b59668;
    --disc-point-soft: #e9ddc9;

    --disc-bg: #f8f6f1;
    --disc-bg-soft: #eef2ed;
    --disc-card: #ffffff;

    --disc-text: #4d5b54;
    --disc-muted: #7a8781;
    --disc-line: rgba(68, 91, 78, 0.15);

    width: 100%;
    overflow: hidden;
    color: var(--disc-text);
    background: #fff;
    font-family: "Noto Sans KR", sans-serif;
    word-break: keep-all;
}

.discipleship-page * {
    box-sizing: border-box;
}

.discipleship-page a {
    color: inherit;
    text-decoration: none;
}

.discipleship-page img {
    display: block;
    max-width: 100%;
}

.discipleship-page .disc-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   2. 공통 제목
========================================================= */
.discipleship-page .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--disc-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.discipleship-page .section-label::before {
    width: 28px;
    height: 1px;
    background: var(--disc-point);
    content: "";
}

.discipleship-page .section-title {
    margin: 0;
    color: var(--disc-deep);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 1.25;
}

.discipleship-page .section-desc {
    margin: 20px 0 0;
    color: var(--disc-muted);
    font-size: 16px;
    line-height: 1.9;
}

/* =========================================================
   3. 상단 비주얼
========================================================= */
.discipleship-page .disc-hero {
    position: relative;
    display: flex;
    min-height: 570px;
    align-items: center;
    overflow: hidden;
    color: #fff;

    /* 사진이 없는 경우에도 기본 배경색 표시 */
    background-color: #52685d;

    /* 서버에 업로드한 이미지 */
    background-image:
        linear-gradient(
            90deg,
            rgba(32, 54, 43, 0.96) 0%,
            rgba(52, 78, 64, 0.84) 50%,
            rgba(91, 114, 95, 0.38) 100%
        ),
        url("/img/discipleship/discipleship_visual.jpg");

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.discipleship-page .disc-hero::before {
    position: absolute;
    right: 220px;
    bottom: -170px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.discipleship-page .disc-hero::after {
    position: absolute;
    right: -210px;
    bottom: -285px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.discipleship-page .disc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    padding: 110px 0;
}

.discipleship-page .hero-small {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.discipleship-page .hero-small::before {
    width: 42px;
    height: 1px;
    background: #dbc79f;
    content: "";
}

.discipleship-page .hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 1.13;
}

.discipleship-page .hero-desc {
    max-width: 700px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
}

.discipleship-page .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.discipleship-page .hero-btn {
    display: inline-flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.discipleship-page .hero-btn-primary {
    color: var(--disc-main-dark);
    background: #fff;
}

.discipleship-page .hero-btn-primary:hover {
    background: #f0f3ef;
    transform: translateY(-3px);
}

.discipleship-page .hero-btn-line {
    border-color: rgba(255, 255, 255, 0.44);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.discipleship-page .hero-btn-line:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

/* =========================================================
   4. 소개 영역
========================================================= */
.discipleship-page .intro-section {
    padding: 132px 0 125px;
    background: var(--disc-bg);
}

.discipleship-page .intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 78px;
}

.discipleship-page .intro-copy {
    max-width: 680px;
}

.discipleship-page .intro-message {
    margin: 29px 0 0;
    padding: 22px 24px;
    border-left: 3px solid var(--disc-point);
    color: var(--disc-main-dark);
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.85;
}

.discipleship-page .intro-side {
    position: relative;
    padding: 38px 33px 35px;
    border: 1px solid var(--disc-line);
    background: #fff;
    box-shadow: 0 20px 48px rgba(51, 75, 62, 0.09);
}

.discipleship-page .intro-side::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--disc-main) 0%,
        var(--disc-point) 100%
    );
    content: "";
}

.discipleship-page .intro-icon {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: var(--disc-main-dark);
    background: var(--disc-bg-soft);
    font-size: 21px;
}

.discipleship-page .intro-side-title {
    margin: 0;
    color: var(--disc-deep);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.discipleship-page .intro-side-desc {
    margin: 15px 0 0;
    color: var(--disc-muted);
    font-size: 14px;
    line-height: 1.85;
}

.discipleship-page .intro-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 18px 0 0;
    border-top: 1px solid var(--disc-line);
    list-style: none;
}

.discipleship-page .intro-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--disc-text);
    font-size: 14px;
}

.discipleship-page .intro-list i {
    color: var(--disc-point);
    font-size: 12px;
}

/* =========================================================
   5. 훈련 목표
========================================================= */
.discipleship-page .goal-section {
    padding: 125px 0;
    background: #fff;
}

.discipleship-page .goal-heading {
    max-width: 740px;
    margin-bottom: 48px;
}

.discipleship-page .goal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.discipleship-page .goal-card {
    min-height: 300px;
    padding: 31px 27px 29px;
    border: 1px solid var(--disc-line);
    background: #fff;
    transition: 0.27s ease;
}

.discipleship-page .goal-card:hover {
    border-color: rgba(68, 91, 78, 0.36);
    box-shadow: 0 17px 38px rgba(51, 75, 62, 0.1);
    transform: translateY(-7px);
}

.discipleship-page .goal-number {
    display: block;
    margin-bottom: 24px;
    color: var(--disc-point);
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
}

.discipleship-page .goal-icon {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    border-radius: 6px;
    color: var(--disc-main-dark);
    background: var(--disc-bg-soft);
    font-size: 19px;
}

.discipleship-page .goal-title {
    margin: 0;
    color: var(--disc-deep);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.discipleship-page .goal-desc {
    margin: 13px 0 0;
    color: var(--disc-muted);
    font-size: 14px;
    line-height: 1.82;
}

/* =========================================================
   6. 진행 단계
========================================================= */
.discipleship-page .process-section {
    padding: 125px 0;
    background: var(--disc-bg-soft);
}

.discipleship-page .process-heading {
    max-width: 740px;
    margin-bottom: 49px;
}

.discipleship-page .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--disc-line);
    border-bottom: 1px solid var(--disc-line);
}

.discipleship-page .process-card {
    min-height: 292px;
    padding: 33px 26px 29px;
    border-right: 1px solid var(--disc-line);
    background: rgba(255, 255, 255, 0.63);
}

.discipleship-page .process-card:first-child {
    border-left: 1px solid var(--disc-line);
}

.discipleship-page .process-step {
    display: inline-flex;
    min-width: 55px;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 999px;
    color: #fff;
    background: var(--disc-main);
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 700;
}

.discipleship-page .process-title {
    margin: 0;
    color: var(--disc-deep);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.discipleship-page .process-desc {
    margin: 15px 0 0;
    color: var(--disc-muted);
    font-size: 14px;
    line-height: 1.82;
}

.discipleship-page .process-note {
    display: block;
    margin-top: 18px;
    color: var(--disc-main-dark);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   7. 주요 커리큘럼
========================================================= */
.discipleship-page .curriculum-section {
    padding: 128px 0;
    background: #fff;
}

.discipleship-page .curriculum-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 72px;
}

.discipleship-page .curriculum-copy {
    position: sticky;
    top: 35px;
}

.discipleship-page .curriculum-list {
    display: grid;
    gap: 10px;
}

.discipleship-page .curriculum-item {
    display: grid;
    grid-template-columns: 67px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 19px 21px;
    border: 1px solid var(--disc-line);
    background: #fff;
    transition: 0.25s ease;
}

.discipleship-page .curriculum-item:hover {
    border-color: rgba(68, 91, 78, 0.36);
    background: var(--disc-bg);
    transform: translateX(5px);
}

.discipleship-page .curriculum-week {
    display: flex;
    width: 57px;
    height: 57px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--disc-main-dark);
    background: var(--disc-point-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 700;
}

.discipleship-page .curriculum-title {
    margin: 0;
    color: var(--disc-deep);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.discipleship-page .curriculum-desc {
    margin: 7px 0 0;
    color: var(--disc-muted);
    font-size: 13px;
    line-height: 1.72;
}

/* =========================================================
   8. 참여 대상 및 운영 안내
========================================================= */
.discipleship-page .guide-section {
    padding: 120px 0;
    background: var(--disc-bg);
}

.discipleship-page .guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.discipleship-page .guide-card {
    padding: 35px 31px 32px;
    border: 1px solid var(--disc-line);
    background: #fff;
}

.discipleship-page .guide-icon {
    display: flex;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 7px;
    color: var(--disc-main-dark);
    background: var(--disc-bg-soft);
    font-size: 20px;
}

.discipleship-page .guide-title {
    margin: 0;
    color: var(--disc-deep);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.discipleship-page .guide-list {
    display: grid;
    gap: 9px;
    margin: 19px 0 0;
    padding: 0;
    list-style: none;
}

.discipleship-page .guide-list li {
    position: relative;
    padding-left: 15px;
    color: var(--disc-muted);
    font-size: 14px;
    line-height: 1.75;
}

.discipleship-page .guide-list li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--disc-point);
    content: "";
}

/* =========================================================
   9. 하단 신청 영역
========================================================= */
.discipleship-page .cta-section {
    padding: 110px 0;
    color: #fff;

    background-color: #4d6657;
    background-image:
        linear-gradient(
            90deg,
            rgba(33, 55, 44, 0.97) 0%,
            rgba(52, 79, 65, 0.88) 58%,
            rgba(92, 116, 96, 0.5) 100%
        ),
        url("/img/discipleship/discipleship_bottom.jpg");

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.discipleship-page .cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.discipleship-page .cta-copy {
    max-width: 760px;
}

.discipleship-page .cta-small {
    display: block;
    margin-bottom: 13px;
    color: #e0cda8;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.discipleship-page .cta-title {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 49px);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 1.3;
}

.discipleship-page .cta-desc {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.9;
}

.discipleship-page .cta-btn {
    display: inline-flex;
    min-height: 56px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    border-radius: 5px;
    color: var(--disc-main-dark);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.discipleship-page .cta-btn:hover {
    background: #f0f3ef;
    transform: translateY(-3px);
}

/* =========================================================
   태블릿 반응형
========================================================= */
@media (max-width: 1024px) {
    .discipleship-page .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .discipleship-page .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .discipleship-page .process-card:nth-child(n+3) {
        border-top: 1px solid var(--disc-line);
    }

    .discipleship-page .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .discipleship-page .curriculum-copy {
        position: static;
    }
}

/* =========================================================
   모바일 반응형
========================================================= */
@media (max-width: 767px) {
    .discipleship-page .disc-inner {
        width: calc(100% - 20px);
        max-width: none;
    }

    .discipleship-page .section-label {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .discipleship-page .section-title {
        font-size: 33px;
    }

    .discipleship-page .section-desc {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.82;
    }

    /* 상단 */
    .discipleship-page .disc-hero {
        min-height: 495px;
        background-position: 61% center;
    }

    .discipleship-page .disc-hero-content {
        padding: 77px 0;
    }

    .discipleship-page .hero-small {
        margin-bottom: 15px;
        font-size: 10px;
    }

    .discipleship-page .hero-small::before {
        width: 27px;
    }

    .discipleship-page .hero-title {
        font-size: 43px;
        line-height: 1.18;
    }

    .discipleship-page .hero-desc {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.82;
    }

    .discipleship-page .hero-buttons {
        gap: 7px;
        margin-top: 26px;
    }

    .discipleship-page .hero-btn {
        min-height: 49px;
        padding: 0 17px;
        font-size: 13px;
    }

    /* 소개 */
    .discipleship-page .intro-section {
        padding: 77px 0;
    }

    .discipleship-page .intro-message {
        margin-top: 22px;
        padding: 18px 16px;
        font-size: 14px;
    }

    .discipleship-page .intro-side {
        padding: 27px 21px 25px;
    }

    /* 목표 */
    .discipleship-page .goal-section {
        padding: 77px 0;
    }

    .discipleship-page .goal-heading {
        margin-bottom: 31px;
    }

    .discipleship-page .goal-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .discipleship-page .goal-card {
        min-height: auto;
        padding: 24px 20px 23px;
    }

    .discipleship-page .goal-card:hover {
        transform: none;
    }

    /* 과정 */
    .discipleship-page .process-section {
        padding: 77px 0;
    }

    .discipleship-page .process-heading {
        margin-bottom: 31px;
    }

    .discipleship-page .process-grid {
        display: block;
        border: 0;
    }

    .discipleship-page .process-card,
    .discipleship-page .process-card:first-child,
    .discipleship-page .process-card:nth-child(n+3) {
        min-height: auto;
        padding: 24px 20px 23px;
        border: 1px solid var(--disc-line);
        border-bottom: 0;
    }

    .discipleship-page .process-card:last-child {
        border-bottom: 1px solid var(--disc-line);
    }

    /* 커리큘럼 */
    .discipleship-page .curriculum-section {
        padding: 77px 0;
    }

    .discipleship-page .curriculum-grid {
        gap: 30px;
    }

    .discipleship-page .curriculum-list {
        gap: 8px;
    }

    .discipleship-page .curriculum-item {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 13px;
        padding: 15px 14px;
    }

    .discipleship-page .curriculum-item:hover {
        transform: none;
    }

    .discipleship-page .curriculum-week {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }

    .discipleship-page .curriculum-title {
        font-size: 16px;
    }

    .discipleship-page .curriculum-desc {
        font-size: 12px;
    }

    /* 안내 */
    .discipleship-page .guide-section {
        padding: 77px 0;
    }

    .discipleship-page .guide-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .discipleship-page .guide-card {
        padding: 24px 20px 23px;
    }

    /* 하단 */
    .discipleship-page .cta-section {
        padding: 79px 0;
        background-position: 62% center;
    }

    .discipleship-page .cta-grid {
        display: block;
    }

    .discipleship-page .cta-small {
        margin-bottom: 10px;
        font-size: 17px;
    }

    .discipleship-page .cta-title {
        font-size: 32px;
    }

    .discipleship-page .cta-desc {
        margin-top: 14px;
        font-size: 14px;
    }

    .discipleship-page .cta-btn {
        width: 100%;
        margin-top: 23px;
    }
}
