#content {
  max-width: 1100px;
  margin: 0 15px;
  padding: 5px 0;
  box-sizing: border-box;
}

.title {
  font-weight: bold;
  font-size: 15px;
  margin: 10px 5px 5px 10px;
  padding: 7px;
  background-color: #F2F2F2;
  /* #D5E9F6; */
}

.list ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.list ul li {
  padding: 5px;
  font-size: 0.9em;
}

.list-date {
  width: 110px;
  margin-left: 25px;
}

.list-name {
  width: 330px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list-name a:hover {
  /* border-bottom: 2px solid orangered; */
  text-decoration: underline;
}

.list-desc {
  width: 400px;
  color: #606060;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list-count {
  width: 130px;
  color: #606060;
  text-align: right;
  margin-right: 10px;
}

/* 콘텐츠 없이 제목만 있는 행(예. 레인지 개체를 생성하는 다양한 접근 방법) */
.solo {
  padding: 15px 0 10px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #5A96D6;
}

/* MEDIA QUERY */
@media(max-width: 992px) {
  #header p,
  #header .button,
  nav,
  .list-date {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu-button:hover {
    opacity: 0.5;
  }

  /* 화면 크기 축소시 좌측에 나타나는 메뉴 */
  .menu-hidden {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #f2f2f2;
    width: 50%;
    height: 100%;
    border-right: #ccc 1px solid;
    opacity: 0.9;
    padding: 30px;
    transform: translateX(-500px);
    transition: transform 0.5s ease-in-out;
  }

  .menu-hidden li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
  }

  .menu-hidden li:last-child {
    border-bottom: 0;
  }

  .menu-hidden.show {
    transform: translateX(-20px);
  }
}

@media(max-width: 600px) {
  .list-desc,
  .list-count {
    display: none;
  }

  .list-name {
    max-width: 100%;
  }

  .main img {
    max-width: 590px;
  }
}
