/* Mini Cards Strip Positioning Fix */
.mini-cards-strip {
    background: var(--bgLight);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 1040;
}

body {
    padding-top: 60px !important; 
}

@media (max-width: 767px) {
    .mini-cards-strip {
        top: 60px;
    }
    body {
        padding-top: 60px !important; 
    }
}