/* "We're fully booked until …" notice above the /lets-talk calendar.
   Injected at runtime by components/LetsTalkWaitNotice.tsx; absent from the DOM unless the
   reps are genuinely booked out. Styled to sit in the dark lets-talk column without
   inheriting the Webflow heading classes around it.

   Layout: the message and its button sit on one row on desktop, so the notice reads as a
   single line of information rather than a stacked alert box, and the calendar below it
   stays close to the fold. It stacks below 680px. */

.lt-notice {
  max-width: 620px;
  margin: 0 auto 20px;
  padding: 18px 20px;
  border: 1px solid rgba(30, 171, 199, 0.38);
  border-radius: 12px;
  background: rgba(30, 171, 199, 0.07);
  text-align: left;
}

/* Message left, CTA right — vertically centred, and the CTA never wraps or shrinks. */
.lt-notice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lt-notice-copy { min-width: 0; }

.lt-notice-h {
  margin: 0 0 4px;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.lt-notice-p {
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.74);
}

.lt-notice-cta {
  flex: 0 0 auto;
  display: inline-block;
  padding: 11px 20px;
  border-radius: 6px;
  background: #1eabc7;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease;
}

.lt-notice-cta:hover { background: #199ab3; }

/* Hairline separates the alternative from the offer, so "or book below" reads as a footnote
   to the notice rather than a competing third message. */
.lt-notice-alt {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Lato, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 680px) {
  /* Full-bleed at this width would clip the rounded corners against the viewport edge. */
  .lt-notice { margin: 0 14px 18px; padding: 16px; }
  .lt-notice-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .lt-notice-h { font-size: 16px; }
  .lt-notice-p { font-size: 14px; }
  .lt-notice-cta { text-align: center; }
}
