/* 기본 초기화 */
/* * { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Pretendard', sans-serif; color: #333; line-height: 1.7; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; } */

/* 상단 배너 */
.sub-header {
    height: 200px;
    background: linear-gradient(rgba(0,40,80,0.4), rgba(0,40,80,0.4)), url('environment_blue.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

/* 레이아웃 구조 */
.ceo-wrapper {
    display: flex;
    padding: 80px 0;
    gap: 60px;
}

/* 1. CEO 인물 이미지 - 크기 축소 */
.ceo-profile {
    flex: 0 0 250px; /* 너비를 250px로 고정하여 작게 유지 */
}

.img-frame img {
    width: 100%;
    height: auto;
    border: 1px solid #eee; /* 아주 연한 테두리만 */
}

/* 2. 인사말 본문 */
.ceo-content {
    flex: 1;
}

.ceo-headline {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.ceo-headline span {
    color: #2E7D32; /* 로고 초록색 포인트 */
}

.message-body p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    word-break: keep-all;
}

/* 3. 사인 영역 - 오른쪽 정렬 */
.signature-area {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 우측 정렬 */
    text-align: right;
}

.sig-text {
    margin-bottom: 10px;
    font-size: 17px;
}

.sig-text span { display: block; font-size: 14px; color: #888; }

.sig-img {
    height: 50px; /* 사인 크기 조절 */
    width: auto;
}

/* 단순 가로줄 */
.bottom-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 100px;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .ceo-wrapper { flex-direction: column; align-items: center; text-align: center; }
    .ceo-profile { flex: 0 0 200px; }
    .signature-area { align-items: center; text-align: center; }
}