* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: "NexonLv1Gothic";
    font-weight: 300;
    background-color: #000;
    overflow-x: hidden;
}

/* 로고와 텍스트 고정 스타일 */
.fixed-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.rightCon{
    /* margin-left: 600px; */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 66%;
}
#studioVid{
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    width: 1100px;
    height: 1100px;
    background: #d6d6d6;
    border-radius: 100%;
    overflow: hidden;
}
 video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    /* width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; */
}
.studio-logo {
    width: 150px;
    margin: 0 auto;
    margin-bottom: 30px;
    opacity: 0;
}
.studio-desc p{
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    opacity: 0;
}
.studio-desc p b{
    font-weight: 700;
    font-size: 24px;
}
.studio-desc span{
    font-weight: 700;
}
/* 원형 이미지 스타일 */
.circle-image {
    position: absolute;
    width: 1100px;
    height: 1100px;
    border-radius: 100%;
    background: #f1f1f1;
    overflow: hidden;
    left: 50%;
    top: 50%;
    /* transform: translate(-150%, -50%); */
    transform: translate(-50%, -50%);
    z-index: 1;
    /* opacity: 0; */
    /* visibility: hidden; */
}
.circle-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* 섹션 스타일 */
section {
    height: 100vh;
    position: relative;
}

.inner{
    width: 100%;
    display: flex;
}
#historySec{
    height: 100vh;
    z-index: 3;
}
#historySec11{
    z-index: 3;
}
.inner{
    display: block;
    width: 98%;
    margin: 0 auto;
    max-width: 1500px;
    position: relative;
}
.titleSec{
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 40px;
}
/* .his_wrapper{
    
} */
.his_cont{
    display: flex;
    justify-content: space-between;
}
.his_cont:not(:last-child){
    margin-bottom: 180px;
}
.cont_img{
    width: 660px;
    border-radius: 20px;
    overflow: hidden;
}
.cont_txt{
    width: 680px;
    display: flex;
    align-items: flex-end;
}
.cont_txt ul li{
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 36px;
}
.cont_txt .date{
    background: #4B2989;
    padding: 8px 12px;
    border-radius: 99px;
}
.cont_txt .desc {
    font-size: 16px;
    transition: 0.5s all;
    padding: 2px;
    cursor: default;
    word-break: keep-all;
}

.cont_txt .desc:hover {
    font-size: 16.8px; /* 16 × 1.05 */
    padding: 4px;
}
#mediaSec {
    background: #fff;
    z-index: 3;
}
#mediaSec .content_wrapper{
    width: 100%;
    padding: 120px 0;
}
#mediaSec .right_con{
}
#mediaSec .sec_tit{
    position: static;
}
#mediaSec .sec_tit h3{
    color: #000;
    font-size: 60px;
    margin-bottom: 40px;
}


.grid_wrapper {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; */
    width: 100%;
}

.grid_item {
    position: relative;
    overflow: hidden;

    padding: 0 10px;
}

.grid_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.grid_img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.grid_img img{
    transition: 0.5s all;
    display: block;
}
.grid_item:hover .grid_img img{
    /* animation: scaleBg 10s linear infinite; */
    transform: scale(1.12);
}
.arrows .arw{
    cursor: pointer;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background-color: #000;
    padding: 16px;
    border-radius: 100%;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    z-index: 2;
}
.arrows .prev{
    left: -18px;
    width: 48px;
    height: 48px;
    background-image: url(../../image/arrow_prev_new.png);
}
.arrows .next{
    right: -18px;
    width: 48px;
    height: 48px;
    background-image: url(../../image/arrow_next_new.png);
}
@keyframes scaleBg {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15);

    }
    100%{
        transform:scale(1);
    }
}

.grid_text {
    padding: 15px;
}

.grid_title {
    font-size: 20px;
    line-height: 1.4;
    
    word-break: keep-all;
    color: #000;
    /* height: 1rem;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
     */
}

.empty_list {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
}

/* 반응형 처리 */
@media screen and (max-width: 1540px) {
    /* 배너 */
    .circle-image{
        width: 80%;
        height: auto;
    }
    /* 연혁1 */
    .inner{
        width: 90%;
    }
    .his_cont{
        gap: 20px;
        justify-content: flex-start;
    }
    .cont_img{
        width: 57%;
        border-radius: 16px;
    }
    .cont_txt{
        width: auto;
    }
    /* 연혁2 */
    /* 미디어 */
}
@media screen and (max-width: 1440px) {
    .cont_img{
        width: 40%;
        border-radius: 16px;
    }
    .cont_img img{
        object-fit: cover;
        height: 100%;
    }
}
@media screen and (max-width: 1024px) {
    /* 배너 */

    .circle-image {
        width: 96%;
        height: auto;
    }
    /* 연혁1 */
    #historySec,#historySec11{
        height: auto;
        padding: 40px 0;
    }
    .his_cont{
        flex-direction: column;
    }
    .cont_txt ul li{
        margin-bottom: 20px;
    }
    .titleSec{
        font-size: 40px;
        margin: 40px 0;
    }
    /* 연혁2 */
    /* 미디어 */
    #mediaSec{
        height: auto;
    }
    #mediaSec .content_wrapper{
        padding: 40px 0;
    }
    #mediaSec .sec_tit h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 900px) {
    .cont_img{
        width: 100%;
    }
    .circle-image {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}
@media screen and (max-width: 768px) {
    /* 배너 */
    .center{
        width: 100%;
    }
    .studio-logo {
        width: 20%;
    }
    /* 연혁1 */
    .titleSec{
        font-size: 40px;
    }
    .cont_txt .desc:hover {
        font-size: inherit;
        padding: 0;
    }
    /* 연혁2 */
    /* 미디어 */

    /* .grid_wrapper {
        grid-template-columns: repeat(2, 1fr);
    } */
    .grid_title{
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    /* 배너 */
    .studio-desc p{
        font-size: 16px;
    }
    .studio-desc p b{
        font-size: 20px;
    }
    /* 연혁1 */
    .titleSec {
        font-size: 28px;
        margin: 20px 0;
    }
    /* 연혁2 */
    /* 미디어 */
    #mediaSec .content_wrapper{
        padding: 0;
    }
    #mediaSec .sec_tit h3{
        font-size: 28px;
    }
    .grid_title{
        font-size: 14px;
    }
    .arrows .prev{
        left: 16px;
    }
    .arrows .next{
        right: 16px;
    }
    .arrows .prev,
    .arrows .next{
        width: 32px;
        height: 32px;
    }
}
@media screen and (max-width: 375px) {
     .cont_txt .desc{
        font-size: 14px;
     }
     .cont_txt .date{
        font-size: 14px;
     }
     .cont_txt ul li{
        gap: 8px;
     }
    .studio-desc p {
        font-size: 13px;
    }
}