/* Sticky Column Styles */
.frontblocks-sticky-wrapper {
    position: relative;
}

.frontblocks-sticky-wrapper .gb-grid-column {
    transition: position 0.3s ease;
}

/* Apply sticky positioning to the column wrapper, not the container */
.frontblocks-sticky-wrapper .gb-grid-column.sticky-active .gb-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background: inherit;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .frontblocks-sticky-wrapper .gb-grid-column.sticky-active .gb-container {
        position: relative;
        top: auto !important;
        z-index: auto;
        box-shadow: none;
    }
} 