.content-wrapper {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
}

.filter-sidebar {
  width: 30%;
  flex-shrink: 0;
}

.courses-section {
  width: 70%;
  flex-grow: 1;
}

/* Filter Sidebar Sticky (optional) */
@media (min-width: 992px) {
  #filterSidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
  }
}

@media (max-width: 991.98px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .filter-sidebar,
  .courses-section {
    width: 100%;
  }
  
  .instructor-box {
    padding: 6px 12px !important;
    font-size: 0.9rem !important;
    bottom: -16px !important;
  }
  
  .pt-6 {
    padding-top: 2rem !important;
  }
}
