/* =========================================================
   MPR RESPONSIVE BANNER
   New banner system for McGregor Palms Realty
   Does not affect the older mpr-banner-lt banners
   ========================================================= */

@font-face {
  font-family: "Script MT Bold";
  src: url("/sites/default/files/scriptbl.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}


/* Main banner container */
.mpr-banner {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(280px, 38%);
  min-height: 185px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #08659b;
  color: #ffffff;
}


/* Text area */
.mpr-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 22px;
  text-align: center;
}


/* Company name */
.mpr-banner__company {
  margin-bottom: 6px;
  font-family: "Script MT Bold", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}


/* Main banner tagline */
.mpr-banner__tagline {
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.3;
  text-transform: uppercase;
}


/* Supporting description */
.mpr-banner__description {
  font-size: 1.5rem;
  line-height: 1.5;
}


/* Image area shared by all banner variations */
.mpr-banner__image {
  position: relative;
  min-height: 185px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Pool-home banner image */
.mpr-banner--pool-homes .mpr-banner__image {
  background-image: url("/sites/default/files/banner_images/cape_coral_houses_on_canal67212024.webp");
}


/* Sanibel Island banner image */
.mpr-banner--sanibel-island .mpr-banner__image {
  background-image: url("/sites/default/files/banner_images/sanibel-island-banner-20260730.webp");
  background-position: 65% center;
}

/* Teams page banner image */
.mpr-banner--team-page .mpr-banner__image {
  background-image: url("/sites/default/files/banner_images/mpr-team-page-banner-20260812.webp");
  background-position: 35% center;
}


/* Fade the right edge of the image into the blue text panel */
.mpr-banner__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    #08659b
  );
  pointer-events: none;
}


/* =========================================================
   MOBILE BANNER
   Image stacks above the text instead of disappearing
   ========================================================= */

@media (max-width: 767px) {

  /* Change from two columns to one stacked layout */
  .mpr-banner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 24px 0;
  }


  /* Keep a shorter, full-width image on mobile */
  .mpr-banner__image {
    order: 1;
    width: 100%;
    min-height: 150px;
  }


  /* Place the banner wording below the image */
  .mpr-banner__content {
    order: 2;
    padding: 22px 10px 24px;
  }


  /* Reduce company-name size on mobile */
  .mpr-banner__company {
    font-size: 2.2rem;
  }


  /* Reduce tagline size on mobile */
  .mpr-banner__tagline {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }


  /* Reduce description size on mobile */
  .mpr-banner__description {
    font-size: 1.5rem;
    line-height: 1.45;
  }


  /* Fade the bottom of the image into the blue text panel */
  .mpr-banner__image::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(
      to bottom,
      transparent,
      #08659b
    );
  }
}