.band-nav {
  --border-size: 5px;
  --band-nav-height: 3.1875rem;

  display: flex;
  align-items: center;
  background-color: #fff;
  overflow-x: auto;
  width: 100%;
  height: var(--band-nav-height);
  max-width: var(--main-max-width);
  margin-inline: auto;
}

.band-nav .issues {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 2rem;
  padding-inline: var(--band-nav-padding);
}

.band-nav .choose-issue-link {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: var(--band-nav-padding);
}

.band-nav a,
.band-nav .no-issue-license {
  display: grid;
  place-items: center;
  margin-inline: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  margin-inline: 0;
  word-break: keep-all;
  white-space: nowrap;
  border-bottom: var(--border-size) solid transparent;
  border-top: var(--border-size) solid transparent;
}

.band-nav a,
.band-nav a:visited {
  color: var(--text-color);
  text-decoration: none;
}

.band-nav [data-active="1"] {
  color: var(--band-color);
  border-bottom-color: var(--band-color);
}

.band-nav .no-issue-license {
  color: #aaa !important;
  position: relative;
}

.band-nav[data-length="0"] {
  display: none;
}

.band-nav-wrapper {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr minmax(auto, var(--main-max-width)) 1fr;
  grid-template-rows: 3fr 2fr;
}

.band-nav-wrapper .band-nav {
  grid-row: span 2;
}

.band-nav-wrapper .band-nav-top-right,
.band-nav-wrapper .band-nav-top-left {
  background: var(--band-color);
}

.band-nav-wrapper .band-nav-bottom-left,
.band-nav-wrapper .band-nav-bottom-right {
  background: transparent;
}