/* ========================================
   인사말 페이지
   ======================================== */

.greeting-section {
    background: #f5f3ef;
    padding: 64px 0 96px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.greeting-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 60px;
    background: #f5f3ef;
    border-radius: 30px 30px 0 0;
}

.greeting-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.greeting-body {
    padding: 20px 0;
}

.greeting-hello {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.greeting-lead {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.45;
    letter-spacing: -1px;
    margin-bottom: 32px;
}
.greeting-lead strong {
    font-weight: 900;
}

.greeting-text {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.9;
}
.greeting-text p {
    margin-bottom: 12px;
}
.greeting-text p.greeting-thanks,
.greeting-thanks {
    margin-top: 20px;
    font-weight: 600;
    color: #333;
}

.greeting-visual {
    position: relative;
}
.greeting-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .greeting-grid { grid-template-columns: 1fr; gap: 36px; }
    .greeting-visual img { aspect-ratio: 16/10; }
    .greeting-lead { font-size: 1.4rem; }
}
@media (max-width: 575px) {
    .greeting-section { padding: 44px 0 64px; }
    .greeting-hello { font-size: 1.3rem; }
    .greeting-lead { font-size: 1.2rem; }
}
