.brizein-campaign-carousel {
  background: #06183f;
}

.brizein-campaign-slider {
  aspect-ratio: 16 / 5;
  height: auto !important;
  min-height: 180px;
  background: #06183f;
}

.brizein-campaign-slider picture,
.brizein-campaign-slider img {
  display: block;
  width: 100%;
  height: 100%;
}

.brizein-campaign-slider img {
  object-fit: cover;
}

.brizein-campaign-carousel > button {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(5px);
}

@media (max-width: 767px) {
  .brizein-campaign-slider {
    aspect-ratio: 1014 / 535;
    min-height: 0;
  }

  .brizein-campaign-carousel > button {
    display: none;
  }
}

.brizein-promo-section {
  width: min(1200px, calc(100% - 40px));
  margin: 8px auto 54px;
}

.brizein-promo-heading {
  margin: 0 0 6px;
  color: #42424a;
  font-family: Poppins, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.brizein-promo-subtitle {
  margin: 0 0 20px;
  color: #757682;
  font-size: 15px;
}

.brizein-promo-top,
.brizein-promo-bottom {
  display: grid;
  gap: 16px;
}

.brizein-promo-top {
  grid-template-columns: 1.55fr 0.75fr 0.75fr;
  grid-template-rows: 220px 220px;
}

.brizein-promo-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 190px;
  margin-top: 16px;
}

.brizein-promo-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #06183f;
  box-shadow: 0 8px 24px rgba(21, 21, 23, 0.08);
  isolation: isolate;
}

.brizein-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.brizein-promo-card:hover img {
  transform: scale(1.035);
}

.brizein-promo-card:focus-visible {
  outline: 3px solid #6680ff;
  outline-offset: 3px;
}

.promo-grill {
  grid-column: 1;
  grid-row: 1 / 3;
}

.promo-backpacks {
  grid-column: 2 / 4;
  grid-row: 2;
}

.promo-backpacks img {
  object-position: center 64%;
}

.promo-umbrellas img,
.promo-executive img {
  object-position: center 66%;
}

.promo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 12, 35, 0.68) 0%, rgba(3, 12, 35, 0.12) 45%, rgba(3, 12, 35, 0.22) 100%);
}

.promo-backpacks .promo-shade {
  background: linear-gradient(90deg, rgba(3, 12, 35, 0.86) 0%, rgba(3, 12, 35, 0.54) 38%, rgba(3, 12, 35, 0) 72%);
}

.promo-copy {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.promo-copy-left {
  top: 50%;
  right: auto;
  width: 43%;
  transform: translateY(-50%);
  text-align: left;
}

.promo-copy h3 {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.13;
}

.promo-grill .promo-copy h3 {
  font-size: 30px;
}

.promo-copy p {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(3, 12, 35, 0.78);
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-news {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(102, 128, 255, 0.28), transparent 35%),
    linear-gradient(135deg, #06183f 0%, #173c9b 60%, #3d52cc 100%);
}

.promo-news::before,
.promo-news::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.promo-news::before {
  top: -86px;
  left: -50px;
}

.promo-news::after {
  right: -58px;
  bottom: -100px;
}

.promo-news .promo-copy {
  position: relative;
  inset: auto;
}

.promo-news .promo-copy h3 {
  font-size: 25px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .brizein-promo-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 300px 220px 230px;
  }

  .promo-grill {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .promo-backpacks {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .brizein-promo-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 205px;
  }

  .promo-news {
    grid-column: 1 / 3;
  }
}

@media (max-width: 600px) {
  .brizein-promo-section {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-top: 4px;
    margin-bottom: 38px;
  }

  .brizein-promo-heading {
    font-size: 22px;
    line-height: 1.2;
  }

  .brizein-promo-top,
  .brizein-promo-bottom {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
  }

  .promo-grill,
  .promo-backpacks,
  .promo-news {
    grid-column: 1;
    grid-row: auto;
  }

  .brizein-promo-card,
  .promo-backpacks {
    width: 100%;
    max-width: 100%;
    height: 220px;
    flex: 0 0 auto;
  }

  .promo-grill {
    height: 280px;
  }

  .promo-news {
    min-height: 190px;
  }

  .promo-copy h3,
  .promo-grill .promo-copy h3 {
    font-size: 22px;
  }

  .promo-copy-left {
    width: 54%;
  }
}
