/* ==========================================================================
   Divine Brass — shared UI utilities
   (liquid-glass overrides were removed; the template's own capsule/blur navbar
   is used as-is. This file now hosts small reusable helpers.)
   ========================================================================== */

/* ---- Sticky-scroll section --------------------------------------------------
   Pin one column (image / intro / text) while the taller column (cards / list)
   scrolls past it; the pinned column releases at the end of the row.
   Usage: add .sticky-scroll-row to the two-column .row and .sticky-scroll-col
   to the column that should stay pinned. Desktop only (columns stack on mobile).
   --------------------------------------------------------------------------- */
@media (min-width: 992px) {
    .sticky-scroll-row { align-items: flex-start !important; }
    .sticky-scroll-col {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;                 /* clears the fixed navbar */
        align-self: flex-start;
    }
}
