.board {
  margin-top: 30px;
}

.board__btn {
  border-top: 1px solid #000;
  padding: 30px 0  22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.board__btn .btn {
  width: 28px;
  height: 28px;
  background: url(../images/board/c-btn-board.svg) center no-repeat;
  background-size: 100%;
  font-size: 0;
}

.board__btn .btn.is-active {
  background: url(../images/board/c-btn-board-on.svg) center no-repeat;
  background-size: 100%;
}

.board__btn .btn.list {
  background: url(../images/board/c-btn-list.svg) center no-repeat;
  background-size: 100%;
  margin-left: 4px;
}

.board__btn .btn.list.is-active {
  background: url(../images/board/c-btn-list-on.svg) center no-repeat;
  background-size: 100%;
}

.board__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.board__list.is-list-type {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.board__list.is-list-type .item {
  width: 100%;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 260px;
}

.board__list.is-list-type .item .img {
  width: 260px;
  height: 100%;
  overflow: hidden;
}
/* 추가 */
.img > img {
	width: 100%;
	height: 390px;
/* 	max-height: 390px; */
}
/* 추가 */
.board__list.is-list-type .item__info {
  width: calc(100% - 260px);
}

.board__list.is-list-type .item .title {
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board__list.is-list-type .item .desc {
  display: block;
  margin-top: 20px;
  line-height: 25px;
  width: 100%;
  height: 75px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board__list.is-list-type .item .data {
  margin-top: 26px;
}

.board__list .item {
  width: calc((100% - 20px)/3);
  margin-right: 10px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #E5E6E9;
}

.board__list .item:nth-of-type(3n) {
  margin-right: 0;
}

.board__list .item__info {
  padding: 15px;
}

.board__list .item .title {
  font-size: 20px;
  font-weight: 700;
  word-break: keep-all;
}

.board__list .item .title.l-height {
  width: 100%;
  height: 57px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board__list .item .desc {
  font-size: 16px;
  display: none;
}

.board__list .item .data {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.board__list .item .data__right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.board__list .item .data .l-bar {
  width: 1px;
  height: 10px;
  background-color: #E5E6E9;
  margin: 0 10px;
}

.board__list .item .data .num {
  font-family:'Pretendard GOV' !important;
  font-size: 17px;
  color: #575757;
}

.board__list .item .data .num.view {
  padding-left: 20px;
  background: url(../images/board/c-view.svg) left center no-repeat;
  background-size: 14px;
}

.board__list .item .data .num.heart {
  padding-left: 20px;
  background: url(../images/board/c-heart.svg) left center no-repeat;
  background-size: 14px;
}

.board__btn-enroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.board__btn-enroll .l-btn-type {
  width: 185px;
  height: 50px;
  line-height: 48px;
  font-size: 15px;
  font-weight: 700;
  margin-left: auto;
  border: 1px solid #212121;
}

@media (max-width: 900px) {
  .board__btn-enroll .l-btn-type {
    width: 150px;
    font-size: 14px;
    height: 45px;
    line-height: 43px;
  }
}

@media (max-width: 900px) {
  .board__list.is-list-type .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .board__list.is-list-type .item .img {
    width: 100%;
    height: auto;
  }
  .board__list.is-list-type .item__info {
    width: 100%;
  }
  .board__list.is-list-type .item .title {
    font-size: 18px;
  }
  .board__list .item {
    width: calc((100% - 20px)/2);
  }
  .board__list .item:nth-of-type(3n) {
    margin-right: 10px;
  }
  .board__list .item:nth-of-type(2n) {
    margin-right: 0px;
  }
  .board__list .item__info {
    padding: 20px;
  }
  .board__list .item .desc {
    word-break: keep-all;
  }
  .board__list .item .desc br {
    display: none;
  }
}

@media (max-width: 500px) {
  .board__list .item{margin: 0 0 1rem 0}
  .board__list.is-list-type .item .title {
    padding-bottom: 20px;
  }
  .board__list.is-list-type .item .desc {
    line-height: 20px;
    width: 100%;
    height: 60px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .board__list .item {
    width: 100%;
  }
  .board__list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  .board__list .item:nth-of-type(2n) {
    margin-right: 0px;
  }
  .board__list .item__info {
    padding: 5px;
  }
  .board__list .item .title {
    /*font-size: 16px;*/
  }
  .board__list .item .data {
    margin-top: 20px;
  }
  .board__list .item .desc {
    font-size: 14px;
  }
}

.enrollment .l-s-inner {
  padding: 40px 0 150px;
  width: 1280px;
  margin: 0 auto;
}

@media (max-width: 1290px) {
  .enrollment .l-s-inner {
    width: 90%;
  }
}

.enrollment__wrap {
  border-top: 1px solid #575757;
  border-bottom: 1px solid #575757;
  padding: 26px 0;
}

.enrollment .dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.enrollment .dl.l-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.enrollment .dl.l-top .dt {
  margin-top: 11px;
}

.enrollment .dl .dt {
  width: 165px;
  font-size: 20px;
  font-weight: 700;
  height: auto;
  padding-left: 24px;
}

.enrollment .dl .dt.l-ck {
  background: url(../images/post/c-chk-icon.svg) left center no-repeat;
  background-size: 14px;
}

.enrollment .dl .dd {
  width: calc(100% - 165px);
  padding: 11px 0;
  padding-left: 20px;
  border-left: 1px solid #DBDBDB;
}

.enrollment .dl .dd .l-bg-input {
  height: 72px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.02);
  text-indent: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #171717;
}

.enrollment .dl .dd .l-bg-input::-webkit-input-placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .l-bg-input:-ms-input-placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .l-bg-input::-ms-input-placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .l-bg-input::placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .textarea {
  background-color: rgba(0, 0, 0, 0.02);
}

.enrollment .dl .dd .l-file__group {
  margin-bottom: 60px;
}

.enrollment .dl .dd .l-file .msg {
  font-size: 15px;
  font-weight: 500;
  color: #E84A3D;
  line-height: 1.6;
  margin-bottom: 20px;
}

.enrollment .dl .dd .l-file .add-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #000;
  padding: 10px 28px;
  margin-bottom: 20px;
}

.enrollment .dl .dd .l-file .add-btn .plus {
  width: 14px;
  height: 14px;
  background: url(../images/post/c-plus.svg) center no-repeat;
  background-size: 14px;
  margin-right: 8px;
}

.enrollment .dl .dd .l-file .file-set {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.enrollment .dl .dd .l-file .filebox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.enrollment .dl .dd .l-file .filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.enrollment .dl .dd .l-file .filebox label {
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #000;
  padding: 10px 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.enrollment .dl .dd .l-file .filebox .l-name {
  width: 268px;
  display: inline-block;
  font-size: 15px;
  margin-left: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

.enrollment .dl .dd .l-file .delete {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url(../images/post/c-delete.svg) center no-repeat;
  background-size: contain;
  margin-left: 20px;
}

.enrollment .dl .dd .l-file .l-text {
  font-size: 20px;
  width: 100%;
  border-bottom: 1px solid #000;
  font-weight: 700;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.enrollment .dl .dd .l-file .l-text::-webkit-input-placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .l-file .l-text:-ms-input-placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .l-file .l-text::-ms-input-placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .l-file .l-text::placeholder {
  color: #DBDBDB;
}

.enrollment .dl .dd .enroll__num .msg {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  background: url(../images/post/c-msg-badge.svg) left center no-repeat;
  background-size: 18px;
  padding-left: 26px;
}

.enrollment .dl .dd .enroll__num .num-img-area {
  width: 156px;
  margin-bottom: 20px;
}

.enrollment .dl .dd .enroll__num .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.enrollment .dl .dd .enroll__num .btn-area .btn {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.enrollment .dl .dd .enroll__num .btn-area .btn.refresh {
  background: url(../images/post/c-refresh.svg) center no-repeat;
  background-size: 100%;
}

.enrollment .dl .dd .enroll__num .btn-area .btn.sound {
  background: url(../images/post/c-sound.svg) center no-repeat;
  background-size: 100%;
}

.enrollment .dl .dd .enroll__num input {
  width: 375px;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-indent: 14px;
  border: 1px solid #000;
}

.enrollment__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}

.enrollment__btn .btn {
  width: 184px;
  height: 50px;
  line-height: 50px;
  background-color: #F2F2F2;
  color: #171717;
  font-weight: 15px;
  font-weight: 700;
  margin: 0 8px;
}

.enrollment__btn .btn.enroll {
  background-color: #171717;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .enrollment .dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .enrollment .dl .dt {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .enrollment .dl .dd {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #DBDBDB;
    padding: 20px 0;
  }
}

@media (max-width: 500px) {
  .enrollment .l-s-inner {
    padding: 60px 0 100px;
  }
  .enrollment .dl .dt {
    font-size: 16px;
  }
  .enrollment .dl .dd .l-bg-input {
    height: 50px;
    font-size: 14px;
    text-indent: 14px;
  }
  .enrollment .dl .dd .l-file__group {
    margin-bottom: 40px;
  }
  .enrollment .dl .dd .l-file .msg {
    font-size: 12px;
    word-break: keep-all;
  }
  .enrollment .dl .dd .l-file .file-set {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .enrollment .dl .dd .l-file .filebox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .enrollment .dl .dd .l-file .filebox .l-name {
    margin-top: 15px;
    margin-left: 0;
    font-size: 13px;
  }
  .enrollment .dl .dd .l-file .filebox label {
    margin-right: 10px;
  }
  .enrollment .dl .dd .l-file .l-text {
    font-size: 16px;
    padding-bottom: 12px;
    margin-bottom: 15px;
  }
  .enrollment .dl .dd .l-file .delete {
    margin-left: 10px;
  }
  .enrollment .dl .dd .enroll__num input {
    width: 100%;
    font-size: 16px;
  }
  .enrollment .dl .dd .enroll__num .msg {
    font-size: 14px;
    background-size: 14px;
    padding-left: 20px;
  }
  .enrollment .enrollment__btn {
    margin-top: 50px;
  }
}


/*220829_남우진 수정*/
.enrollment .dl .dd {
	font-size:14px;
}