.board {
  margin-top: 100px;
  padding: 0 16px;
}
.board__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.board__title {
  margin: 0;
}
.board__secondary-title {
  margin-top: 52px;
}
.board__table {
  margin-top: 31px;
}
.board__pagination {
  margin-top: 47px;
}
.board__nav {
  margin-top: 47px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board__nav > * {
  flex: 1;
}
.board__search {
  display: flex;
  border-radius: 9999px;
  background: #fff;
  padding: 7px;
  max-width: 510px;
  margin: 0;
}
.board__search input {
  flex: 1;
  border-radius: 9999px 0 0 9999px;
  appearance: none;
  border: none;
  padding: 9px;
}
.board__search button {
  border-radius: 0 9999px 9999px 0;
  appearance: none;
  border: none;
  color: inherit;
  background: #F1E180;
  font-size: 18px;
  padding: 0 20px;
}
.board__search button::after {
  content: url(../images/icon-search.svg);
  display: inline-block;
  margin-top: -30px;
  margin-right: -10px;
  margin-left: 10px;
  position: relative;
  bottom: -5px;
}
.board__link-post {
  display: block;
  max-width:325px;
  background: #F1E180;
  border-radius: 9999px;
  border: 1px solid #707070;
  color: inherit;
  text-decoration: inherit;
  font-size: 18px;
  text-align: center;
  padding: 7px;
  position: relative;
}
.board__link-post::after {
  content: url(../images/icon-comment.svg);
  position: absolute;
  top: -20px;
  left: 20px;
}

.board__tags {
  background: #FFFFFF;
  position: relative;
  padding: 52px 38px 36px;
  margin: 89px 0 80px;
}
.board__tags-title {
  display: block;
  width: 100%;
  max-width:212px;
  background: #F1E180;
  border-radius: 9999px;
  border: 1px solid #707070;
  color: inherit;
  text-decoration: inherit;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  padding: 7px;
  position: absolute;
  top: -30px;
  left: 0;
}
.board__tags-title::after {
  content: url(../images/icon-tag.svg);
  position: absolute;
  top: -18px;
  left: 24px;
}
.board__tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  gap: .3em;
}
.board__tags-list-item-link {
  color: inherit;
  text-decoration: none;
}
.board__tags-list-item-link::before {
  content: "#";
}

.board__post {
  margin-top: 133px;
}
.board__post-title {
  display: block;
  max-width:300px;
  background: #FFFFFF;
  border-radius: 22px;
  border: 1px solid #707070;
  color: inherit;
  text-decoration: inherit;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  padding: 7px;
  margin: 0;
  position: relative;
}
.board__post-title::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 14px;
  display: block;
  width: 43px;
  height: 42px;
  background: url(../images/icon-comment.svg) left top/43px 42px no-repeat;
}
.board__post-secondary-title {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  background: #F1E080;
  border: 1px solid #707070;
  border-radius: 9999px;
  padding: 0 40px;
  margin: 36px 0 0;
}
.board__post-textarea,
.board__post-input {
  display: block;
  padding: 1.4em 0;
  margin-top: 16px;
  width: 100%;
}
.board__post-file {
  display: block;
  margin-top: 18px;
}
.board__post-submit {
  margin-top: 40px;
  display: block;
  width: 100%;
  appearance: none;
  border: 1px solid #707070;
  background: #F1E080;
  font-size: 18px;
  padding: 20px 20px 20px;
}
.operation-btn{
  display: flex;
  justify-content: flex-start;
}
.operation-btn form{
  margin: 5px 2px;
}

@media screen and (max-width: 768px) {
  .board {
    margin-top: 64px;
  }
  .board__nav {
    display: block;
  }
  .board__link-post {
    margin-top: 24px;
  }
  #f-publication-table-head {
    width: 80px !important;
  }
}
