#ceo {
    --container-width: 1260px;
    background-position: bottom center;
}

#ceo .inner-divider {
    padding-top: var(--top-tit-margin);
}

#ceo .content-title {
    margin-bottom: 65px;
}

#ceo .text p.desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--f18);
    font-weight: 400;
    line-height: 1.9;
    word-break: keep-all;
}

#ceo .text p.desc br:not(.enter) {
    display: none;
}

#ceo .text p.sign {
    font-size: var(--f22);
    font-weight: 600;
    line-height: 1.4545;
    margin-top: 50px;
    color: #fff;
}

#ceo .image {
    width: clamp(480px, 30vw, 590px);
    height: 100%;
    object-fit: contain;
}

#ceo .sign-img {
    width: 240px;
    margin-top: 30px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
    #ceo .text p.desc br:not(.enter) {
        display: block;
    }
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    #ceo .content-title {
        margin-bottom: var(--tit-margin);
    }

    #ceo .text p.sign {
        margin-top: 40px;
    }

    #ceo .image {
        width: clamp(330px, 43vw, 480px);
    }

    #ceo .sign-img {
        width: 180px;
    }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    #ceo .content-title {
        margin-bottom: var(--tit-margin);
    }

    #ceo .content-wrap {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    #ceo .text p.sign {
        margin-top: 30px;
    }

    #ceo .image {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    #ceo .sign-img {
        width: 140px;
        margin-top: 20px;
    }
}