/* 
TEXT
*/
.feed-block.--b_text {padding: 2rem 1rem;}
.feed-block.--b_text > * {margin: 0 auto;}




/* 
TESTIMONY
*/
.feed-block.--b_testimony {
    padding: 6rem 1rem;
}

.feed-block.--b_testimony .--b_testimony--logo {
    width: auto;
    height: 1.5rem;
    margin-top: 1.25rem;
}

@media only screen and (min-width: 768px) {
    .feed-block.--b_testimony {padding: 6rem 15vw;}
}




/* 
FILES
*/
.feed-block.--b_files {margin-bottom: 2rem;}

.feed-block.--b_files .b_files--slideshow {
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    column-gap: .5rem;
    padding: 1rem 0;
}

.feed-block.--b_files .b_files--slideshow .--media {
    min-width: calc(100vw - 4rem);
    width: calc(100vw - 4rem);
    max-width: calc(100vw - 4rem);
    height: auto;
    max-height: 80vh;
    scroll-snap-align: center;
}

.feed-block.--b_files .b_files--slideshow-controls .--arrow img {
    width: auto;
    height: 1rem;
}

.feed-block.--b_files .b_files--slideshow-controls nav {column-gap: .5rem;}
.feed-block.--b_files .b_files--slideshow-controls .--bullet {
    width: .5rem;
    height: .5rem;
    border-radius: 1rem;
    background: white;
    opacity: .25;
    transition: 250ms ease-in-out;
}
.feed-block.--b_files .b_files--slideshow-controls .--bullet.--active {opacity: 1 !important;}


.feed-block.--b_files .b_files--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: .5rem;
    row-gap: .5rem;
}

.feed-block.--b_files .b_files--grid figure {grid-column: 1/-1;}

@media only screen and (min-width: 768px) {
    .feed-block.--b_files .b_files--slideshow .--media {
        min-width: 60vw;
        max-width: 60vw;
    }

    .feed-block.--b_files .b_files--grid figure {grid-column: span 2;}
}

@media only screen and (min-width: 1024px) {
    .feed-block.--b_files .b_files--slideshow .--media {
        min-width: unset;
        width: auto;
        max-width: calc(100vw - 4rem);
        min-height: 80vh;
        height: 80vh;
    }
}