/* Navigation layout */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  max-height: 50px;
  padding: 20px 24px 0;
}

.navigation.with-border {
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
  margin-bottom: 48px;
}

.nav-branding {
  font-size: 20px !important;
  font-weight: 600;
  color: #ff3838 !important;
  font-family: Futura;
  text-decoration: none;
  line-height: 1 !important;
}

.nav-breadcrumb {
  color: #333;
  font-size: 13px;
  font-weight: 300;
  font-family: Futura;
  text-decoration: none;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  line-height: 1;
  padding: 8px 12px;
  border-radius: 3px;
}

/* Breadcrumb wrapper */
.nav-breadcrumb-group {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-family: Futura;
  padding: 0 12px;
}

/* Breadcrumb separator dot */
.nav-separator {
  color: #333;
  font-size: 13px;
  font-weight: 300;
  font-family: Futura;
}

@media (max-width: 700px) {
  .navigation {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
    min-height: 50px;
    max-height: 50px;
  }

  .navigation.with-border {
    padding-bottom: 24px;
  }

  .nav-branding {
    font-size: 20px !important;
    line-height: 1 !important;
    margin: 0;
    padding: 0;
  }

  .nav-links {
    margin-left: 0;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1;
  }

  .nav-links a {
    font-size: 13px;
    line-height: 1;
    margin: 0;
    padding: 0;
  }
}
