section.board {
  margin-top: calc(40px + 1vw);
}

section.board ul.list {
  margin: 0 auto;
  width: 88%;
}

section.board ul.list li {
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid var(--mono14);
}

section.board ul.list li:first-child {
  border-top: 1px solid var(--mono14);
}

section.board ul.list li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.02rem;
  color: var(--mono2);
  cursor: pointer;
}

section.board ul.list li:hover {
  background-color: var(--mono15);
}

section.board ul.list li .type {
  text-align: center;
  min-width: 140px;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6rem;
  color: var(--mono8);
}

section.board ul.list li .subject {
  flex: 1;
  padding: 0 24px;
}

section.board ul.list li .subject h2 {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: -0.02rem;
  line-height: 1.6rem;
}

section.board ul.list li .subject p {
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0rem;
  line-height: 1.4rem;
  color: var(--mono8);
}

section.board ul.list li .name {
  text-align: center;
  min-width: 160px;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6rem;
  color: var(--mono8);
}

section.board ul.list li .icon {
  min-width: 80px;
}

section.board ul.list li .icon img {
  margin: 0 auto;
  width: 20px;
}

section.board ul.list li .split {
  width: 1px;
  height: 20px;
  background-color: var(--mono14);
}


@media all and (max-width:1024px) {
  section.board ul.list {
    width: 100%;
  }
}


@media all and (max-width:540px) {
  section.board ul.list li {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 22px;
  }

  section.board ul.list li .split {
    display: none;
  }

  section.board ul.list li .type {
    text-align: left;
    font-size: 0.8rem;
  }

  section.board ul.list li .subject {
    margin-top: 4px;
    padding: 0 0;
  }

  section.board ul.list li .subject h2 {
    font-size: 1.1rem;
    line-height: 1.8rem;
  }

  section.board ul.list li .name {
    margin-top: 4px;
    text-align: left;
    font-size: 0.8rem;
  }

  section.board ul.list li .icon {
    margin-top: 8px;
    text-align: left;
    min-width: auto;
  }

  section.board ul.list li .icon img {
    margin-left: 1px;
  }
}