/* ============================================================
   COMPONENT · OFFER  (c-offer)
   A gentle, dismissible, bot-voiced suggestion (07.C #5). Replaces every
   "Needs attention" / caution callout with an OFFER, not a grade (B3). The only
   saturated accent allowed is a calm info edge — per A2, a saturated signal means
   "the machine has something to offer," never that the user has fallen short.
   Never amber/red, never blinks; the copy always ends with a no-pressure release.
   ============================================================ */

.c-offer {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  background: color-mix(in srgb, var(--color-info) 5%, var(--color-surface-raised));
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-info);
  border-radius: var(--radius-md);
  box-shadow: var(--seam-embossed);
}

.c-offer__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Warm human content (C1): the agent talking, in sentence case. */
.c-offer__text {
  margin: 0;
  font-size: var(--fs-md);
  line-height: 1.45;
  color: var(--color-text);
}

.c-offer__actions {
  flex-wrap: wrap;
}
