/* Shared accessibility and navigation layer for the compact HOA guide template. */
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header .logo {
  color: var(--white);
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.article-byline {
  margin: 0 0 36px;
  color: var(--gray-400);
  font-size: .82rem;
  letter-spacing: .03em;
}

.article-body ul,
.baseline-list {
  list-style: disc outside;
}

.article-body ol {
  list-style: decimal outside;
}

.article-body li,
.baseline-list li {
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .header .nav {
    align-content: center;
    flex-wrap: wrap;
    padding-bottom: 8px;
    padding-top: 10px;
  }

  .header .nav-links {
    display: flex;
    flex: 1 0 100%;
    gap: 18px;
    order: 2;
    overflow-x: auto;
    padding: 9px 0 3px;
    scrollbar-width: thin;
  }

  .header .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .article-hero,
  .baseline-hero {
    padding-top: 160px;
  }
}
