.simple-shell {
  background: #10053b;
}

.simple-shell-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1.5rem;
}

.simple-shell-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.simple-footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.simple-brand img {
  width: 120px;
  height: auto;
  display: block;
}

.simple-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.simple-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
}

.simple-nav a.simple-login {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  background: #f5a33b;
  color: #10053b;
  font-weight: 700;
}

.simple-nav a:hover,
.simple-nav a:focus-visible {
  color: #fff;
}

.simple-nav a.simple-login:hover,
.simple-nav a.simple-login:focus-visible {
  color: #10053b;
}

@media (max-width: 680px) {
  .simple-shell-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .simple-nav {
    gap: 0.75rem 1rem;
  }
}
