/*메인비주얼*/
.visual {
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

.visual .inner {
    max-width: 93.75rem;
    margin: 0 auto;
}

.main-slide .inner {
    height: 100%;
}

.main-slide .slide {
    height: 100%;
    overflow: hidden;
}

.main-slide .slide-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-slide .slide-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

.main-slide .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.main-slide .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slide .symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 3;
    text-align: center;
}

.main-slide .symbol img {
    width: 9.375rem;
    height: 9.375rem;
    position: static;
}

.main-slide .symbol strong {
    display: block;
    font-size: 4rem;
    font-weight: 500;
    margin-top: 1.25rem;
    font-family: 'Merriweather';
}


.main-slide .slide-text strong {
    font-size: 3.4375rem;
    letter-spacing: .1875rem;
    font-weight: 800;
    font-family: 'Merriweather';
}

.visual-indicator {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 99;
    bottom: 3.25rem;
    right: 3.25rem;
}

.visual-pagination {
    width: auto;
}

.visual-pagination span {
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    display: inline-block;
    min-width: 3.125rem;
}

.visual-pagination .swiper-pagination-current {
    color: #fff;
    position: relative;
    padding-right: 1.875rem;
}

.visual-pagination .swiper-pagination-current:after {
    content: '';
    width: 1.375rem;
    height: .0625rem;
    background: rgba(255, 255, 255, .5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .1875rem;
}

.visual-control {
    display: flex;
}

.visual-control button {
    color: #fff;
    font-size: 1.4rem;
}

.visual-control .vi-play {
    display: none;
}

.video-control {
    position: absolute;
    bottom: 3.125rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.video-control button {
    width: 3.125rem;
    height: 3.125rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-control button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/*common*/
section {
    padding: 4.375rem 0;
    position: relative;
    z-index: 10;
    background-color: #fff;
}


.research-wrap {
    width: 85vw;
    margin: 0 auto;
}

.research {
    display: flex;
    gap: 2rem;
}

.research .col-1 {
    width: 50%;
}

.research .col-2 {
    width: 50%;
}


.research-wrap .title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: 'Merriweather';
}

.research .title p {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;

}

.research-list {
    display: flex;
    flex-direction: column;
}

.research-list li {
    border-bottom: 2px solid #eaeaea;
    transition: all .3s ease;
    position: relative;
}

.research-list li:last-child {
    border-top: 0;
}

.research-list li::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ea5514;
    transition: width .3s ease;
}

.research-list li.on::after {
    width: 100%;
}

.research-list li a {
    padding: 1.6rem 1.875rem;
    font-size: 1.25rem;
    display: block;
    transition: all .3s ease;
}

.research-list li strong {
    font-family: 'Merriweather';
    font-size: 1.5rem;
    transition: color .3s ease;
}

.research-list li.on strong {
    color: #ea5514;
}

.research-list li p {
    display: none;
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    margin-top: 1rem;
}

.research-list li.on p {
    display: -webkit-box;
}

.research-list li:hover a {
    transform: translateX(5px);
}



.research-image .thumb {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
}

.research-image .thumb-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.research-image .thumb-img img {
    position: absolute;
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

.research-image .text {
    background-color: #363030;
    padding: 30px;
}

.research-image .text p {
    color: #fff;
    font-weight: 500;
    line-height: 1.8;
}


.col-2 .research-image {
    display: none;
}

.col-2 .research-image.on {
    display: block;
}

/* section-2: shortcut */
.section-2 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    /* prevent 122vw from causing scrollbars */
    height: 100vh;
    background: #F6F6F6;
}

.shortcut {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    perspective: 1500px;
}

.shortcut .left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20vw;
    z-index: 1;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.shortcut .right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20vw;
    z-index: 1;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.shortcut .image {
    position: relative;
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
}

.shortcut .img-cut {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
}

/* 첫 번째 요소를 relative로 두어 겹치는 틀에 원본 이미지 비율만큼의 공간(높이)을 만들어줌 */
.shortcut .image .img-cut:first-child {
    position: relative;
}

.shortcut .img-cut img {
    width: 100%;
    height: auto;
    display: block;
}

/* left .img-cut transforms (겹쳐지는 카드형 스택) */
.shortcut .left .img-cut:nth-child(1) {
    transform: translate3d(0vw, 0, 0) rotateY(20deg) scale(1.1);
    z-index: 3;
}

.shortcut .left .img-cut:nth-child(2) {
    transform: translate3d(8vw, 0, -10vw) rotateY(15deg) scale(0.9);
    z-index: 2;
}

.shortcut .left .img-cut:nth-child(2) img {
    opacity: 0.6;
}

.shortcut .left .img-cut:nth-child(3) {
    transform: translate3d(16vw, 0, -20vw) rotateY(25deg) scale(0.7);
    z-index: 1;
}

.shortcut .left .img-cut:nth-child(3) img {
    opacity: 0.3;
}

/* right .img-cut transforms (거울처럼 반대로 겹침) */
.shortcut .right .img-cut:nth-child(1) {
    transform: translate3d(0vw, 0, 0) rotateY(-20deg) scale(1.1);
    z-index: 3;
}

.shortcut .right .img-cut:nth-child(2) {
    transform: translate3d(-8vw, 0, -10vw) rotateY(-15deg) scale(0.9);
    z-index: 2;
}

.shortcut .right .img-cut:nth-child(2) img {
    opacity: 0.6;
}

.shortcut .right .img-cut:nth-child(3) {
    transform: translate3d(-16vw, 0, -20vw) rotateY(-25deg) scale(0.7);
    z-index: 1;
}

.shortcut .right .img-cut:nth-child(3) img {
    opacity: 0.3;
}

.shortcut .text {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 40vw;
}

.shortcut .text small {
    display: block;
    color: #EA5514;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Merriweather';
}

.shortcut .text strong {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    font-family: 'Merriweather';
}

.shortcut .text p {
    font-size: 1rem;
    color: #555;
    padding-top: 4.375rem;
    font-weight: 300;
    line-height: 1.8;

}

.programs {
    display: flex;
    justify-content: space-between;
    width: 85vw;
    margin: 0 auto;
    align-items: flex-start;
    /* sticky 적용을 위해 높이 독립화 */
}

.programs .col-1 {
    width: 40%;
}

.programs .col-2 {
    width: 55%;
    /* 40% + 55% = 95%. 나머지 5%가 빈 공간(gap 역할)으로 남게 됨 */
}

.programs .title {
    transform: translateY(30%);
}

.programs .title h2 {
    font-size: 3.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-family: 'Merriweather';

}

.programs .title p {
    color: #555;
    line-height: 1.8;
    font-weight: 300;
}

.program-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.program-list .item {
    transition: all .3s ease;
    width: calc(50% - .625rem);
}

.program-list .item:nth-child(even) {
    transform: translateY(2.5rem);
}

.program-list .item a {
    display: block;
    position: relative;
}

.program-list .item:hover {
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.1);
}

