/* ── Footer upsell row ─────────────────────────────────────── */
.footer-upsell {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line-2);
}

.footer-upsell-copy .eyebrow {
  margin-bottom: 6px;
}

.footer-upsell-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 480px;
}

.footer-upsell-copy strong {
  font-weight: 700;
  color: var(--fg);
}

@media (max-width: 767px) {
  .footer-upsell {
    flex-direction: column;
    align-items: flex-start;
  }
}
