/* 이사장 인사말
--------------------------------------------------------- */

.greeting-profile {
    padding: 74px 0 120px;
}

.greeting-profile__grid {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}


/* 이사장 인물 영역
--------------------------------------------------------- */

.greeting-person {
    width: 150px;
}


/* 이사장 사진 */

.greeting-photo {
    position: relative;

    width: 150px;
    aspect-ratio: 3 / 4;
    overflow: hidden;

    padding: 7px;
    border-radius: 24px;
    background: #eef2f6;

    box-shadow: 0 18px 42px rgba(5, 30, 60, 0.14);
}


.greeting-photo img {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 19px;

    object-fit: cover;
    object-position: center top;
}




/* 사진 아래 소속 및 이름
--------------------------------------------------------- */

.greeting-person__info {
    padding-top: 25px;
    text-align: center;
}

.greeting-person__organization {
    margin: 0;

    color: #718092;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

.greeting-person__name {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;

    margin-top: 16px;
}

.greeting-person__name span {
    padding-bottom: 4px;

    color: #687789;
    font-size: 14px;
    font-weight: 500;
}

.greeting-person__name strong {
    color: var(--navy);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}


/* 인사말 본문
--------------------------------------------------------- */

.greeting-copy {
    min-width: 0;
    padding-top: 6px;
}

.greeting-title {
    position: relative;

    margin: 0;
    padding: 0 0 30px;

    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.38;
    letter-spacing: -0.045em;
    word-break: keep-all;
}

.greeting-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 54px;
    height: 3px;

    border-radius: 999px;
    background: var(--gold);
}

.greeting-content {
    margin-top: 30px;
}

.greeting-content p {
    margin: 0;

    color: #596777;
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: -0.015em;
    word-break: keep-all;
}

.greeting-content p + p {
    margin-top: 20px;
}

.greeting-content .greeting-content__hello {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}


/* 본문 하단 서명
--------------------------------------------------------- */

.greeting-signature {
    position: relative;

    margin-top: 52px;
    padding-top: 24px;

    text-align: right;
}

.greeting-signature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(211, 158, 28, 0.85);
}

.greeting-signature__organization {
    margin: 0;

    color: #718092;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

.greeting-signature__person {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;

    margin-top: 12px;
}

.greeting-signature__person span {
    padding-bottom: 5px;

    color: #718092;
    font-size: 15px;
    font-weight: 500;
}

.greeting-signature__person strong {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
}


/* 태블릿
--------------------------------------------------------- */

@media (max-width: 1024px) {
    .greeting-profile__grid {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 40px;
    }

    .greeting-person {
        width: 150px;
    }

    .greeting-photo {
        width: 150px;
    }

    .greeting-title {
        font-size: 38px;
    }

    .greeting-person__name strong {
        font-size: 26px;
    }
}


/* 모바일
--------------------------------------------------------- */

@media (max-width: 768px) {
    .greeting-profile {
        padding: 70px 0 80px;
    }

    .greeting-profile__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .greeting-person {
        width: 150px;
        margin: 0 auto;
    }

    .greeting-photo {
        width: 150px;
    }

    .greeting-copy {
        padding-top: 0;
    }

    .greeting-title {
        font-size: 36px;
    }

    .greeting-signature {
        margin-top: 42px;
        padding-top: 22px;
    }

    .greeting-signature__organization {
        font-size: 14px;
    }

    .greeting-signature__person strong {
        font-size: 30px;
    }
}


/* 작은 모바일
--------------------------------------------------------- */

@media (max-width: 480px) {
    .greeting-profile {
        padding-top: 54px;
        padding-bottom: 70px;
    }

    .greeting-profile__grid {
        gap: 40px;
    }

    .greeting-person {
        width: 150px;
    }

    .greeting-photo {
        width: 150px;
        padding: 6px;
        border-radius: 21px;
    }

    .greeting-photo::before {
        inset: 10px;
        border-radius: 15px;
    }

    .greeting-photo img {
        border-radius: 16px;
    }

    .greeting-person__info {
        padding-top: 21px;
    }

    .greeting-person__organization {
        font-size: 13px;
    }

    .greeting-person__name {
        margin-top: 13px;
    }

    .greeting-person__name strong {
        font-size: 25px;
    }

    .greeting-title {
        padding-bottom: 24px;

        font-size: 31px;
        line-height: 1.42;
    }

    .greeting-content {
        margin-top: 25px;
    }

    .greeting-content p {
        font-size: 15px;
        line-height: 1.85;
    }

    .greeting-content p + p {
        margin-top: 18px;
    }

    .greeting-content .greeting-content__hello {
        font-size: 17px;
    }

    .greeting-signature {
        margin-top: 36px;
    }

    .greeting-signature__person {
        gap: 12px;
    }

    .greeting-signature__person span {
        font-size: 14px;
    }

    .greeting-signature__person strong {
        font-size: 28px;
    }
}