.visual-sec {
    width: 100%;
    height: 100dvh;
}
.visual-sec .img-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* background-color: tomato; */
}
.visual-sec .img-rela {
    position: relative;
}
.visual-sec .img {
    position: absolute;
    top: 13%;
    left: 50%;
    max-width: 50%;
    transform: translateX(9%);
}
.visual-sec .img-rela,
.visual-sec .img-box .main {
    width: 50%;
}

@media (max-width: 1024px) {
    .visual-sec {
        height: auto;
    }
    .visual-sec .img-box {
        display: block;
        /* background-color: tan; */
    }
    .visual-sec .img-rela,
    .visual-sec .img-box .main {
        width: 100%;
    }
    .visual-sec .img-box .main:last-child {
        margin-top: -50%;
    }
    .visual-sec .img {
        top: 2%;
        width: 45%;
        min-width: 195px;
        transform: translateX(-13%);
    }
}

.artworks-sec .inner {
    position: relative;
}
.artworks-sec h2 {
    margin-bottom: 60px;
}
.artworks-sec img {
    aspect-ratio: 1;
}

.more.btn {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1024px) {
    .artworks-sec h2 {
        margin-bottom: 30px;
    }
    .artworks-sec img {
        min-height: 390px;
    }
    .more.btn {
        position: static;
        margin-top: 30px;
    }
}