/* 
TEXT
*/
.blocks-block.--text > * {grid-column: 1/-1;}
@media only screen and (min-width: 1096px) {
    .blocks-block.--text {margin: 1rem 0;}

    .blocks-block.--text > h3 {grid-column: 1/7;}
    .blocks-block.--text > p {
        grid-column: 7/-1;
        margin-top: 0;
    }
}


/* 
FILES
*/
/* SLIDESHOW */
.blocks_b-slideshow--container {
    min-width: 100vw;
    max-width: 100vw;
    z-index: 5;
}

.blocks_b-slideshow--buttons {z-index: 10;}
.blocks_b-slideshow--buttons button {top: 0; bottom: 0;}
.blocks_b-slideshow--buttons button:nth-of-type(1) {left: 0; right: 50vw;}
.blocks_b-slideshow--buttons button:nth-of-type(2) {right: 0; left: 50vw;}

.blocks_b-slideshow--buttons img {
    width: fit-content;
    height: 1.75rem;
}
.blocks_b-slideshow--buttons button:nth-of-type(1) img {margin: 0 auto 0 1rem;}
.blocks_b-slideshow--buttons button:nth-of-type(2) img {margin: 0 1rem 0 auto;}

@media only screen and (min-width: 1096px) {
    .blocks-block.--files-slideshow {aspect-ratio: 16/9;}
}

/* GRID */
.blocks-block.--files-grid {border-bottom: 1px solid white;}
.blocks-block.--files-grid > * {
    grid-column: 1/-1;
    border-top: 1px solid white;
}
@media only screen and (min-width: 1096px) {
    .blocks-block.--files-grid > * {grid-column: span 6;}
    .blocks-block.--files-grid > *:nth-of-type(odd) {border-right: 1px solid white;}
}


/*
VIDEO
*/
.blocks-block.--video iframe {
    width: 100%;
    aspect-ratio: 16/9;
}