/* Lightweight readability layer for classic .htm archive pages */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
.lsk-archive-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1rem;
  background: #1e3a5f;
  color: #faf8f5;
  font: 600 0.88rem/1.35 system-ui, sans-serif;
  border-bottom: 1px solid #152a45;
}
.lsk-archive-bar a {
  color: #c9a227;
  text-decoration: none;
}
.lsk-archive-bar a:hover {
  text-decoration: underline;
}
.lsk-archive-bar .links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
}
@media (max-width: 640px) {
  .lsk-archive-bar {
    position: static;
  }
}
