/* ==========================================================================
   Feature header — the third bar, under the region header. Lightest tier:
   paper background, plain links, no dots and no current-page indicator.
   Fully scoped under .gh-featurebar and self-contained like the other
   header stylesheets.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=IBM+Plex+Mono:wght@400;500&display=swap");

.gh-featurebar {
  --gh-ink: #102b3b;
  --gh-ink-soft: #35505f;
  --gh-reef-deep: #075c55;
  --gh-display: "Bricolage Grotesque", system-ui, sans-serif;
  --gh-mono: "IBM Plex Mono", ui-monospace, monospace;

  position: relative;
  z-index: 58;
  margin: 0;
  background: #f3f6f4;
  border-bottom: 1px solid rgba(16, 43, 59, 0.12);
  color: var(--gh-ink);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}
.gh-featurebar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.4rem clamp(1rem, 4vw, 2.5rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem 1.4rem;
}
.gh-featurebar a { color: var(--gh-ink-soft); text-decoration: none; }
.gh-featurebar a:focus-visible { outline: 3px solid var(--gh-reef-deep); outline-offset: 2px; border-radius: 2px; }

.gh-featurebar-label {
  font-family: var(--gh-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gh-ink-soft);
  padding-right: 1.2rem; border-right: 1px solid rgba(16, 43, 59, 0.15);
}
.gh-featurebar .gh-featurebar-label:hover { text-decoration: underline; }

.gh-featurebar ol {
  display: flex; flex-wrap: wrap; gap: 0.1rem 1.2rem;
  margin: 0; padding: 0; list-style: none;
}
.gh-featurebar li { margin: 0; padding: 0; }
.gh-featurebar ol a {
  font-family: var(--gh-display); font-weight: 600; font-size: 0.84rem;
  letter-spacing: normal; text-transform: none;
  padding: 0.2rem 0; opacity: 1;
}
.gh-featurebar ol a:hover { color: var(--gh-ink); }
