/* Guides (follow-up-a-quote.html): legal.css's layout, plus the messages, texts and sign-up box. */

/* A reminder as the customer reads it, with its day and tone above. */
.msg { margin: 18px 0 10px; padding: 18px 20px; border-radius: 16px; background: var(--white); box-shadow: 8px 8px 0 var(--orange); }
.msg figcaption { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin-bottom: 10px; font-size: 14px; font-weight: 600; color: var(--mute); }
.msg figcaption b { font: 800 22px/1 var(--display); color: var(--orange-deep); }
.msg blockquote { margin: 0; }
.msg blockquote p { margin: 0 0 8px; }
.msg blockquote p:last-child { margin-bottom: 0; }
.msg-link { display: inline-block; padding: 8px 16px; border-radius: 999px; background: #494FDF; color: #fff; font-weight: 600; font-size: 14px; }
.why { margin: 0 0 26px; font-size: 16px; color: var(--mute); }
.why b { color: var(--brown); }

/* The same three by text: bubbles, each with its day. */
.bubbles { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.bubbles li { max-width: 34em; padding: 12px 16px; border-radius: 18px 18px 18px 4px; background: var(--white); border: 1px solid var(--rule); }
.bubbles b { display: block; margin-bottom: 2px; font: 800 14px/1.3 var(--display); color: var(--orange-deep); }

/* Sign up, at the end. */
.cta { margin-top: 18px; padding: 26px 28px; border-radius: 18px; background: var(--orange); }
.cta-title { margin: 0; font: 800 clamp(28px, 4vw, 38px)/1.05 var(--display); }
.cta p { margin: 10px 0 0; font-weight: 500; }
.ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 12px; font: 700 17px/1 var(--body); text-decoration: none; }
.btn-dark { background: var(--brown); color: var(--cream); }
.btn-dark:hover { background: var(--brown-2); }
.btn-line { border: 2px solid var(--brown); color: var(--brown); }
.btn-line:hover { background: rgb(42 18 6 / 0.08); }

@media (max-width: 640px) {
  .msg { padding: 16px; box-shadow: 6px 6px 0 var(--orange); }
  .cta { padding: 22px 20px; }
}
