/* Block Style: Sticky Column
----------------------------------------
 * Registered as: is-style-columns-sticky
 * Block: core/columns
 * Makes one column sticky on scroll.
 * Apply to the individual column, not the columns wrapper.
 */

.is-style-columns-sticky {
    position: sticky;
    position: -webkit-sticky;
    height: fit-content;
    top: 1rem;
}