body {
  flex-direction: column;
}

.layout {
  display: grid;
  grid-template-columns: 20% 80%;
  height: 100vh;
}

nav {
  display: flex;
  flex-direction: column;
  position: sticky;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .layout {
    grid-template-columns: 100%;
  }
}

main {
  height: 100vh;
  overflow-y: auto; /* main 영역만 세로 스크롤 가능 */
  padding: 20px;
}

.highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(to top, #f29a9a 90%, transparent 50%);
  background-size: 100% 0.8em;
  background-repeat: no-repeat;
  background-position: 0 0.6em;
}

#app-logo {
  height: 200px;
  width: 200px;
  border-radius: 30%;
}

nav h1 {
  font-size: 60px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  width: 50%;
  display: block;
  color: #fff;
  padding: 0.3rem 0.2rem 0.3rem 1rem;
  margin-bottom: 3px;
  transition: background-color 0.5s ease;
}

.nav-list li:hover {
  background-color: #e25050;
}

.nav--row {
  display: flex;
}
.nav--column {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
nav h1 {
  margin: 0;
  line-height: 1.1;
}
nav h5 {
  margin: 0;
  line-height: 1;
}

.color-box {
  height: 65px;
  width: 65px;
  background-color: #e25050;
}

.image-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto; /* 가로 스크롤 */
  padding: 10px 0;
}

.image-list img {
  height: 450px;
  width: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.sized-box-height {
  height: 100px;
}

/* ??? */
.stack__badge-listview {
  display: flex;
  gap: 25px;
}
