@import url("./common.css");

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--header-height);
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 인트로 섹션 */
.intro-section {
    width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 90px;
    padding: 0 20px;
    box-sizing: border-box;
}

.intro-title {
    color: #117d8d;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin:0 0 12px;
    word-break: keep-all;
}

.intro-desc {
    margin:0;
    font-size: 36px;
    color: #222;
    font-weight: 600;
    line-height: 1;
    word-break: keep-all;
}

/* 미션&비전 섹션 */
.mission-vision-section {
    margin: 0 auto 120px;
    padding: 0 20px;
    width: 1200px;
    box-sizing: border-box;
}

.mission-box,
.vision-box {
    display: flex;
    gap: 42px;
    margin-bottom: 63px;
}
.vision-box{margin-bottom: 0;}

.mission-box .text-wrap{
    margin-top: 75px;
}
.vision-box .text-wrap{
    margin-top: 76.5px;
}

.image-wrap {
    position: relative;
    flex-shrink: 0;
    width: 713px;
}

.image-wrap img {
    width: 100%;
    height: 337px;
    object-fit: cover;
}

.image-wrap .label {
    margin-top:8px;
    margin-bottom:0;
    color: #222;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.vision-box .label {
    text-align: right;
}

.text-wrap {
    flex: 1;
}

.text-wrap .title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
    word-break: keep-all;
}

.text-wrap .desc {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    word-break: keep-all;
}

/* 가치 섹션 */
.value-section {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    margin-bottom: 150px;
    box-sizing: border-box;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #000;
}

.value-title {
    position: relative;
    left: 50%;
    display: inline-block;
    padding: 0 15px;
    margin:0 0 55px;
    background-color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.value-list {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.value-item {
    width: 280px;
    text-align: center;
}

.icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    width: 128px;
    height: 128px;
    border: 1px solid #dbdbdb;
    border-radius: 50%;
    box-sizing: border-box;
}

.icon-wrap img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.value-item .title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.value-item .desc {
    margin: 0;
    font-size: 18px;
    color: #222;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: keep-all;
}

/* 반응형 스타일 */
@media screen and (max-width: 1280px) {
    .intro-section,
    .mission-vision-section,
    .value-section {
        width: 100%;
        padding: 0 40px;
    }

    .mission-box,
    .vision-box {
        flex-direction: column;
        gap: 30px;
    }

    .vision-box {
        flex-direction: column-reverse;
    }

    .vision-box .text-wrap{
        margin-top: 0;
    }

    .image-wrap {
        width: 100%;
    }

    .image-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 713/337;
    }

    .value-list {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .value-section::before {
        left: 40px;
        right: 40px;
    }
}

@media screen and (max-width: 968px) {
    .container {
        margin-top: var(--header-height-mobile);
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        overflow-x: hidden;
    }

    .intro-section {
        padding: 0 35px;
        margin-bottom: 40px;
    }

    .intro-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .intro-desc {
        font-size: 20px;
    }

    .mission-vision-section {
        padding: 0 35px;
        margin-bottom: 60px;
    }

    .mission-box,
    .vision-box {
        gap: 20px;
        margin: 0 0 60px;
    }
    .vision-box{
        margin: 0;
    }
    .mission-box .text-wrap{
        margin-top: 0;
    }

    .vision-box {
        flex-direction: column-reverse;
    }

    .image-wrap .label {
        font-size: 24px;
    }

    .text-wrap .title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .text-wrap .desc {
        margin-bottom: 0;
        font-size: 14px;
    }

    .value-section {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .value-section::before {
        left: 20px;
        right: 20px;
    }

    .value-title {
        font-size: 24px;
        margin-bottom: 45px;
    }

    .value-list {
        gap: 40px;
    }

    .value-item {
        width: 100%;
    }

    .icon-wrap {
        width: 100px;
        height: 100px;
        border-radius: 50px;
        margin-bottom: 20px;
        padding: 15px;
    }

    .icon-wrap img {
        width: 56px;
        height: 56px;
    }

    .value-item .title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .value-item .desc {
        font-size: 16px;
        line-height: 1.4;
    }
}