.press-block {
    position: fixed;
    top: 7rem;
    right: 0;
    bottom: 6rem;
    left: 0;
    background-color: rgba(223, 255, 75, .75);
    backdrop-filter: blur(4px);
    z-index: 10;
}
@media only screen and (min-width: 1024px) {
    .press-block {
        top: 0;
    }
}

.press_b-article {
    min-width: 100vw;
    max-width: 100vw;
    height: calc(100% - 2rem);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
}
@media only screen and (min-width: 1024px) {
    .press_b-article {
        padding: 1rem 6rem 0 calc(26vw + 6rem);
        height: calc(100% - 4rem);
    }
}

.press_b-article img {
    min-width: 100%;
    max-width: 100%;
    height: fit-content;
    object-fit: contain;
    margin: auto 0;
    scroll-snap-align: center;
}
@media only screen and (min-width: 1024px) {
    .press_b-article img {
        min-width: 50%;
        max-width: 50%;
        height: auto;
        max-height: 100%;
        scroll-snap-align: unset;
    }
}

.press_b-article img:nth-child(odd) {
    margin-right: 2rem;
}
@media only screen and (min-width: 1024px) {
    .press_b-article img:nth-child(odd) {
        margin-right: calc(26vw + 6rem);
        scroll-snap-align: center;
        scroll-margin-left: 56vw;
    }
}

@media only screen and (min-width: 1024px) {
    .press_b-article img:first-of-type {
        margin-left: 100%;
    }
}

.press_b-article img:last-of-type {
    margin-right: 0;
}


/* NAV */
.press_b-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem 0;
    background-color: var(--c-green);
}

@media only screen and (min-width: 1024px) {
    .press_b-nav {
        padding: 1rem 6rem 0 calc(26vw + 6rem);
        bottom: 1rem;
    }
}