.press-block {
    position: relative;
    margin-bottom: 2rem;
    max-width: 500px;
}

.press_b-header h4 {padding-right: 1rem;}
.press_b-header span {white-space: nowrap;}

.press_b-info p {grid-column: 1/2;}
.press_b-info ul {grid-column: 2/-1;}
@media only screen and (min-width: 768px) {
    .press_b-info * {grid-column: span 2 !important;}
}


/* 
GALLERY
*/
.press_b-gallery {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    min-height: calc(var(--vh) * 100);
    height: calc(var(--vh) * 100);
    max-height: calc(var(--vh) * 100);
    z-index: 200;
}

/* BUTTON */
.press_b-gallery-button {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 20;
}

/* SLIDESHOW */
.press_b-gallery-slideshow {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 1rem;
    left: 0;
    width: 100%;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    overflow: hidden;
    scroll-behavior: auto !important;
}

.press_b-gallery-slideshow figure {
    min-width: 100vw;
    max-width: 100vw;
    height: 100%;
    scroll-snap-align: center;
}
@media only screen and (min-width: 1024px) {
    .press_b-gallery-slideshow figure {padding: 2rem 1rem;}
}

.press_b-gallery-slideshow img,
.press_b-gallery-slideshow video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.press_b-gallery-figure figcaption span:first-of-type {grid-column: 1/2;}
.press_b-gallery-figure figcaption span:not(:first-of-type) {grid-column: 2/-1;}

/* NAV */
.press_b-gallery-nav {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
}

.press_b-gallery-nav_container div{grid-column: 2/-1;}
.press_b-gallery-nav_container div > * {display: inline;}

@media (hover: hover) {
    .press_b-info ul li.margin-t {transition: 500ms ease;}

    .press_b-info ul:hover li.margin-t {
        opacity: .25;
        filter: blur(1px);
    }

    .press_b-info ul li.margin-t:hover {
        opacity: 1;
        filter: blur(0);
        margin-left: .5rem;
    }
}