@charset "utf-8";

/* greeting.php — Figma 1:501 인사말 본문 (company 셸 + company-tabs) */

.greeting-page {
    overflow-x: hidden;
}

.greeting-body {
    padding: 80px 0 120px;
    background: #fff;
    color: #060606;
}

.greeting-body .inner {
    width: 96%;
    max-width: 1320px;
    margin: 0 auto;
}

.greeting-lead {
    margin: 0 0 40px;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.greeting-lead strong {
    font-weight: 800;
}

.greeting-grid {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 56px 40px;
    align-items: start;
}

.greeting-photo {
    margin: 0;
    border-radius: 2px;
    overflow: hidden;
    background: #eceef1;
    max-width: 600px;
}

.greeting-photo img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
    object-fit: cover;
    object-position: center 35%;
    aspect-ratio: 600 / 681;
}

.greeting-tagline {
    margin: 0 0 24px;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    color: #060606;
}

.greeting-tagline strong {
    font-weight: 800;
}

.greeting-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: #000;
}

.greeting-text p {
    margin: 0 0 1.2em;
}

.greeting-text p:last-child {
    margin-bottom: 0;
}

.greeting-text__lead {
    font-weight: 800;
}

.greeting-sign {
    margin-top: 48px;
    text-align: right;
}

.greeting-sign img {
    display: block;
    margin-left: auto;
    width: 100%;
    max-width: 280px;
    height: auto;
}

.greeting-sign__cap {
    margin: 12px 0 0;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

@media (max-width: 1024px) {
    .greeting-grid {
        grid-template-columns: 1fr;
    }

    .greeting-photo {
        max-width: 600px;
        margin: 0 auto;
    }

    .greeting-sign {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .greeting-body {
        padding: 56px 0 80px;
    }

    .greeting-lead {
        font-size: 28px;
    }

    .greeting-tagline {
        font-size: 24px;
    }

    .greeting-text {
        font-size: 16px;
    }

    .greeting-photo img {
        aspect-ratio: auto;
        min-height: 280px;
    }
}
