/**
 * NextBio Website - CI 페이지 스타일
 */

.ci-page {
    display: flex;
    flex-direction: column;
    gap: 160px;
    padding: 160px 0;
    background: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.ci-page .inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* CI 메인 타이틀 */
.ci-page .section-main-title {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    color: #000000;
    font-family: var(--font-family-suit);
    font-weight: 800;
    margin: 0;
}

/* 섹션 공통 */
.ci-page .content-section {
    text-align: center;
}

.ci-page .content-section.grey-bg {
    background-color: #f9f9f9;
    padding: 120px 0;
}

.ci-page .content-section.last {
    padding-bottom: 0;
}

.ci-page .sub-label {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 80px 0;
    color: #000000;
    font-family: var(--font-family-suit);
    font-weight: 800;
    text-align: left;
}

/* Corporate Identity */
.ci-page .logo-display {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ci-page .main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.ci-page .slogan-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.ci-page .slogan-text {
    font-size: 36px;
    font-weight: 800;
    color: #808284;
    margin: 0;
    font-family: var(--font-family-suit);
    font-weight: 800;
    line-height: 1.4;
}

.ci-page .slogan-text .green {
    color: var(--main, #8dc63f);
}

.ci-page .slogan-desc {
    font-size: 24px;
    color: #000000;
    margin: 0;
    font-family: var(--font-family-suit);
    font-weight: 500;
    line-height: 1.6;
}

/* Symbol */
.ci-page .symbol-desc {
    font-size: 24px;
    margin: 0 0 80px 0;
    color: #000000;
    font-family: var(--font-family-suit);
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.ci-page .symbol-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ci-page .symbol-logo.group,
.ci-page .symbol-logo.group * {
    box-sizing: border-box;
}

.ci-page .symbol-logo.group {
    width: 300px;
    height: auto;
    max-width: 100%;
    position: relative;
    overflow: visible;
}

.ci-page .symbol-color {
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 0;
    margin: 0 4px 0 0;
    vertical-align: -0.15em;
}

.ci-page .symbol-color-sky {
    background-color: #00aeef;
}

.ci-page .symbol-color-earth {
    background-color: #f5821f;
}

.ci-page .symbol-color-nature {
    background-color: #8dc63f;
}

/* Naming Motive */
.ci-page .motive-intro {
    margin: 0 0 80px 0;
}

.ci-page .motive-intro p {
    font-size: 24px;
    margin: 0;
    color: #000000;
    font-family: var(--font-family-suit);
    font-weight: 500;
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.ci-page .green-bold {
    color: var(--main, #8dc63f);
    font-weight: 700;
    font-family: var(--font-family-suit);
    font-weight: 700;
}

.ci-page .motive-box-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ci-page .motive-box {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ci-page .circle-dashed {
    border: 1px dashed #dfdfdf;
    background-color: #f4faec;
}

.ci-page .circle-solid {
    background-color: var(--main, #8dc63f);
    box-shadow: 0 10px 20px rgba(141, 198, 63, 0.2);
}

.ci-page .box-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ci-page .box-content strong {
    display: block;
    font-size: 32px;
    margin: 0;
    font-weight: 800;
    font-family: var(--font-family-suit);
    font-weight: 800;
}

.ci-page .point-txt {
    color: var(--main, #8dc63f);
}

.ci-page .white-txt {
    color: #ffffff;
    font-size: 40px !important;
}

.ci-page .sub-txt {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-family-suit);
    font-weight: 700;
    color: #000000;
}

.ci-page .sub-txt .green {
    color: var(--main, #8dc63f);
}

/* Color System */
.ci-page .color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ci-page .color-item {
    width: 100%;
}

.ci-page .color-swatch {
    height: 268px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 8px;
}

.ci-page .color-info {
    color: #ffffff;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-family-suit);
    font-weight: 600;
    line-height: 1.4;
}

.ci-page .color-info span {
    display: block;
}

/* 반응형 */
@media (max-width: 1440px) {
    .ci-page .inner {
        padding: 0 60px;
    }
}

@media (max-width: 1200px) {
    .ci-page {
        gap: 120px;
        padding: 120px 0;
    }
    .ci-page .main-logo {
        max-width: 320px;
    }
}

@media (max-width: 1024px) {
    .ci-page {
        gap: 100px;
        padding: 100px 0;
    }
    
    .ci-page .inner {
        padding: 0 40px;
    }
    
    .ci-page .section-main-title {
        font-size: 48px;
    }
    
    .ci-page .sub-label {
        font-size: 32px;
        margin-bottom: 60px;
    }
    
    .ci-page .color-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ci-page .content-section.grey-bg {
        padding: 80px 0;
    }
    
    .ci-page .symbol-logo {
        width: min(300px, 40vw);
    }
    
    /* 네이밍 모티브: CI 섹션과 동일한 글자 크기·반응형 비율 */
    .ci-page .motive-intro p {
        font-size: 22px;
    }
    .ci-page .motive-box-wrap {
        flex-wrap: nowrap;
        gap: 20px;
    }
    .ci-page .motive-box {
        width: 280px;
        height: 280px;
        min-width: 0;
    }
    .ci-page .box-content strong {
        font-size: 30px;
    }
    .ci-page .sub-txt {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ci-page {
        gap: 60px;
        padding: 60px 0;
    }
    
    .ci-page .inner {
        padding: 0 20px;
    }
    
    .ci-page .section-main-title {
        font-size: 40px;
    }
    
    .ci-page .sub-label {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .ci-page .slogan-text {
        font-size: 24px;
    }
    
    .ci-page .slogan-desc,
    .ci-page .symbol-desc,
    .ci-page .motive-intro p {
        font-size: 18px;
    }
    
    .ci-page .motive-box-wrap {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 12px;
    }
    
    .ci-page .motive-box {
        width: calc((100% - 24px) / 3);
        min-width: 0;
        aspect-ratio: 1;
        height: auto;
        max-width: 200px;
    }
    
    .ci-page .box-content strong {
        font-size: 22px;
    }
    
    .ci-page .white-txt {
        font-size: 28px !important;
    }
    
    .ci-page .sub-txt {
        font-size: 14px;
    }
    
    .ci-page .color-grid {
        grid-template-columns: 1fr;
    }
    
    .ci-page .color-swatch {
        height: 180px;
    }
    
    .ci-page .symbol-logo {
        width: min(300px, 70vw);
    }
    
    .ci-page .content-section.grey-bg {
        padding: 60px 0;
    }
}
