/* Post Sidebar Sticky - Sidebar sticky positioning behavior */

/* Türkçe: Sağ sidebar, header yüksekliği kadar üstten boşlukla yapışık dursun */
.post-main > aside {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: calc(var(--sticky-header-h, 0px) + 16px) !important;
  align-self: start !important;
  height: fit-content !important;
  z-index: 1;
}

/* Mobilde sticky kapansın */
@media (max-width: 880px) {
  .post-main > aside {
    position: static;
    top: auto;
  }
}
