/* HowGiftsWorkModal — full-screen gift-system explainer. Mirrors
   HowTraitsWork.css: the modal frame is the standard .modal-fullscreen
   container (see modals.css); these rules style the inner content only, a
   vertical stack of explanatory paragraphs, each of which may carry inline
   gift icons for reinforcement. */

.how-gifts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.how-gifts-p {
  margin: 0;
  font-size: 1rem;      /* comprehension prose: keep at the readable floor */
  line-height: 1.6;
  color: var(--font-color-1);
}

/* Inline gift icons sit in the flow of a sentence, just before the gift's
   name. Size to the cap height and nudge onto the baseline so they read as
   part of the line rather than opening it up. */
.how-gifts-p .gift-chip-icon {
  height: 1.2rem;
  width: 1.2rem;
  vertical-align: -0.22rem;
  margin-right: 0.15rem;
  object-fit: contain;
}
