.greeting-intro {
    padding: 82px 0 120px;
}

.greeting-intro__grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}


/* =========================================================
   총재 프로필
========================================================= */

.greeting-governor {
    position: sticky;
    top: 32px;
}

.greeting-governor__photo {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #e7ebf0;
    box-shadow: 0 22px 48px rgba(4, 29, 56, 0.16);
}

.greeting-governor__photo::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 18px;
    pointer-events: none;
}

.greeting-governor__photo::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    z-index: 2;
    height: 3px;
    background: var(--gold);
}

.greeting-governor__photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.greeting-governor__info {
    padding: 26px 12px 0;
    text-align: center;
}

.greeting-governor__info > p {
    margin: 0;
    color: #5f6c79;
    font-size: 15px;
    line-height: 1.6;
}

.greeting-governor__name {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.greeting-governor__name span {
    color: #626f7d;
    font-size: 15px;
}

.greeting-governor__name strong {
    color: var(--navy);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* =========================================================
   인사말 본문
========================================================= */

.greeting-message {
    min-width: 0;
}

.greeting-message__heading {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.greeting-message__title {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.045em;
    word-break: keep-all;
}

.greeting-message__title strong {
    color: var(--blue);
}

.greeting-message__body {
    padding-top: 8px;
}

.greeting-message__body p {
    margin: 25px 0 0;
    color: #4f5d6b;
    font-size: 16px;
    line-height: 2;
    word-break: keep-all;
}

.greeting-message__body strong {
    color: var(--navy);
    font-weight: 800;
}


/* =========================================================
   서명
========================================================= */

.greeting-signature {
    width: min(100%, 410px);
    margin: 52px 0 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--gold);
    text-align: right;
}

.greeting-signature > span {
    display: block;
    color: #667381;
    font-size: 14px;
}

.greeting-signature > div {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 10px;
}

.greeting-signature small {
    color: #556371;
    font-size: 15px;
}

.greeting-signature strong {
    color: var(--navy);
    font-family: "Nanum Myeongjo", "Noto Serif KR", serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.1em;
}


/* =========================================================
   태블릿
========================================================= */

@media (max-width: 1024px) {
    .greeting-intro__grid {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 48px;
    }
}


/* =========================================================
   모바일
========================================================= */

@media (max-width: 768px) {
    .greeting-intro {
        padding: 68px 0 84px;
    }

    .greeting-intro__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .greeting-governor {
        position: static;
        width: min(100%, 340px);
        margin: 0 auto;
    }

    .greeting-message__heading {
        padding-bottom: 24px;
    }

    .greeting-message__body p {
        margin-top: 21px;
        font-size: 15px;
        line-height: 1.9;
    }

    .greeting-signature {
        margin-top: 42px;
    }
}


/* =========================================================
   작은 모바일
========================================================= */

@media (max-width: 480px) {
    .greeting-intro {
        padding-top: 54px;
    }

    .greeting-governor__photo {
        border-radius: 22px;
    }

    .greeting-governor__photo::before {
        inset: 12px;
        border-radius: 16px;
    }

    .greeting-message__title {
        font-size: 27px;
        line-height: 1.5;
    }

    .greeting-signature > div {
        gap: 10px;
    }

    .greeting-signature strong {
        font-size: 29px;
    }
}