.greeting-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.greeting-image {
    flex: 1;
    min-width: 300px;
}

.greeting-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.greeting-content {
    flex: 1;
    min-width: 300px;
}

.greeting-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.greeting-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.greeting-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.greeting-signature {
    font-size: 16px;
    color: #333;
    margin-top: 40px;
    text-align: right;
    font-weight: 500;
}

/* 태블릿 */
@media (max-width: 992px) {
    .greeting-container {
        gap: 30px;
        padding: 30px 20px;
    }
    
    .greeting-title {
        font-size: 28px;
    }
    
    .greeting-subtitle {
        font-size: 18px;
    }
}

/* 모바일 */
@media (max-width: 768px) {
    .greeting-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
    }
    
    .greeting-image,
    .greeting-content {
        min-width: 100%;
    }
    
    .greeting-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .greeting-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .greeting-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .greeting-signature {
        font-size: 15px;
        margin-top: 30px;
    }
}

/* 작은 모바일 */
@media (max-width: 480px) {
    .greeting-container {
        padding: 20px 10px;
    }
    
    .greeting-title {
        font-size: 20px;
    }
    
    .greeting-subtitle {
        font-size: 15px;
    }
    
    .greeting-text {
        font-size: 14px;
    }
}

