/* components.css */
@charset "utf-8";


/* title */
.title-v1 {
    margin-bottom: 50px;
}

.title-v1 h2 {}

.title-v2 {
    margin-bottom: 50px;
}

.title-v2 h2 {}

.title-v2 h2::before {
    content: "";
    width: 100px;
    height: 5px;
    background-color: var(--grey-heavy-02);
    margin-bottom: 24px;
}


/* box */
.box-v1 {
    height: 710px;
    width: 100%;
    padding: 50px;
}

.box-v1 h3 {
    color: var(--white);
    text-align: center;
}

.box-v2 {
    width: 100%;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}

.box-v2 i {
    background-color: var(--white);
    width: 72px;
    height: 72px;
    padding: 14px;
    border-radius: 36px;
}

.box-v2 i svg.icon {
    color: var(--main-heavy-03);
}

.box-v2 .wrapper {
    color: var(--white);
}

.box-v2 .wrapper h4 {
    margin-bottom: 10px;
}

.box-v2 .wrapper p {}

.box-v3 {
    padding: 24px;
    border: 1px solid var(--grey-medium);
    transition: all 0.5s;
}

.box-v3 .img-area {
    margin-bottom: 20px;
    width: 100%;
    height: 246px;
    overflow: hidden;
}

.box-v3 .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← 피그마 Fill 모드와 동일 */
    object-position: center;
}

.box-v3 .wrapper {}

.box-v3 .wrapper h4 {
    margin-bottom: 10px;
    color: var(--main-heavy-01);
    transition: all 0.5s;
}

.box-v3 .wrapper p {
    transition: all 0.5s;
}

/* .box-v3:hover */
.box-v3:hover {
    border: 1px solid var(--main-heavy-01);
    background-color: var(--main-heavy-01);
}

.box-v3:hover .wrapper h4,
.box-v3:hover .wrapper p {
    color: var(--white);
}

.box-v4 {
    background-color: var(--main-heavy-01);
    color: var(--white);
    width: 100%;
    height: 620px;
    position: relative;
    overflow: hidden;
}

.box-v4 .wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-v4 .wrapper .title-area {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.box-v4 .wrapper .title-area h4 {}

.box-v4 .wrapper .title-area i {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.box-v4 .wrapper .title-area i svg {
    color: var(--white);
}

.box-v4 .wrapper .txt-area {
    width: 100%;
    flex: 0 0 0;
    padding: 0 50px;
    overflow: hidden;
    background-color: var(--main-heavy-01);
    transition: flex 1s ease, padding 1s ease;
}

.box-v4 .wrapper .txt-area.active {
    flex: 1;
    /* title-area를 제외한 나머지 공간 모두 채우기 */
    padding: 50px;
}

.box-v4 .wrapper .txt-area .p-wrap {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-v4 .wrapper .txt-area .p-wrap p {}

.box-v5 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.box-v5 .contents-wrap {}

.box-v5 .contents-wrap .img-wrap {}

.box-v5 .contents-wrap .img-wrap i {
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    background-color: var(--main-heavy-01);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.box-v5 .contents-wrap:hover .img-wrap i {
    background-color: var(--grey-light-03);
    opacity: 0.5;
}

.box-v5 .contents-wrap .img-wrap i svg {
    /*  box-v5 아이콘 굵기 변동 */
    color: var(--white);
    stroke-width: 6px;
    width: 120px;
    height: 120px;
    transition: all 0.5s;
}

.box-v5 .contents-wrap .txt-wrap {
    width: 100%;
    padding: 0 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--main-heavy-03);
    opacity: 0;
    transition: all 0.5s;
}

.box-v5 .contents-wrap:hover .txt-wrap {
    opacity: 1;
}

.box-v5 .contents-wrap .txt-wrap h4 {
    margin-bottom: 10px;
}

.box-v5 .contents-wrap .txt-wrap p {}


.box-v6 {
    background-color: var(--grey-light-01);
    width: 700px;
    padding: 30px 50px;
    text-align: center;
    /* img-wrap 중앙 정렬을 위해 추가 */
}

.box-v6 .img-wrap {
    border: 1px solid var(--grey-heavy-02);
    padding: 16px 24px;
    height: 72px;
    display: inline-flex;
    margin-bottom: 34px;
}

.box-v6 .img-wrap img {}

.box-v6 .txt-wrap {
    text-align: left;
    /* 리스트는 왼쪽 정렬 유지 */
}

.box-v6 .txt-wrap ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-left: 0;
}

.box-v6 .txt-wrap ul li {
    display: list-item !important;
    /* reset.css의 display: block을 override */
    list-style: disc;
    margin-bottom: 8px;
}

.box-v6 .txt-wrap ul li::marker {
    font-size: 0.7em;
    /* 원형 크기 조절 (0.5em ~ 1em 사이 조절 가능) */
}

.box-v7 {
    padding: 24px;
    border: 1px solid var(--grey-light-03);
    transition: all 0.5s;
}

.box-v7 .img-area {
    background-color: var(--grey-light-01);
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.box-v7 .img-area .img-wrap {
    height: 80px;
}

.box-v7 .img-area img {
    height: 100%;
}

.box-v7 .txt-area {
    text-align: center;
}

.box-v7 .txt-area h3 {
    color: var(--main-heavy-01);
    margin-bottom: 10px;
    transition: all 0.5s;
}

.box-v7 .txt-area p {
    transition: all 0.5s;
}

.box-v7:hover {
    border: 1px solid var(--main-heavy-01);
    background-color: var(--main-heavy-01);
}

.box-v7:hover .txt-area h3,
.box-v7:hover .txt-area p {
    color: var(--white);
}

.box-v7 .txt-area p {}


/* txt-wrap-box */
.txt-wrap-box {}

.txt-wrap-box h4 {
    margin-bottom: 10px;
}

.txt-wrap-box .p-box {
    display: flex;
    column-gap: 8px;
    align-items: center;
}

.txt-wrap-box .p-box i {
    width: 20px;
    height: 20px;
}

.txt-wrap-box .p-box i svg {}

.txt-wrap-box .p-box p {}

/* list-box */
.list-box {}

.list-box .title {
    margin-bottom: 10px;
}

.list-box .title.large {}

.list-box .title.bold {}

.list-box ul {}

.list-box ul li {}