.sub0301-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3%;
    width: 100%;
    position: relative;
    margin-top: -30%;
    left: 0;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 5%;
    background-color: #fbf5f1;
}

.sub0301-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.sub0301-images>div {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.sub0301-single {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3%;
}

/* 0201과 동일한 AOS overlapping 구조 */
.img-overlap-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 60vw;
    max-width: 80%;
    height: auto;
    gap: 2vw;
    pointer-events: none;
}

.img-overlap {
    position: static;
    width: 33.3333%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .img-overlap-wrap {
        width: 90vw;
        max-width: 98vw;
        gap: 3vw;
    }
}

.sub0301-single img {
    max-width: 100%;
    height: auto;
}

.sub0301-row::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60px;
    background: url('/assets/images/sub0301/pc/saeron_full_sign.png') repeat-x bottom left;
    z-index: 1;
    animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
    0% {
        background-position: 0 bottom;
    }

    100% {
        background-position: -100% bottom;
    }
}
