.hero-banner {
  overflow: hidden;
  background: #0d1b2d;
}
.hero-banner a {
  display: block;
}
.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5;
  object-fit: contain;
}
.common-nav {
  padding: .75rem 0;
  border-bottom: 1px solid rgba(127,127,127,.22);
  background: #fff;
}
.common-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  flex-wrap: nowrap;
}
.common-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #cfd7e6;
  border-radius: 10px;
  background: #f8fafc;
  color: #1f2937;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.common-nav-button:hover,
.common-nav-button.is-current {
  background: #eef4ff;
  border-color: #7aa7ff;
}
@media (max-width: 700px) {
  .common-nav-inner {
    gap: .4rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: .15rem;
  }
  .common-nav-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: .9rem;
    flex: 0 0 auto;
  }
}
