@charset "utf-8";

/* 1. 페이지 공통 설정 */
.pagecommon { 
    position: relative; 
    margin: 10px 0 80px; 
    font-size: 15px; 
    letter-spacing: -.3px; 
    color: #777; 
    line-height: 1.8; 
}
.pagecommon .inner { 
    max-width: var(--mainsize); 
    margin: 0 auto; 
    padding: 0 20px; 
}
.pagecommon * { 
    word-break: keep-all; 
}

/* 2. 상단 본문 영역 (Text Section) */
#greeting1006 .top_area { 
    display: flex; 
    padding: 30px 40px 40px 40px; 
    border-bottom: 1px solid #f0f0f0; 
}
#greeting1006 .top_area .tit { 
    flex: 0 0 280px; 
    color: var(--primary); 
    text-align: left;
}
#greeting1006 .top_area .tit span { 
    display: block;
    font-size: 13px; 
    font-weight: 700; 
    letter-spacing: 2px; 
    font-family: 'Poppins', sans-serif; 
    text-transform: uppercase; 
}
#greeting1006 .top_area .tit p { 
    margin-top: 10px; 
    font-size: 32px; 
    font-weight: 300; 
    line-height: 1.3; 
    color: #111; 
}
#greeting1006 .top_area .tit p b { 
    font-weight: 700; 
    color: var(--primary); 
}

#greeting1006 .top_area .txt { 
    flex: 1;
    font-size: 16px; 
    color: #555; 
    padding-left: 20px;
    text-align: left;
}

/* 3. 하단 목사님 프로필 영역 (Gray Box Section) */
#greeting1006 .btm_area { 
    position: relative; 
    display: flex; 
    align-items: flex-end; /* 이미지를 하단 파란 선에 밀착 */
    margin: 20px 40px 0 40px; 
    border-bottom: 8px solid var(--primary); 
    z-index: 1;
}

/* 회색 배경 */
#greeting1006 .btm_area:after { 
    position: absolute; 
    content: ''; 
    z-index: -1; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 88%; 
    background: #f8f8f8; 
}

/* 텍스트 영역 (왼쪽) */
#greeting1006 .btm_area .txt { 
    position: relative; 
    flex: 1; 
    padding: 40px 50px 45px 50px; 
    text-align: left;
}
#greeting1006 .btm_area .tit { 
    font-size: 25px; 
    font-weight: 700; 
    color: #111; 
    line-height: 1.4; 
    margin-bottom: 20px; 
}
#greeting1006 .btm_area .pl { 
    font-size: 15.5px; 
    color: #666; 
    line-height: 1.8; 
    white-space: pre-line;
}

/* 서명 영역 */
#greeting1006 .btm_area .sign { 
    font-weight: 700; 
    margin-top: 35px; 
    font-size: 17px; 
    color: #444;
}
#greeting1006 .btm_area .sign span { 
    display: inline-block;
    margin-left: 15px; 
    color: #111; 
    font-size: 28px; 
    border-bottom: 2px solid var(--primary); 
    padding-bottom: 2px; 
}

/* 이미지 박스 (오른쪽) */
#greeting1006 .btm_area .img_box { 
    flex: 0 0 280px; 
    line-height: 0; 
    font-size: 0; 
    margin-right: 20px; 
}
#greeting1006 .btm_area img { 
    width: 100%; 
    height: auto; 
    display: block; 
}

/* 4. 반응형 레이아웃 */
@media (max-width:1024px){
    #greeting1006 .top_area { padding: 20px; display: block; text-align: center; }
    #greeting1006 .top_area .tit, #greeting1006 .top_area .txt { width: 100%; padding-left: 0; text-align: center; }
    
    #greeting1006 .btm_area { 
        margin: 40px 15px 0 15px; 
        flex-direction: column-reverse; /* 모바일은 텍스트가 위, 이미지가 아래 */
        align-items: center; 
    }
    #greeting1006 .btm_area:after { height: 100%; } 
    #greeting1006 .btm_area .img_box { width: 250px; margin-right: 0; }
    #greeting1006 .btm_area .txt { padding: 40px 20px; text-align: center; width: 100%; }
}

@media (max-width:480px) {
    #greeting1006 .top_area .tit p { font-size: 26px; }
    #greeting1006 .btm_area .img_box { width: 200px; }
    #greeting1006 .btm_area .tit { font-size: 20px; }
}