/* Unified listing shell — filter LEFT 280px, results RIGHT (bus, hotel, cab, holiday) */
.lk-listing{
  max-width:1280px;
  margin:18px auto 72px;
  padding:0 16px;
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:20px;
  align-items:start;
  box-sizing:border-box;
}
.lk-listing > .lkpf{
  grid-column:1;
  grid-row:1;
  position:sticky;
  top:148px;
  width:280px;
  max-width:280px;
  border-radius:14px;
  border:1px solid #e2e8f0;
  border-right:1px solid #e2e8f0;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  max-height:calc(100vh - 156px);
  overflow:auto;
}
.lk-listing__main{
  grid-column:2;
  grid-row:1;
  min-width:0;
  width:100%;
}
.bus-babal-page .lk-listing .v2listHead,
.bus-babal-page .lk-listing__main .v2listHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}
/* Hotel grid inside unified shell */
.lk-listing .a19-main{
  min-width:0;
}
.lk-listing + .a19-content,
.a19-content.lk-listing{
  max-width:1280px;
  grid-template-columns:280px minmax(0,1fr);
}
@media(max-width:900px){
  .lk-listing{
    display:block;
    padding:0 12px 12px;
    margin:12px auto 60px;
  }
  .lk-listing > .lkpf{
    display:none;
    position:fixed;
    width:min(92vw,360px);
    max-width:none;
    top:0;
    right:0;
    bottom:0;
    left:auto;
    z-index:1200;
    max-height:none;
    border-radius:0;
  }
  body.fmab-filters-open .lk-listing > .lkpf{
    display:block;
  }
  .lk-listing__main{
    width:100%;
  }
}
