header.madeit-header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 96px));
  margin: 0 auto;
  padding: 26px 0;
  gap: 28px;
  border-bottom: 1px solid #d9ded2;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #222923;
  line-height: 1.5;
}
.madeit-header [hidden] {
  display: none !important;
}
.madeit-header a {
  color: inherit;
  text-decoration: none;
}
.madeit-header .madeit-brand {
  font-size: 32px;
  font-weight: 850;
  letter-spacing: -1.8px;
  flex-shrink: 0;
}
.madeit-brand span {
  color: #52733e;
  margin-left: 5px;
}
header.madeit-header nav.madeit-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.madeit-nav > a,
.madeit-account > summary {
  white-space: nowrap;
}
.madeit-nav a {
  font-size: inherit;
  font-weight: 400;
}
.madeit-header a:hover,
.madeit-nav a[aria-current="page"] {
  font-weight: 700;
  color: #52733e;
}
.madeit-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.madeit-header .madeit-nav-action {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid #294f3d;
  border-radius: 28px;
  background: #294f3d;
  color: #fff;
  font-weight: 650;
}
.madeit-header a:focus-visible,
.madeit-account summary:focus-visible {
  outline: 3px solid #7d9855;
  outline-offset: 5px;
}
.madeit-account {
  position: relative;
}
.madeit-account summary {
  cursor: pointer;
  padding: 10px 0;
}
.madeit-account-links {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 20;
  min-width: 140px;
  display: grid;
  padding: 10px;
  background: #fffef8;
  border: 1px solid #d9ded2;
  border-radius: 12px;
  box-shadow: 0 8px 24px #294f3d12;
}
.madeit-account-links a {
  padding: 10px;
}
@media (max-width: 960px) {
  header.madeit-header {
    flex-wrap: wrap;
    gap: 14px;
  }
  header.madeit-header nav.madeit-nav {
    justify-content: flex-start;
    gap: 12px 22px;
  }
}
@media (max-width: 760px) {
  header.madeit-header {
    width: calc(100% - 40px);
    padding: 19px 0;
  }
  .madeit-header .madeit-brand {
    font-size: 29px;
  }
  header.madeit-header nav.madeit-nav {
    width: 100%;
    font-size: 12px;
    gap: 8px 18px;
  }
  .madeit-header .madeit-nav-action {
    padding: 10px 16px;
  }
}
