/* =========================================================
   DRUPAL IDX LISTINGS CAROUSEL
   Shared styling for all IDX Listings Carousel widgets
   ========================================================= */


/* Outer Drupal wrapper around the carousel */
.drupal-idx-carousel {
  width: 100%;
  margin: 10px 0;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f5f5f5;
}


/* Drupal-controlled carousel heading */
.drupal-idx-carousel > h2 {
  margin: 0 0 20px;
  padding: 0;
  font-size: 20px;
  line-height: 1.3;
}


/* Container holding the IDX Broker script output */
.drupal-idx-carousel__content {
  width: 100%;
  box-sizing: border-box;
}


/* =========================================================
   MOBILE ADJUSTMENTS
   Applies on screens 767px wide or smaller
   ========================================================= */

@media (max-width: 767px) {

  /* Reduce outer spacing on mobile */
  .drupal-idx-carousel {
    margin: 8px 0;
    padding: 8px;
  }

  /* Reduce heading size and spacing on mobile */
  .drupal-idx-carousel > h2 {
    margin-bottom: 16px;
    font-size: 18px;
  }
}

/* END Mobile Adjustments */

