/* Webinar: While You Wait Block */

.webinar-while-you-wait {
  background-color: #fff;
  padding: 3rem 0;
}

.webinar-while-you-wait__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.webinar-while-you-wait__eyebrow {
  display: block;
  font-family: "Source Code Pro", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4C6769;
  margin-bottom: 0.75rem;
}

.webinar-while-you-wait__heading {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #033438;
  margin: 0 0 0.75rem;
}

.webinar-while-you-wait__body {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2A4A4D;
}

.webinar-while-you-wait__body p {
  margin: 0 0 1em;
}

.webinar-while-you-wait__body p:last-child {
  margin-bottom: 0;
}

.webinar-while-you-wait__panel {
  background-color: #F5F7F7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.webinar-while-you-wait__embed {
  width: 100%;
}

.webinar-while-you-wait__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #FF5900;
  color: #fff;
  font-family: "Source Code Pro", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.webinar-while-you-wait__cta:hover {
  background-color: #d94e1b;
}

/* Storylane injects its own CTA into the embedded iframe's parent context in
   some configurations; this targets the common wrapper class so it inherits
   the site's button font instead of Storylane's default (Poppins). Verify
   against the live embed once real demo credentials are in place. */
.webinar-while-you-wait__panel .sl-embed-cta,
.webinar-while-you-wait__panel [class*="storylane"] {
  font-family: "Source Code Pro", monospace !important;
}

/* md: 768px */
@media (min-width: 768px) {
  .webinar-while-you-wait {
    padding: 4rem 0;
  }

  .webinar-while-you-wait__heading {
    font-size: 34px;
  }
}

/* lg: 1024px — content left, embed panel right */
@media (min-width: 1024px) {
  .webinar-while-you-wait__container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .webinar-while-you-wait__content {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .webinar-while-you-wait__panel {
    flex: 1;
  }
}
