/* A7 — styles that belong to `partials/_marketing_footer.html`.
 *
 * The bulk of the footer lives in `marketing-shell.css` (`.mk-footer`,
 * `.mk-foot-*`). What is here is the part that only landing.html had, in its
 * OWN page stylesheet, on the inline copy this partial now replaces:
 *
 *     footer a:focus-visible,
 *     .foot-langs button:focus-visible { … }
 *
 * That selector matched `.foot-langs`, which the partial does not use. Swapping
 * the markup without moving this rule would have silently removed the focus
 * ring from the footer language buttons — a keyboard user loses track of where
 * they are, and no diff of the two footers shows it because the rule is in a
 * third file.
 *
 * Moving it here also gives it to the six pages that already included the
 * partial and never had it. The two-tone ring is deliberate: the footer is dark
 * and the ring has to stay visible whichever side it touches.
 *
 * NOT in `utilities.css` — that file is generated. */
.mk-footer a:focus-visible,
.mk-foot-langs button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(8, 51, 68, .9);
}
