/**
 * United Earth — Header Tagline (Responsive Swap)
 * ----------------------------------------------
 * Scope: UE header tagline markup injected via GP Element.
 *
 * Expected markup/classes:
 * - `.ue-tagline` wrapper
 * - `.ue-tagline--long`  (desktop)
 * - `.ue-tagline--short` (mobile)
 */


/* Default (desktop): show long, hide short */
.ue-tagline--short { display: none; }
.ue-tagline--long  { display: inline; }

/* Mobile: show short, hide long */
@media (max-width: 768px) {
  .ue-tagline--short { display: inline; }
  .ue-tagline--long  { display: none; }
}

/* Prevent wrapping and keep overflow tidy */
.ue-tagline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
