/* "a note from the team" (Figma: home / Background+Border+Shadow, 1100 x 257). */

.fl-note {
  box-sizing: border-box;
  width: 100%;
  padding: 0 40px;
  font-family: var(--fl-font-sans);
}

.fl-note__card {
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-sizing: border-box;
  width: 100%;
  padding: 34px;
  border: 2px solid var(--fl-ink);
  border-radius: 6px;
  background: #fbfcfd;
  box-shadow: var(--fl-shadow-lg);
}

.fl-note__label {
  margin: 0;
  color: var(--fl-green-dark);
  font-family: var(--fl-font-script);
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.fl-note__body {
  margin: 0;
  color: var(--fl-ink);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 32.5px;
}

.fl-note__sign {
  box-sizing: border-box;
  margin: 0;
  padding-top: 13px;
  color: var(--fl-green-dark);
  font-family: var(--fl-font-script);
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

/* Card reveal — the bordered note (label, body, and sign) rises as one
   block once the section scrolls into view. No per-line stagger. */
.fl-note--armed .fl-note__card {
  opacity: 0;
}

.fl-note--play .fl-note__card {
  animation: fl-note-rise 1600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fl-note-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fl-note--armed .fl-note__card,
  .fl-note--play .fl-note__card {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 1023px) {
  .fl-note {
    padding: 0;
  }

  .fl-note__card {
    padding: 24px;
    text-align: center;
    align-items: center;
  }

  .fl-note__body {
    font-size: 18px;
    line-height: 29px;
  }
}