.program-list .item:hover a {
    text-decoration: none;
}

.program-list .item:hover .thumb-img img {
    transform: scale(1.1);
}


.program-list .thumb {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
}

.program-list .thumb:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
    transition: background 0.3s ease;
}

.program-list .item:hover .thumb:after {
    background: rgba(0, 0, 0, 0.5);
}

.program-list .thumb-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.program-list .thumb-img img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-list .text {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.program-list .text strong {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    transition: color 0.3s ease;
}


.news {
    width: 85vw;
    margin: 0 auto;
}


.news .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.news .title h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Merriweather';
    margin-bottom: 0;
}

.more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.125rem;
    height: 3.125rem;
    border: 1px solid #bdbdbd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.more-btn::before,
.more-btn::after {
    content: '';
    position: absolute;
    background-color: #bdbdbd;
    transition: all 0.3s ease;
}

.more-btn::before {
    width: 1.125rem;
    height: 1.5px;
}

.more-btn::after {
    width: 1.5px;
    height: 1.125rem;
}

.more-btn:hover {
    background-color: #ea5514;
    border-color: #ea5514;
    transform: rotate(90deg);
}

.more-btn:hover::before,
.more-btn:hover::after {
    background-color: #fff;
}


.news-list .item {
    transition: all .3s ease;
    padding: .9375rem 0;
    border-top: 1px solid #d4d4d4;
}

.news-list .item:last-child {
    border-bottom: 1px solid #d4d4d4;
}

.news-list .item a {
    display: flex;
    position: relative;
    align-items: center;
    gap: 1.25rem;
}

.news-list .thumb {
    position: relative;
    width: 30%;
    aspect-ratio: 10 / 7;
    /* 부모 너비 기준으로 잡히는 padding-bottom 대신 직관적인 비율 속성 사용 */
}

