/* ============================================
   Greeting (인사말)
   ============================================ */

.greeting { margin-bottom: 88px; }

.greeting-box {
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 56px 56px 48px;
    max-width: var(--content-max);
    margin: 0 auto;
    border: 1px solid var(--line);
    position: relative;
    box-shadow: var(--shadow-card);
}
.greeting-box::before {
    content: "";
    position: absolute;
    top: 0; left: 56px;
    width: 40px; height: 2px;
    background: var(--brass);
}

.greeting-box p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 18px;
    font-weight: 400;
}
.greeting-box p:first-of-type {
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}
.greeting-box p strong {
    color: var(--ink);
    font-weight: 600;
    background: linear-gradient(180deg, transparent 65%, rgba(201,167,106,0.25) 65%);
    padding: 0 2px;
}
.greeting-box p:last-child { margin-bottom: 0; }

.greeting-box .signature {
    text-align: right;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .greeting-box { padding: 36px 28px 32px; }
    .greeting-box::before { left: 28px; }
}
