#page .support_list{margin:0;padding:0;list-style:none;}
#page .support_list .support_li{border-bottom:1px solid #d6d6d6;padding:50px 0;}
#page .support_list .support_li:first-child{padding:20px 0 50px;}
#page .support_list .support_li .box{position:relative;}
#page .support_list .support_li .box:after{content:"";clear:both;display:block;}
#page .support_list .support_li .thumbnail{width:355px;background-color:#efefef;float:left;}
#page .support_list .support_li .thumbnail img{width:100%;vertical-align:middle;}
#page .support_list .support_li .text{margin:0 0 0 400px;}
#page .support_list .support_li .text .title{font-size:22px;font-weight:600;color:#00a29a;font-family: 'Nanum Myeongjo', serif;}

#page .support_list .support_li .text .detail{margin:30px 0 30px;padding:0;list-style:none;}
#page .support_list .support_li .text .detail li{font-size:15px;font-weight:500;color:#484848;}
#page .support_list .support_li .text .detail li:before{content:"-";display:inline-block;width:15px;}

#page .support_list .support_li .text .button_area{margin:15px 0 0;}
#page .support_list .support_li .text .button_area .button{background-color:#efefef;color:#fff;font-size:14px;font-weight:500;padding:0 12px;line-height:38px;vertical-align:top;display:inline-block;text-decoration:none;}
#page .support_list .support_li .text .button_area .button.regular{background-color:#74c6b7;margin:0 8px 0 0;}
#page .support_list .support_li .text .button_area .button.temporary{background-color:#333333;}



/* =========================================
   공통: 섹션 타이틀 영역 (.section-header)
========================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    margin-top: 0;
    line-height: 1.4;
    word-break: keep-all;
}

/* 부제목(설명)이 있을 경우를 위한 스타일 */
.section-header p {
    font-size: 18px;
    color: #888; 
    font-weight: 400; 
    line-height: 1.6;
    word-break: keep-all;
    margin: 0;
}

/* =========================================
   모바일 반응형 (768px 이하)
========================================= */
@media screen and (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h3 {
        font-size: 26px; /* 모바일에서는 타이틀 크기 축소 */
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 15px;
    }
}
/* =========================================
   [섹션 1] 1. 후원 캠페인 영역 (Swiper)
========================================= */
.support-campaign-area {
    padding: 100px 20px;
    background: #fff;
}
.campaign-slider-wrap {
    max-width: 1200px;
    margin: 0 auto;
}
.campaign-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}
.campaign-card .card-img {
    background-color: #e6e6e6; /* 임시 배경색 */
    height: 220px;
}
.campaign-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.campaign-card .card-text {
    padding: 35px 20px;
    text-align: center;
    flex: 1; /* 글자 수가 달라도 버튼이 하단에 정렬되도록 */
}
.campaign-card .card-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 15px 0;
}
.campaign-card .card-text p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.6;
    word-break: keep-all;
}
.campaign-card .card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c0401b; /* 시안의 주황/빨강 톤 */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 0;
    text-decoration: none;
    transition: background 0.3s;
}
.campaign-card .card-btn:hover {
    background-color: #a33414;
}

/* ★ 순수 CSS 화살표 (흰색 / 녹색) */
.css-arrow-white, .css-arrow-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg); /* 마름모 꼴을 돌려서 화살표 모양으로 */
    margin-left: 8px;
    margin-bottom: 2px; /* 수직 정렬 미세 조정 */
}
.css-arrow-white { border-color: #fff; }
.css-arrow-green { border-color: #4da95c; }

/* =========================================
   [섹션 1] 2. 후원 이야기 영역
========================================= */
.support-story-area {
    background-color: #f7f7f7;
    padding: 100px 20px;
}
.story-list-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.story-card {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.story-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.story-card .story-img {
    flex: 0 0 350px; /* PC에서 썸네일 가로폭 고정 */
    background-color: #e6e6e6;
}
.story-card .story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-card .story-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.story-card .story-text h4 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 15px 0;
}
.story-card .story-text p {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px 0;
}
.story-card .more-btn {
    display: inline-flex;
    align-items: center;
    color: #4da95c;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

/* =========================================
   모바일 반응형 (768px 이하)
========================================= */
@media screen and (max-width: 768px) {
    .support-campaign-area { padding: 60px 0 60px 20px; } /* 오른쪽 여백을 없애 스와이퍼가 자연스럽게 잘리도록 함 */
    .support-campaign-area .section-header { padding-right: 20px; }
    
    .support-story-area { padding: 60px 20px; }
    .story-card {
        flex-direction: column; /* 모바일: 썸네일 위, 텍스트 아래 */
    }
    .story-card .story-img {
        flex: auto;
        height: 220px; /* 모바일 썸네일 높이 */
    }
    .story-card .story-text {
        padding: 35px 25px;
    }
}




/* =========================================
   [섹션 2] 후원방법 영역
========================================= */
.support-method-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

/* 카드 래퍼 (PC 좌우 배치) */
.method-cards-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

/* 개별 카드 스타일 */
.method-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.method-card .card-top {
    flex: 1;
    padding: 40px 30px;
    text-align: center;
}

/* 카드 상단 타이틀 및 구분선 */
.method-title {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 30px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

/* 카드 내부 설명 리스트 */
.method-list dl {
    margin: 0 0 30px 0;
}
.method-list dl:last-child {
    margin-bottom: 0;
}
.method-list dt {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}
.method-list dd {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}
.method-list .account-info {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

/* 하단 후원하기 버튼 */
.method-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}
.method-btn.dark-btn {
    background-color: #333;
}
.method-btn.dark-btn:hover {
    background-color: #111;
}
.method-btn.gray-btn {
    background-color: #7d7d7d;
}
.method-btn.gray-btn:hover {
    background-color: #555;
}

/* =========================================
   하단 텍스트 안내 영역
========================================= */
.method-bottom-info {
    text-align: center;
}
.info-group {
    margin-bottom: 40px;
}
.info-group:last-child {
    margin-bottom: 0;
}
.info-group h5 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0 0 15px 0;
}
.info-group p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   모바일 반응형 (768px 이하)
========================================= */
@media screen and (max-width: 768px) {
    .support-method-area {
        padding: 0 20px 60px;
    }
    .method-cards-wrap {
        flex-direction: column; /* 모바일: 상하 배치 */
        gap: 25px;
        margin-bottom: 50px;
    }
    .method-card .card-top {
        padding: 35px 20px;
    }
    .method-title {
        font-size: 18px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    .method-list dt {
        font-size: 16px;
    }
    .method-list dd {
        font-size: 14px;
    }
    .method-btn {
        padding: 18px 0;
        font-size: 16px;
    }
    .info-group h5 {
        font-size: 16px;
    }
    .info-group p {
        font-size: 14px;
    }
}