
/* VegasRoomDeals SECTION 3 V2
   Removes the redundant right-side promo card and expands Featured Hotel Deals. */

.content-grid.wrap{
  display:grid !important;
  grid-template-columns:minmax(340px,.82fr) minmax(0,1.65fr) !important;
  gap:16px !important;
  align-items:stretch !important;
}

.content-grid.wrap > .cost,
.content-grid.wrap > .featured{
  min-width:0 !important;
}

.content-grid.wrap > .featured{
  width:100% !important;
}

.featured .deal-cards{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:12px !important;
}

.featured .deal-cards article{
  min-width:0 !important;
}

@media (max-width:1050px){
  .content-grid.wrap{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:720px){
  .featured .deal-cards{
    grid-template-columns:1fr !important;
  }
}
