/* 인사말 페이지 스타일 */

.greeting-box {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 50px 0;
}

/* 이미지 영역 */
.greeting-img {
    flex: 0 0 45%;
}

.greeting-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
}

/* 텍스트 영역 */
.greeting-txt {
    flex: 1;
}

.greeting-txt h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.greeting-txt h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: var(--point-color);
}

.greeting-slogan {
    font-size: 2.2rem;
    line-height: 1.5;
    color: #111;
    font-weight: 700;
    margin-bottom: 40px;
    word-break: keep-all;
}

.greeting-slogan strong {
    font-weight: 700;
    color: var(--point-color);
}

.greeting-desc p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    word-break: keep-all;
}

.greeting-desc p:last-child {
    margin-bottom: 0;
}

/* 서명 영역 */
.greeting-sign {
    margin-top: 60px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.greeting-sign .company {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.greeting-sign .name {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.greeting-sign .sign {
    margin-left: 10px;
	max-width:200px;
	opacity:0.8;
}

/* 반응형 스타일 */
@media (max-width: 1200px) {
    .greeting-box {
        flex-direction: column;
        gap: 40px;
        padding: 30px 0;
    }

    .greeting-img {
        width: 100%;
    }

    .greeting-txt {
        padding-top: 0;
    }

    .greeting-slogan {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .greeting-desc p {
    }

    .greeting-sign {
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}