/* ===== Mumken Arabi — shared CARD MOTION (same settle as the Daily Mix feed) ===== */
@keyframes miSettle{
  from{ opacity:0; transform:translateY(22px) scale(.985); }
  to{ opacity:1; transform:none; }
}
/* Cards are ALWAYS visible by default — this class only ADDS a one-time settle,
   so it can never hide or collapse anything (fail-safe). */
.mi-settle{ animation:miSettle .42s cubic-bezier(.34,1.28,.5,1); }

@media (prefers-reduced-motion: reduce){
  .mi-settle{ animation:none !important; }
}

/* ===== Icon-rail sidebar (desktop): when the sidebar is collapsed, the page content
   fills the reclaimed space. Sibling rules so every page behaves the same. ===== */
@media (min-width: 769px){
  .sidebar.collapsed ~ .main{ margin-left: 68px !important; }
  .sidebar.collapsed ~ .top-bar{ left: 50px !important; }
}
