@import "hero.css";

/* 인사말 페이지 스타일 */
.greeting-page {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
}

/* 헤더 섹션 */
.greeting-header {
    width: 100%;
    background-color: #ffffff;
    position: relative;
    padding: 60px 0 40px 0;
    margin: 0 auto;
}

.greeting-header-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

/* 헤더 상단 */
.header-top {
    display: flex;
    justify-content: flex-start;
}

/* 인사말 컨텐츠 섹션 */
.greeting-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
}

.greeting-content-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* 섹션 헤더 */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: var(--color-primary-02);
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #151515;
    margin: 0;
}

/* 인사말 본문 */
.greeting-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 80px;
}

.greeting-message {
    flex: 1;
    display: flex;
    gap: 151px;
}

.main-message {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #151515;
    flex-shrink: 0;
    white-space: pre-line; /* 줄바꿈 문자 및 HTML 태그 처리 */
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.message-content p {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.01em;
    color: #555555;
    margin: 0;
}

.signature {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 40px;
}

.company-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #151515;
}

.employees {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.0005em;
    color: #151515;
}

/* 반응형 스타일 - 태블릿 */
@media (max-width: 1200px) {
    .greeting-header {
        width: 100%;
        padding: 40px 60px;
    }
    
    .greeting-header-content {
        padding: 0;
        gap: 20px;
    }
    
    .greeting-content {
        width: 100%;
        padding: 80px 60px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .greeting-main {
        flex-direction: column;
        gap: 40px;
    }

    .greeting-message {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-message {
        font-size: 24px;
    }
    
    .message-content p {
        font-size: 18px;
    }
}

/* 반응형 스타일 - 모바일 */
@media (max-width: 768px) {
    .greeting-header {
        padding: 20px 16px;
    }
    
    .greeting-content {
        padding: 40px 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .greeting-main {
        gap: 20px;
    }
    
    .main-message {
        font-size: 20px;
    }
    
    .message-content {
        gap: 20px;
    }
    
    .message-content p {
        font-size: 16px;
    }
    
    .signature {
        margin-top: 20px;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .employees {
        font-size: 16px;
    }
}
