@charset "UTF-8";
.main {
    margin-top: 120px;
}

@media screen and (min-width: 769px) {
    .main {
        margin-top: 45px;
    }
}

/* =================================
work
====================================*/
.section--work {
    padding: 0;
}

.outLink {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.work__link {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.youtubeImg {
    display: block;
    width: 50px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.work__topic {
    width: 100%;
    padding: 0 var(--contentPadding);
    margin-top: 20px;
    font-weight: 500;
    font-size: 1.4rem;
}

.work__topic__date {
    width: 100%;
    padding: 0 var(--contentPadding);
    margin-top: 5px;
    font-family: var(--numberFont);
    font-size: 1rem;
    font-weight: 500;
}

.work__thumbnails {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.work__thumbnails img {
    pointer-events: none;
}

.work__minThumbnails {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.minThumbnail {
    width: 50%;
}

@media screen and (min-width: 769px) {
    .youtubeImg {
        width: 80px;
    }


    .work__topic {
        margin-top: 50px;
        font-weight: 500;
        font-size: 2.4rem;
        letter-spacing: 3px;
    } 

    .work__topic__date {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .work__thumbnails {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .thumbnail {
        width: 50%;
    }

    .minThumbnail {
        width: 25%;
    }
}

/* =================================
separateFloor
====================================*/
.detail__txt {
    border-left: 1.5px solid var(--primary-gray);
    padding: 5px 15px;
}

.detail__txt::-webkit-scrollbar{
    display: none;
}

@media screen and (min-width: 769px) {
    .separateFloor {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 var(--contentPadding);
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    
    .section--detail {
        width: 50%;
        padding: 0;
        margin-left: 0;
    }

    .rightZone {
        min-width: 300px;
        max-width: 400px;
        margin-top: 70px;
    }

    .imgAria {
        width: 100%;
        aspect-ratio: 1 / 1;
        position: relative;
    }

    .popoutImg {
        position: absolute;
        width: 70%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 0.15;
        transition: 1s ease;
        z-index: 0;
    }

    .artists {
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 10px;
        position: relative;
        height: 100%;
        background: none;
        color: var(--primary-black);
        width: 100%;
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 2.2px;
        line-height: 1.2;
        text-align: right;
        top: auto;
        left: auto;
        z-index: 0;
        padding: 0 15% 0 0;
        transform: translateY(0);
        transition: 0.8s;
        mix-blend-mode: none;
        backdrop-filter: none;
        overflow: hidden;
    }

}

@media screen and (min-width: 1440px) {
    .separateFloor {
        padding: 0;
    }
}

/* =================================
otherWork
====================================*/

.allList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.allList__item {
    width: 50%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.allList__item a {
    display: block;
    height: 100%;
}


@media screen and (min-width: 769px) {
    .allList {
        width: 100%;
    }

    .allList__item {
        width: 25%;
        cursor: pointer;
    }

    .allList__item a {
        width: 100%;
        aspect-ratio: 16 / 9;
        display: block;
        position: relative;
        
    }

    .allList__item img {
        position: absolute;
        width: 95%;
        aspect-ratio: 16 / 9;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 1;
        transition: 0.8s ease;
    }

    .allList__item:hover img {
        width: 100%;
        opacity: 0.7;
        transition: 0.8s ease;
    }

}

@media screen and (min-width: 1440px) {
    .section--other {
        padding: 0;
    }
}