.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border-default);
  background: rgb(251 248 242 / 94%);
  backdrop-filter: blur(10px);
}

.l-header-inner {
  display: flex;
  width: min(100% - 40px, var(--content-width));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.l-header-logo {
  display: flex;
  width: 150px;
  height: 48px;
  align-items: center;
}

.l-header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.l-header-nav {
  display: none;
}

.l-header-menu {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
}

.l-header-menu-lines,
.l-header-menu-lines::before,
.l-header-menu-lines::after {
  width: 24px;
  height: 1px;
  background: var(--color-text-primary);
}

.l-header-menu-lines {
  position: relative;
}

.l-header-menu-lines::before,
.l-header-menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.l-header-menu-lines::before {
  top: -7px;
}

.l-header-menu-lines::after {
  top: 7px;
}

@media (min-width: 1024px) {
  .l-header-inner {
    width: min(100% - 80px, var(--content-width));
  }

  .l-header-logo {
    width: 187px;
    height: 60px;
  }

  .l-header-menu {
    display: none;
  }

  .l-header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .l-header-nav a:not(.c-button) {
    transition: color var(--transition-base);
  }

  .l-header-nav a:not(.c-button):hover {
    color: var(--color-text-accent);
  }

  .l-header-nav .c-button {
    width: 156px;
    height: 48px;
  }
}
