article h1 {
  width: 100%;
  color: #000;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

/* buttons */
article .buttons {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

article .buttons a {
  background-color: #cacfd8;
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.9em;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.06);
  word-break: keep-all;
}

article .buttons a:hover {
  background-color: #B5B9C1;
}

/* info */
article .info {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  color: #000;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

article .info > div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

article .info .continue {
  position: relative;
  cursor: pointer;
}

article .info .continue .popUp {
  position: absolute;
  top: 30px;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #bbb;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

article .info .continue .popUp.active {
  display: flex;
}

/* comment */
article > .comment {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

article > .comment form {
  width: 100%;
  flex-direction: row;
  gap: 20px;
}

article > .comment input {
  width: 100%;
  height: 50px;
  font-size: 1em;
  padding: 10px;
  padding-left: 20px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.06);
}

article > .comment button {
  width: 100px;
  height: 50px;
  font-size: 1em;
  color: #fff;
  background-color: #434B57;
  padding: 10px;
  border-radius: 8px;
  border: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

article > .comment button:hover {
  background-color: #353C45;
}

/* checkList */
article .checkList {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

article .checkList .item {
  width: 100%;
  height: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background-color: #fff;
  align-items: center;
  border-radius: 8px;
  border: 0;
  box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.06);
}

article .checkList .item div {
  display: flex;
  justify-content: center;
  align-items: center;
}

article .checkList .item .nickName,
article .checkList .item .comment {
  display: unset;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 1280px) {
  article {
    padding: 0 10px;
  }

  article .info {
    grid-template-columns: repeat(2, 1fr);
  }

  article .checkList .item {
    grid-template-columns: repeat(3, 1fr);
    height: unset;
    padding: 10px;
  }

  article .checkList .item div {
    padding: 10px;
  }

  article .checkList .item .comment {
    padding: unset;
  }
}