.board_read .read_header {
  border-top: 0.1875rem solid #111111;
  border-bottom: 0.0625rem solid #111111;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header {
    padding-left: 0.5rem;
  }
}
.board_read .read_header h4 {
  font-size: 1.375rem;
  line-height: 2rem;
  padding-block: 1.5rem;
  padding-inline: 1.25rem;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  .board_read .read_header h4 {
    padding-block: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .board_read .read_header h4 {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-block: 1.125rem;
    padding-inline: 0;
  }
}
.board_read .read_header p {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: left;
  color: var(--font3);
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 1rem 1.25rem;
  gap: 1rem;
  border-block: 0.0625rem solid #E1E1E4;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header p {
    gap: 1rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 1rem 0;
  }
}
.board_read .read_header p .time strong {
  font-weight: 400;
  color: var(--font1);
  display: inline-block;
  margin-left: 1.25rem;
}
.board_read .read_header p .read_count img {
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.125rem;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header p .read_count img {
    margin-right: 0;
  }
}
.board_read .read_header .fileList {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: #111111;
  padding-block: 1rem;
  padding-inline: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .board_read .read_header .fileList {
    flex-flow: column;
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding-inline: 0;
  }
}
.board_read .read_header .fileList > span {
  flex-shrink: 0;
}
.board_read .read_header .fileList .files {
  display: flex;
  flex-flow: row wrap;
  gap: 0.375rem;
}
.board_read .read_header .fileList .files a {
  display: inline-block;
  width: fit-content;
  border: 0.0625rem solid #E1E1E4;
  border-radius: 4rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
}
.board_read .read_body {
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 2.5rem 1.25rem;
}
.board_read .read_body img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .board_read .read_body {
    padding: 1.25rem 0;
  }
}
.board_read .read_body.del form {
  text-align: center;
}
.board_read .read_body.del form strong {
  font-size: 1.375rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.board_read .read_body.del form .btnArea {
  text-align: center;
}
.board_read .read_footer .fileList {
  text-align: right;
}
.board_read .read_footer .fileList button {
  margin-top: 2.5rem;
}
.board_read .read_footer .btn-area {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 1023px) {
  .board_read .read_footer .btn-area {
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .board_read .read_footer .btn-area {
    flex-flow: column nowrap;
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
}
.board_read .read_footer .btn-area > div {
  display: flex;
  gap: 0.625rem;
}
.board_read .read_footer .btn-area .read_btn {
  display: inline-block;
  padding: 0.9375rem 2.5rem;
  border-radius: 0.25rem;
  background-color: #00AB4E;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .board_read .read_footer .btn-area .read_btn {
    width: 50%;
  }
}
.board_read .read_footer .btn-area .read_btn.outline-gray {
  background-color: #FFFFFF;
  color: #111111;
  border: 0.0625rem solid #E1E1E4;
}
.board_read .read_footer .btn-area .read_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: left;
  opacity: 0.9;
  border-radius: 0.25rem;
  background-color: #00AB4E;
  width: 0;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.board_read .read_footer .btn-area .read_btn:hover {
  color: #FFFFFF !important;
}
.board_read .read_footer .btn-area .read_btn:hover::after {
  width: 100%;
}
.board_read .read_footer .btn-area .etc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .board_read .read_footer .btn-area .etc {
    order: 1;
  }
}
.board_read .read_footer .btn-area .etc .read_btn {
  width: 10rem;
  border-radius: 0.25rem;
  text-align: center;
  background-color: #F1F1F5;
  color: #505050;
}
@media only screen and (max-width: 767px) {
  .board_read .read_footer .btn-area .etc .read_btn {
    width: 100%;
  }
}