#brandPhilosophy .brand-item {
    position: relative;
}

#brandPhilosophy .brand-item .flex {
    display: flex;
    justify-content: space-between;
    gap: 7.8125vw;
}

#brandPhilosophy .t-02 .flex {
    margin-top: -5.2vw;
    flex-direction: row-reverse;
}

#brandPhilosophy .image-box {
    width: clamp(480px, 36.458vw, 700px);
    height: auto;
    aspect-ratio: 3/4;
}

#brandPhilosophy .image-box .bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#brandPhilosophy .flex {
    position: relative;
    z-index: 2;
}

#brandPhilosophy .t-01 .text-box {
    margin-top: 90px;
}

#brandPhilosophy .t-01 .text-box .text {
    padding-left: var(--container-padding);
}

#brandPhilosophy .t-02 .text-box .text {
    padding-right: var(--container-padding);
    margin-top: 13vw;
}

#brandPhilosophy .text-box h2 {
    margin-bottom: 60px;
}

#brandPhilosophy .text-box h2 b {
    font-weight: inherit;
    color: var(--color-primary);
}

#brandPhilosophy .text-box p {
    font-size: var(--f22);
    line-height: 1.8;
    word-break: keep-all;
}

#brandPhilosophy .text-box .bg-text {
    font-family: "Raleway", "Pretendard", sans-serif;
    display: inline-block;
    position: absolute;
    font-size: clamp(40px, 5.208vw, 100px);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.035);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

#brandPhilosophy .t-01 .text-box .bg-text {
    bottom: 10.4166vw;
    left: -10px;
}

#brandPhilosophy .t-02 .text-box .bg-text {
    top: 9.375vw;
    right: -10px;
}

#coreValue .core-value-list {
    --circle-size: clamp(230px, 18.75vw, 360px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(35px, 2.86458vw, 55px);
}

#coreValue .core-value-list .item {
    min-width: 0;
    text-align: center;
    flex: 1;
}

#coreValue .circle {
    width: var(--circle-size);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    transition:
        background-color 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

#coreValue .value-en {
    display: block;
    margin-bottom: 8px;
    font-family: "Raleway", "Pretendard", sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 0.6);

    transition: color 0.55s ease;
}

#coreValue .value-ko {
    display: block;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;

    transition: color 0.55s ease;
}

#coreValue .value-desc {
    margin-top: 30px;
    font-size: var(--f18);
    font-weight: 400;
    line-height: 1.8;
    word-break: keep-all;
    color: rgba(0, 0, 0, 0.6);

    transition:
        color 0.55s ease,
        transform 0.55s ease;
}

/* 자동재생 활성화 상태 */
#coreValue .item.is-active .circle {
    background: var(--color-text);
}

#coreValue .item.is-active .value-en {
    color: rgba(255, 255, 255, 0.6);
}

#coreValue .item.is-active .value-ko {
    color: #fff;
}

/* 원 사이 X */
#coreValue .core-value-symbol {
    --symbol-size: 34px;
    position: relative;
    width: var(--symbol-size);
    height: var(--symbol-size);
    margin-top: calc(var(--circle-size) * 0.5);
}

#coreValue .core-value-symbol::before,
#coreValue .core-value-symbol::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--symbol-size) * 1.35);
    height: 1px;
    background: #111;
    transform-origin: center;
}

#coreValue .core-value-symbol::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#coreValue .core-value-symbol::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
    #brandPhilosophy .text-box p {
        font-size: 18px;
    }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    #brandPhilosophy .brand-item .flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--tit-margin);
    }

    #brandPhilosophy .t-02 .flex {
        margin-top: var(--divider-gap);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #brandPhilosophy .image-box {
        aspect-ratio: 5 / 3;
        width: 85%;
    }

    #brandPhilosophy .text-box {
        width: 90vw;
        margin: 0 auto;
    }

    #brandPhilosophy .t-01 .text-box {
        margin-top: 0;
    }

    #brandPhilosophy .t-01 .text-box .text {
        padding-left: 0;
    }

    #brandPhilosophy .t-02 .text-box .text {
        padding-right: 0;
        margin-top: 0;
    }

    #brandPhilosophy .text-box h2 {
        margin-bottom: 40px;
    }

    #brandPhilosophy .text-box .bg-text {
        display: none;
    }

    #coreValue .core-value-list {
        --circle-size: clamp(165px, 19.53125vw, 230px);
        gap: 20px;
    }

    #coreValue .value-en {
        font-size: 20px;
    }

    #coreValue .value-ko {
        font-size: 24px;
    }

    #coreValue .value-desc {
        margin-top: 20px;
    }

    /* 원 사이 X */
    #coreValue .core-value-symbol {
        --symbol-size: 20px;
    }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    #brandPhilosophy .brand-item .flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--tit-margin);
    }

    #brandPhilosophy .t-02 .flex {
        margin-top: var(--divider-gap);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #brandPhilosophy .image-box {
        aspect-ratio: 5 / 3;
        width: 90%;
    }

    #brandPhilosophy .text-box {
        width: 90vw;
        margin: 0 auto;
    }

    #brandPhilosophy .t-01 .text-box {
        margin-top: 0;
    }

    #brandPhilosophy .t-01 .text-box .text {
        padding-left: 0;
    }

    #brandPhilosophy .t-02 .text-box .text {
        padding-right: 0;
        margin-top: 0;
    }

    #brandPhilosophy .text-box h2 {
        margin-bottom: 20px;
    }

    #brandPhilosophy .text-box .bg-text {
        display: none;
    }

    #coreValue .core-value-list {
        --circle-size: clamp(90px, 12vw, 165px);
        gap: 10px;
    }

    #coreValue .value-en {
        margin-bottom: 3px;
        font-size: 11px;
    }

    #coreValue .value-ko {
        font-size: 15px;
    }

    #coreValue .value-desc {
        margin-top: 12px;
        font-size: 12px;
    }

    /* 원 사이 X */
    #coreValue .core-value-symbol {
        --symbol-size: 10px;
    }
}