.header-navList {
  display: none;
}

.header {
  position: sticky;
  top: 0;
  display: grid;
  align-items: center;
  background: #fff;
  width: 100%;
  height: 50px;
  z-index: 1000;
}

.header-inner {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: auto auto;
  max-width: 600px;
  padding: 0 4%;
}

.l-header-logo {
  display: grid;
  align-items: center;
  grid-template-columns: 26px 90px;
  gap: 8.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn {
  width: 140px;
  height: 34px;
}

@media screen and (min-width: 960px) {
  .header {
    height: 60px;
  }

  .header-inner {
    max-width: 1260px;
  }

  .header-nav {
    gap: 30px;
  }

  .header-navList {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--main-color);
  }

  .l-header-logo {
    grid-template-columns: 30px 100px;
    gap: 10px;
  }

  .header-btn {
    width: 160px;
  }
}
