/* ==========================================================
   NEF Override Cards Fix v3
   Requirement:
   - Desktop: Cartelera (#best) must match Próximos estrenos (#hot),
     showing 4 columns in 1 row (4 posters visible).
   Notes:
   - Pure CSS. Does NOT change Owl behavior or HTML.
   - Applies ONLY to #best (Cartelera) and ONLY on desktop widths.
   ========================================================== */

@media (min-width: 992px) {

  /* Predictable row layout for Cartelera */
  #best .prs_upcom_slider_slides_wrapper .item .row{
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
  }

  /* Hide extra injected block (if present) so only 4 remain */
  #best .prs_upcom_slider_slides_wrapper .item .row .cc_featured_second_section{
    display: none !important;
  }

  /* Hide any direct card columns after the 4th */
  #best .prs_upcom_slider_slides_wrapper .item .row > div[class*="col-"]:nth-of-type(n+5){
    display: none !important;
  }

  /* Force 4-up layout */
  #best .prs_upcom_slider_slides_wrapper .item .row > div[class*="col-"]{
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}
