/* ==========================================================================
 * introduction-greeting.css — 세무사 인사말 페이지(/greeting) 전용 스타일
 *  · introduction.ts 인라인 <style> 에서 분리 (정적 CSS)
 * ========================================================================== */

.greeting-section {
    background: white;
    border-radius: 15px;
    /*box-shadow: 0 4px 20px rgba(0,0,0,0.08);*/
    overflow: hidden;
}
.greeting-content {
    display: flex;
    gap: 50px;
    padding: 60px;
    align-items: flex-start;
}
.profile-image {
    flex-shrink: 0;
    width: 280px;
    /* 원본 이미지가 280px보다 작으면 강제 확대되어 흐릿해 보이므로
       실제 원본 크기를 초과해서 늘리지 않도록 max-width 로 보호 */
    max-width: 100%;
}
.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    /* ─── 이미지 화질 보존(브라우저 보간/리샘플 설정) ─── */
    image-rendering: -webkit-optimize-contrast; /* 구 webkit */
    image-rendering: high-quality;              /* 표준 */
    image-rendering: crisp-edges;               /* fallback */
    -ms-interpolation-mode: bicubic;            /* 구 IE */
    /* 원본보다 크게 늘어나지 않도록 최대 원본 해상도로 제한 */
    max-width: 100%;
    /* retina 디바이스에서 색상 번짐 최소화 */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.greeting-text {
    flex: 1;
}
.greeting-text h2 {
    font-family: 'Sogang University','Noto Serif KR', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}
.greeting-text p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    color: #333;
}
.signature {
    text-align: right;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .greeting-content {
        flex-direction: column;
        padding: 40px 30px;
    }
    .profile-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}
