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

.greeting-section {
    margin-bottom: 2rem;
}

.greeting-content {
    padding: 3rem;
    line-height: 1.5;
}

.greeting-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
}

.greeting-intro {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #6b53d3 !important;
    margin-bottom: 2rem !important;
}

.greeting-goals {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.goals-intro {
    font-weight: 600;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 1.05rem;
}

.goals-list li:last-child {
    border-bottom: none;
}

.goals-list strong {
    color: #6b53d3;
}

.greeting-closing {
    margin-top: 2rem !important;
    font-size: 1.2rem !important;
    text-align: center;
}

.greeting-signature {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.signature-title {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem !important;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0 !important;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .greeting-content {
        padding: 2rem 1.5rem;
    }
    
    .greeting-text p {
        font-size: 1rem;
    }
    
    .greeting-intro {
        font-size: 1.2rem !important;
    }
    
    .greeting-goals {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .greeting-content {
        padding: 1.5rem 1rem;
    }
    
    .greeting-intro {
        font-size: 1.1rem !important;
    }
    
    .greeting-goals {
        padding: 1rem;
    }
    
    .greeting-signature {
        text-align: center;
        margin-top: 2rem;
    }
}
