.site-nav {
  display: flex;
  align-items: center;
  background-color: #333333;
  position: relative;
  height: 4rem;
}

.nav-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
}

.nav-header {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-brand,
.nav-brand:link,
.nav-brand:visited {
  color: #ffffff;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 4rem;
  display: flex;
  align-items: center;
}

.nav-brand:hover,
.nav-brand:focus {
  background-color: #111111;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0 1.5rem;
  cursor: pointer;
  color: #ffffff;
  margin-left: auto;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.nav-toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.nav-toggle-icon {
  width: 2rem;
  height: 2rem;
  display: block;
}

.nav-menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  background-color: #333333;
}

.nav-menu li a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-align: center;
  padding: 0 1.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 4rem;
  height: 4rem;
}

.nav-menu li a:hover {
  background-color: #111111;
}

@media (max-width: 799px) {
  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-header {
    position: relative;
    width: 100%;
    height: 4rem;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 4rem;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #333333;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    z-index: 10;
  }

  .nav-menu li a {
    text-align: left;
    border-top: 1px solid #444444;
    height: 4rem;
    line-height: 4rem;
  }

  #nav-toggle:checked ~ .nav-header .nav-brand {
    border-bottom: 1px solid #444444;
  }

  #nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .nav-checkbox:focus-visible + .nav-header .nav-toggle {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 56rem;
  width: 100%;
  margin: 1.5rem auto 1rem;
  padding: 0 8px;
  font-size: 0.875rem;
  color: #bbbbbb;
  letter-spacing: 0.02em;
}

.page-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.page-breadcrumb a.page-breadcrumb-current {
  text-decoration: underline;
}

.page-breadcrumb-separator {
  color: #666666;
}
