.marketing-promo-banner {
  background: linear-gradient(90deg, #0b2b50, #0d8b8e);
  color: #fff;
  position: relative;
  z-index: 20;
}

.marketing-promo-banner-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  min-height: 52px;
  padding-left: 58px;
  padding-bottom: 10px;
  padding-right: 58px;
  padding-top: 10px;
  position: relative;
  width: 100%;
}

.marketing-promo-banner p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.marketing-promo-banner a {
  background: #fff;
  border-radius: 999px;
  color: #0b2b50;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  padding: 9px 16px;
  text-decoration: none;
}

.marketing-promo-banner a::after {
  content: "→";
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  margin-left: 9px;
  transition: transform 160ms ease;
}

.marketing-promo-banner a:hover::after {
  transform: translateX(3px);
}

.marketing-promo-banner button {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 34px;
  font: inherit;
  font-size: 23px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
}

@media (max-width: 720px) {
  .marketing-promo-banner-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    padding-left: 14px;
    padding-right: 58px;
  }

  .marketing-promo-banner p {
    flex: 1 1 100%;
    font-size: 14px;
  }

  .marketing-promo-banner button {
    right: 14px;
    top: 12px;
    transform: none;
  }
}
