/* "Home" in the platform top nav. Own file — platform.css is at its ceiling.
   Everything else is inherited from .platform-top-nav-link so it matches the
   program tabs beside it; these rules only cover being an <a> rather than a
   <button>, and the little house mark. */

.platform-top-nav-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  /* The program tabs overflow into a horizontal scroller on narrow screens, so
     Home is pinned to the left edge — otherwise the one link that gets you out
     of a section is the first thing to scroll away. */
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
}

.platform-top-nav-home:hover {
  text-decoration: none;
}

.platform-top-nav-home-ico {
  font-size: 1.05em;
  line-height: 1;
  /* The glyph sits high in most fonts; nudge it onto the text baseline. */
  transform: translateY(-1px);
}
