/* Shared top promotions — intentionally independent of the archived WP theme. */
#banner-row {
  display: none !important;
}

.mm-promos {
  box-sizing: border-box;
  margin: 0 auto 34px;
  max-width: 1240px;
  padding: 0 28px;
  width: 100%;
}

.mm-promos__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* The desktop header is fixed at 112px, while the archived theme only
   reserves 80px above #main. Keep the cards below the header. */
@media (min-width: 992px) {
  .mm-promos {
    margin-top: 32px;
  }
}

.mm-promo {
  align-items: stretch;
  background: #0b334c;
  border: 1px solid rgba(9, 51, 76, 0.14);
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(9, 51, 76, 0.13);
  box-sizing: border-box;
  display: flex;
  height: 112px;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.mm-promo:hover,
.mm-promo:focus-visible {
  box-shadow: 0 12px 28px rgba(9, 51, 76, 0.24);
  outline: none;
  transform: translateY(-3px);
}

.mm-promo--image {
  background: #fff;
}

.mm-promo--image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.mm-promo--switzer {
  background: linear-gradient(118deg, #092f49 0%, #0d3e5d 66%, #12688b 100%);
  color: #fff !important;
}

.mm-promo--switzer::after {
  background: rgba(63, 184, 217, 0.3);
  content: "";
  height: 170px;
  position: absolute;
  right: -74px;
  top: -58px;
  transform: rotate(24deg);
  width: 116px;
}

.mm-promo__visual {
  background-image: linear-gradient(90deg, rgba(9, 47, 73, 0) 60%, #0d3e5d 100%), url('/wp-content/uploads/2026/09/switzer-show-banner.jpg');
  background-position: 68% center;
  background-size: cover;
  flex: 0 0 46%;
  position: relative;
}

.mm-promo__play {
  align-items: center;
  background: #e52222;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.32);
  display: flex;
  height: 35px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
}

.mm-promo__play::before {
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  content: "";
  margin-left: 3px;
}

.mm-promo__copy {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 12px 24px 12px 18px;
  position: relative;
  z-index: 1;
}

.mm-promo__eyebrow {
  color: #7bd3e9;
  font-family: "Fira Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.mm-promo__title {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.mm-promo__cta {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Fira Sans", sans-serif;
  font-size: 10px;
  line-height: 1;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .mm-promos {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    padding: 0 20px;
    width: 100vw;
  }

  .mm-promos__grid {
    gap: 14px;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
  }

  .mm-promo {
    height: 124px;
  }

  .mm-promo__title {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .mm-promos {
    margin-bottom: 28px;
    padding: 0 18px;
  }

  .mm-promos__grid {
    gap: 18px;
  }

  .mm-promo {
    height: 104px;
  }

  .mm-promo__visual {
    flex-basis: 47%;
  }

  .mm-promo__copy {
    padding: 10px 18px 10px 14px;
  }

  .mm-promo__eyebrow {
    font-size: 8px;
    margin-bottom: 5px;
  }

  .mm-promo__title {
    font-size: 18px;
  }

  .mm-promo__cta {
    font-size: 9px;
    margin-top: 6px;
  }
}
