.lazur-promo-embed,
.lazur-promo-embed * {
  box-sizing: border-box;
}

.lazur-promo-embed {
  --lp-violet: #7051ad;
  --lp-violet-deep: #563d86;
  --lp-red: #c93446;
  --lp-lilac: #f2eef8;
  --lp-ink: #312c35;
  --lp-muted: #716a77;
  --lp-line: #ded8e5;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-left: 6px solid var(--lp-violet);
  border-radius: 4px;
  color: var(--lp-ink);
  container-type: inline-size;
  font-family: "Open Sans", Arial, sans-serif;
  letter-spacing: 0;
  margin: 56px auto;
  max-width: 1160px;
  overflow: hidden;
  width: 100%;
}

.lp-intro {
  background: var(--lp-lilac);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(480px, 1.1fr);
}

.lp-media {
  align-self: center;
  margin: 0;
  padding: 22px 0 22px 22px;
}

.lp-media img {
  display: block;
  height: auto;
  width: 100%;
}

.lp-copy {
  align-self: center;
  padding: 34px 40px 36px;
}

.lp-eyebrow {
  color: var(--lp-ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0 0 9px;
}

.lp-eyebrow span {
  color: var(--lp-red);
}

.lp-copy h2 {
  color: var(--lp-ink);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
  margin: 0;
  max-width: 620px;
}

.lp-subtitle {
  color: var(--lp-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 10px 0 0;
  max-width: 610px;
}

.lp-copy h2 strong {
  font-weight: 700;
}

.lp-campaign {
  color: var(--lp-violet);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
}

.lp-campaign sup {
  font-size: 9px;
}

.lp-lead {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 610px;
}

.lp-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.lp-book {
  margin: 0 !important;
}

.lp-book a {
  align-items: center;
  background: var(--lp-violet) !important;
  border: 0 !important;
  border-radius: 4px !important;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px !important;
  text-decoration: none !important;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lp-book a:hover {
  background: var(--lp-violet-deep) !important;
  transform: translateY(-1px);
}

.lp-details {
  color: var(--lp-violet-deep) !important;
  font-size: 14px;
  font-weight: 700;
  padding-right: 20px;
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.lp-details::after {
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  height: 7px;
  position: absolute;
  right: 3px;
  top: 7px;
  transform: rotate(45deg);
  width: 7px;
}

.lp-offers {
  border-top: 1px solid var(--lp-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-offer {
  border-bottom: 1px solid var(--lp-line);
  border-right: 1px solid var(--lp-line);
  display: flex;
  flex-direction: column;
  min-height: 145px;
  padding: 20px 18px 18px;
}

.lp-offer:nth-child(3n) {
  border-right: 0;
}

.lp-offer:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.lp-offer > span {
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 34px;
}

.lp-offer strong {
  color: var(--lp-violet-deep);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.15;
  margin-top: 12px;
  white-space: nowrap;
}

.lp-offer strong small {
  font-size: 12px;
}

.lp-offer em {
  color: var(--lp-muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
  margin-top: 5px;
}

.lp-footnote {
  border-top: 1px solid var(--lp-line);
  color: var(--lp-muted);
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
  padding: 11px 18px 12px;
}

.lp-footnote span {
  margin-right: 10px;
}

@container (max-width: 860px) {
  .lp-intro {
    grid-template-columns: 1fr;
  }

  .lp-media {
    padding: 0;
  }

  .lp-copy {
    padding: 28px 26px 30px;
  }

  .lp-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-offer {
    border-right: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-offer:nth-child(3n) {
    border-right: 1px solid var(--lp-line);
  }

  .lp-offer:nth-child(2n) {
    border-right: 0;
  }

  .lp-offer:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@container (max-width: 520px) {
  .lp-copy {
    padding: 24px 18px 27px;
  }

  .lp-copy h2 {
    font-size: 27px;
  }

  .lp-eyebrow {
    font-size: 16px;
  }

  .lp-subtitle {
    font-size: 16px;
  }

  .lp-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .lp-book,
  .lp-book a {
    width: 100%;
  }

  .lp-details {
    align-self: flex-start;
  }

  .lp-offers {
    display: block;
  }

  .lp-offer,
  .lp-offer:nth-child(2n),
  .lp-offer:nth-child(3n),
  .lp-offer:nth-last-child(-n + 2),
  .lp-offer:last-child {
    border-bottom: 1px solid var(--lp-line);
    border-right: 0;
    display: grid;
    gap: 4px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    padding: 16px 18px;
  }

  .lp-offer:last-child {
    border-bottom: 0;
  }

  .lp-offer > span {
    align-self: end;
    min-height: 0;
  }

  .lp-offer strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .lp-offer em {
    grid-column: 1;
    margin: 0;
  }

  .lp-footnote span {
    display: block;
    margin: 0 0 3px;
  }
}

@media (max-width: 640px) {
  .lazur-promo-embed {
    margin-bottom: 34px;
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-book a {
    transition: none;
  }
}
