@charset "utf-8";

.s0102 .vision-wrap {
    position: relative;
    padding: 80px 0;
    background: #f4faf8;
    overflow: hidden;
}

/* 배경 텍스트 */
.s0102 .vision-wrap:before {
    content: "VISION";
    position: absolute;
    left: -80px;
    top: 120px;
    font-size: 150px;
    font-weight: 700;
    color: #eef7f3;
    z-index: 0;
}

.s0102 .vision-wrap:after {
    content: "MISSION";
    position: absolute;
    right: -90px;
    bottom: 40px;
    font-size: 130px;
    font-weight: 700;
    color: #eef7f3;
    z-index: 0;
}

/* Vision */
.s0102 .vision-title {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 40px 50px;
    text-align: center;
    background: #fff;
    border-radius: 40px 0 40px 0;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.s0102 .vision-title span {
    display: inline-block;
    padding: 7px 22px;
    border-radius: 30px;
    background: #006940;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
}

.s0102 .vision-title h2 {
    margin: 18px 0;
    font-size: 34px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.s0102 .vision-title p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Mission */
.s0102 .mission-area {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    max-width: 1280px;
    margin: auto;
}

/* 📌 5개 미션 카드 크기 완전 고정 (너비 360px, 높이 330px) */
.s0102 .mission-card {
    position: relative;
    width: 360px;
    height: 290px;
    padding: 45px 40px;
    background: #fff;
    border: 1px solid #0d8b58;
    border-radius: 60px 0 60px 0;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,.08);
    transition: .35s;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

.s0102 .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.s0102 .mission-card:after {
    content: '';
    position: absolute;
    left: -20%;
    bottom: -90px;
    width: 150%;
    height: 160px;
    background: linear-gradient(90deg,#006940,#3ba95f);
    border-radius: 50%;
    opacity: .15;
}

/* 우측 상단 숫자 */
.s0102 .mission-card span {
    position: absolute;
    top: 40px;
    left: 40px; /* right: 40px; 에서 left: 40px;로 변경 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #006940;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* 제목 한 줄 어우러짐 정렬 */
.s0102 .mission-card strong {
    display: block;
    margin: 0 0 15px 60px; /* margin: 0 60px 15px 0; 에서 좌측(60px) 여백으로 변경 */
    font-size: 26px;      
    color: #006940;
    font-weight: 700;
    line-height: 45px;    
    white-space: nowrap;  
}

.s0102 .mission-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* 반응형 설정 */
@media (max-width: 1024px) {
    .s0102 .vision-title {
        padding: 45px;
        margin: 0 20px 50px;
    }

    .s0102 .vision-title h2 {
        font-size: 34px;
    }

    .s0102 .mission-card {
        width: calc(50% - 20px);
        height: 290px; /* 태블릿에서도 높이 고정 유지 */
    }
}

@media (max-width: 768px) {
    .s0102 .vision-title {
        padding: 35px 25px;
    }

    .s0102 .vision-title h2 {
        font-size: 28px;
    }

    .s0102 .vision-title p {
        font-size: 16px;
    }

    /* 모바일에서는 화면 너비에 맞추어 유동적으로 변하되, 카드 크기 통일 */
    .s0102 .mission-card {
        width: 100%;
        height: auto; 
        min-height: 280px;
    }

    .s0102 .mission-card strong {
        white-space: normal; /* 모바일 화면에서는 필요시 줄바꿈 허용 */
    }

    .s0102 .vision-wrap:before,
    .s0102 .vision-wrap:after {
        display: none;
    }
}