/**
 * Launch-offer banner — responsive copy toggle (issue #1296).
 *
 * The banner ships TWO copies of the offer:
 *   - the long desktop copy: .r-footer__launch-tag + -copy + -link
 *   - a condensed mobile copy: .r-footer__launch-mobile
 *
 * The injected banner CSS only styles the mobile breakpoint (max-width: 768px)
 * and never hides the condensed copy above it — so on tablet/desktop BOTH copies
 * render at once (the "double text"). Hide the condensed copy above the mobile
 * breakpoint so exactly one copy shows at every width. (≤768px is already handled
 * by the injected CSS: condensed shown, long copy hidden.)
 */
@media (min-width: 769px) {
	.r-footer__launch .r-footer__launch-mobile {
		display: none !important;
	}
}