.news-list .thumb-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.news-list .thumb-img img {
    position: absolute;
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform .3s ease;
}

.news-list .item:hover .thumb-img img {
    transform: scale(1.1) !important;
}

.news-list .text {
    width: 70%;
}

.news-list .text strong {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.news-list .text strong::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ea5514;
    transition: width 0.3s ease;
}

.news-list .item:hover .text strong {
    color: #ea5514;
}

.news-list .item:hover .text strong::after {
    width: 100%;
}

.news-list .text p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
;
}

.academics {
    width: 85vw;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.academics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.academics-header .title h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Merriweather';
}

.academics-controls {
    display: flex;
    gap: 1rem;
    position: relative;
}

.academics-controls .swiper-button-prev,
.academics-controls .swiper-button-next {
    position: static;
    margin: 0;
    width: 3rem;
    height: 3rem;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #666;
    display: flex !important;
    /* 스와이퍼가 슬라이드 개수 부족으로 착각해(lock) 숨기는 현상 방지 */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.academics-controls .swiper-button-prev:hover,
.academics-controls .swiper-button-next:hover {
    background-color: #ea5514;
    border-color: #ea5514;
    color: #fff;
}

.academics-controls .swiper-button-prev:after,
.academics-controls .swiper-button-next:after {
    font-size: 1rem;
}

.academics-swiper {
    overflow: visible;
    /* 오른쪽 밖으로 삐져나가는 슬라이드 보여주기 위해 visible 처리 */
    clip-path: inset(-100vh -200vw -100vh 0);
    /* 지나간 슬라이드가 왼쪽 공간에 보이지 않도록 왼쪽 면만 0으로 잘라냄 */
    width: 25vw;
    /* Swiper 내부 한계(Limit)를 돌파해 3번째 아이템까지 막힘없이 슬라이드 락(Lock)을 풀기 위한 인위적 축소 프레임 */
    margin: 0;
    /* 강제 좌측 정렬 기둥 */
}

.academics-swiper .swiper-slide {
    width: 18vw;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    opacity: 0.5;
}

.academics-swiper .swiper-slide-active {
    width: 55vw;
    opacity: 1;
}

.academics-swiper .item a {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
}

.academics-swiper .thumb {
    width: 18vw;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 3 / 4;
}

.academics-swiper .thumb-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.academics-swiper .thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.academics-swiper .content {
    width: calc(37vw - 3rem);
    /* 애니메이션 되는 동안 너비가 변하지 않도록 활성화 너비로 사전 고정 */
    flex: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.academics-swiper .swiper-slide-active .content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.academics-swiper .text small {
    display: block;
    color: #EA5514;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.academics-swiper .text strong {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.academics-swiper .text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.academics-swiper .tag {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.academics-swiper .tag span {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f6f6f6;
    border:1px solid #f6f6f6;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
    transition:  all .2s;
}

.academics-swiper .tag span:hover{
    background: #f5ebe1;
    color: #f54b1e;
    border: 1px solid #f54b1e;
}

.academics-swiper .tag .goto {
    background: #f5ebe1;
    color: #F54B1E;
}

.section-6 {
    position: relative;
    padding: 8rem 0;
    /* 배경 이미지를 덮어 텍스트 가독성을 높이는 어두운 오버레이 효과 추가 */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url(/resources/images/site/eng/main/main-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.section-6 .container {
    width: 85vw;
    margin: 0 auto;
}

.section-6 .text {
    width: 62%;
    margin-bottom: 5rem;
}

.section-6 .text strong {
    display: block;
    font-size: 40px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-6 .text p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.section-6 .link-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.section-6 .link-group:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* 그룹 사이 얇은 가로선 */
}

.section-6 .link-group span {
    font-size: 1.25rem;
    font-weight: 700;
    width: 9rem;
    /* 고정 너비로 두 번째 그룹과 버튼 시작선 정렬 */
    flex-shrink: 0;
}



.section-6 .link-group a {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    /* 둥근 캡슐형 테두리 */
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.section-6 .link-group a:hover {
    background: #fff;
    color: #222;
    /* 마우스 오버 시 바탕 하얗게, 글씨 까맣게 반전 */
    border-color: #fff;
}

@media (max-width: 991px) {

    /* 공통: 여백 및 너비 조절 */
    section {
        padding: 3rem 0;
    }

    .visual .inner {
        padding: 0 1.25rem;
    }

    .visual-indicator {
        right: 1rem;
        bottom: 1rem;
    }



    /* 메인 비주얼 텍스트 위치 보정 */
    .main-slide .slide-text {
        left: 1.5rem;
        width: 90vw;
    }

    .main-slide .slide-text p {
        font-size: 1rem;
    }

    /* Section 1: Research */
    .research-wrap {
        width: 92vw;
    }

    .research {
        flex-direction: column;
        gap: 0;
    }

    .research .col-1,
    .research .col-2 {
        width: 100%;
    }

    /* 순서 재배치: 1.타이틀 -> 2.우측이미지 -> 3.뉴스목록 */
    .research .title {
        order: 1;
        margin-bottom: 0;
    }

    .research-list li strong {
        font-size: 1.3rem;
    }

    .research .col-2 {
        order: 2;
    }

    .research-list {
        order: 3;
    }

    .research .title p {
        font-size: 2rem;
    }

    .research-list li a {
        padding: 1.5rem;
    }

    /* Section 2: Shortcut (3D 겹침 해제 및 블록화) */
    .section-2 {
        height: auto;
        min-height: auto;
        overflow-y: visible;
        padding: 4rem 0;
    }

    .shortcut {
        flex-direction: column;
        top: 0;
        transform: none;
        min-height: auto;
        perspective: none;
        padding: 0;
        gap: 2rem;
        position: static;
    }

    .shortcut .left,
    .shortcut .right {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        transform-style: flat !important;
    }

    .shortcut .image {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
        position: static;
    }

    .shortcut .image .img-cut {
        position: relative !important;
        width: 32% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        opacity: 0.5;
        filter: blur(10px);
        z-index: 1 !important;
    }

    .shortcut .text {
        width: 92vw;
        position: relative;
        transform: none;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }

    .shortcut .text p {
        padding-top: 1rem;
    }

    .shortcut .text strong {
        font-size: 1.8rem;
    }

    /* Section 3: Programs */
    .programs {
        flex-direction: column;
        gap: 2.5rem;
        width: 92vw;
    }

    .programs .title,
    .program-list .item:nth-child(even) {
        transform: translateY(0);
    }

    .programs .col-1,
    .programs .col-2 {
        width: 100%;
    }

    .programs .title h2 {
        font-size: 2rem;
    }

    .program-list .text {
        padding: 0.625rem;
    }

    .program-list .text strong {
        font-size: 1.2rem;
    }

    .program-list .thumb:after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
    }

    /* Section 4: News */
    .news {
        width: 92vw;
    }

    .news .title h2 {
        font-size: 2rem;
    }

    .news-list .item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .news-list .thumb,
    .news-list .text {
        width: 100%;
    }

    /* Section 5: Academics */
    .academics {
        width: 92vw;
    }

    .academics-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .academics-header .title h2 {
        font-size: 2rem;
    }

    .academics-swiper {
        width: 100%;
        overflow: hidden;
    }

    .academics-swiper .swiper-slide,
    .academics-swiper .swiper-slide-active {
        width: 100%;
        opacity: 1;
    }

    .academics-swiper .item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .academics-swiper .thumb {
        width: 100%;
        aspect-ratio: 3 / 2;
        /* 기존 3/4 비율 대비 로우 높이를 정확히 절반으로 축소 */
    }

    .academics-swiper .content {
        width: 100%;
        flex: auto;
    }

    /* Section 6: Footer Links Area */
    .section-6 {
        padding: 4rem 0;
    }

    .section-6 .container {
        width: 100vw;
    }

    .section-6 .inner {
        padding: 4rem 0;
    }

    .section-6 .text {
        width: 100%;
        margin-bottom: 2rem;
    }

    .section-6 .text strong {
        font-size: 1.875rem;
    }

    .section-6 .text h3 {
        font-size: 2rem;
    }

    .section-6 .link-group {
        align-items: flex-start;
        gap: 0.8rem;
    }

    .section-6 .link-group span {
        width: 100%;
        text-align: left;
    }
}

@media all and (max-width:767px) {

    /* 모바일 소형 디바이스용 미세 조정 사항 추가 가능 구역 */

    .visual-control button {
        font-size: 1.2rem;
    }


    /* col-1 껍데기를 해제하여 하위 요소들을 .research 직계 flex 아이템으로 승격 */
    .research .col-1 {
        display: contents;
    }


}