.w1280 {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.notice_list .nav_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
}

.notice_list .nav_wrap .cate {
    display: flex;
    gap: 10px;
    align-items: center;
}

.notice_list .nav_wrap .cate a,
.notice_list .nav_wrap .cate li {
    color: var(--grayscale-50002, #737373);
    text-align: center;
    padding: 14px 30px;
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    border: 1px solid var(--grayscale-30002, #d4d4d4);
    letter-spacing: -0.36px;
    display: block;
    border-radius: 999px;
    cursor: pointer;
}

.notice_list .nav_wrap .cate a.active,
.notice_list .nav_wrap .cate li.active {
    border: 1px solid #00A2C0;
    color: #00A2C0;
}

.notice_list .nav_wrap .total {
    color: var(--grayscale-40001, #a3a3a3);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: -0.64px;
}

.notice_list .nav_wrap .total b {
    color: #262626;
    font-weight: 700;
}

.notice_list .list_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
    gap: 27px;
}

.notice_list .list_wrap li:not(.no-data) {
    width: calc((100% - 81px) / 4);
    border: 1px solid #D4D4D4;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 40px;
}

.notice_list .list_wrap a {
    position: relative;
}

.notice_list .list_wrap a:before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    bottom: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 2px solid #00A2C0;
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.notice_list .list_wrap a:hover:before {
    opacity: 1;
}

.notice_list .list_wrap ._cover {
    border-radius: 40px;
    border: 4px solid #fff;
    overflow: hidden;
}

.notice_list .list_wrap .txt_wrap {
    padding: 16px 20px 50px;
    box-sizing: border-box;
}

.notice_list .list_wrap .txt_wrap .sort {
    overflow: hidden;
    color: #f9f9f9;
    text-overflow: ellipsis;
    font-family: Pretendard;
    border-radius: 6px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    padding: 5px 10px;
    box-sizing: border-box;
    width: fit-content;
    line-height: 130%;
    letter-spacing: -0.3px;
}

.notice_list .list_wrap .txt_wrap .sort.notice {
    background: #00A2C0;
}

.notice_list .list_wrap .txt_wrap .sort.event {
    background: #004E73;
}

.notice_list .list_wrap .no-data p,
.notice_list .list_wrap .txt_wrap p {
    color: #303030;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.36px;
    margin-bottom: 20px;
    display: -webkit-box;
    
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice_list .list_wrap .no-data p {
    margin: 0;
}

.notice_list .list_wrap .txt_wrap .date {
    color: #6d6d6d;
    font-family: 'Spoqa Han Sans Neo';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 19.5px */
    letter-spacing: -0.3px;
}

@media screen and (max-width: 768px) {
    .notice_list .list_wrap {
        column-gap: 12px;
        row-gap: 24px;
        margin-bottom: 40px;
    }

    .notice_list .list_wrap li {
        width: calc((100% - 12px) / 2);
        border-radius: 17px;
    }

    .notice_list .nav_wrap {
        justify-content: center;
        margin-bottom: 30px;
    }

    .notice_list .nav_wrap .cate a,
    .notice_list .nav_wrap .cate li {
        font-size: 13px;
        letter-spacing: -0.262px;
        padding: 10px 20px;
    }

    .notice_list .nav_wrap .total {
        display: none;
    }

    .notice_list .list_wrap ._cover {
        border: 2px solid #fff;
        border-radius: 17px;
    }

    .notice_list .list_wrap .txt_wrap .sort {
        font-size: 12px;
        letter-spacing: -0.24px;
        padding: 4px 8px;
    }

    .notice_list .list_wrap .txt_wrap {
        padding: 12px 8px 30px;
    }

    .notice_list .list_wrap .txt_wrap p {
        font-size: 15px;
        letter-spacing: -0.3px;
    }

    .notice_list .list_wrap .txt_wrap .date {
        font-size: 12px;
        letter-spacing: -0.24px;
    }

    .notice_list .list_wrap a:before {
        border-radius: 17px;
        border: 1px solid #00A2C0;
    }
}


/* 공지사항 상세보기 */
.board {
    padding: 120px 0;
}

.board .btn_board {
    color: var(--800, #262626);
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.32px;
    padding: 20px 30px;
    border-radius: 999px;
    border: 1px solid var(--grayscale-30002, #d4d4d4);
    box-sizing: border-box;
    display: block;
    margin: 70px auto;
    width: fit-content;
    min-width: 220px;
}

.board_list .tit_wrap h3 {
    color: #0d0302;
    font-family: 'PT Bandoche';
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.board_list .tit_wrap {
    margin-bottom: 40px;
}


@media screen and (max-width: 768px) {
    .board {
        padding: 60px 0;
    }

    .board_list .tit_wrap {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 28px;
    }

    .board_list .tit_wrap h3 {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .board .btn_board {
        margin: 28px auto 40px;
        font-size: 15px;
        letter-spacing: -0.3px;
        padding: 15px 30px;
        min-width: unset;
        width: 100%;
        max-width: 500px;
    }

    .community_view .btn_board {
        max-width: 140px;
    }
}

.community_view .tit_wrap {
    margin-bottom: 30px;
}

.community_view .tit_wrap h3 {
    color: var(--grayscale-900, #171717);
    font-family: 'PT Bandoche';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.community_view .side {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.community_view .writer_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.community_view .writer_wrap p {
    color: var(--grayscale-800, #262626);
    text-align: right;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 144.444% */
    letter-spacing: -0.36px;
}

.community_view .writer_wrap span {
    color: var(--grayscale-40001, #a3a3a3);
    text-align: center;
    font-family: 'Spoqa Han Sans Neo';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.04px;
}

.community_view .btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.community_view .btn_wrap button {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    border: 1px solid #737373;
    background: #fff;
    padding: 10px 14px;
    box-sizing: border-box;
    max-width: 80px;
    max-height: 40px;
    color: var(--800, #262626);
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: -0.28px;
}

.community_view .content {
    padding: 40px 0;
    border-top: 2px solid #333;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 30px;
}

.community_view .content * {
    color: #262626;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.4px;
}

.community_view .reply_box {
    padding: 25px 30px;
    border: 1px solid #d4d4d4;
    margin-bottom: 30px;
}

.community_view .reply_box h4 {
    color: #262626;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
}

.community_view .reply_box ul {
    margin-bottom: 18px;
}

.community_view .reply_box ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #262626;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: -0.32px;
}

.community_view .reply_box ul li:not(:last-child) {
    margin-bottom: 8px;
}

.community_view .reply_box ul li span {
    font-weight: 300;
}

.community_view .reply_box ul li span:last-child:before {
    content: '|';
    color: #262626;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.32px;
    margin: 0 8px;
}

.community_view .reply_box form {
    background: #f5f5f5;
    padding: 10px 10px 10px 20px;
    display: flex;
    justify-content: space-between;
}

.community_view .reply_box input::placeholder,
.community_view .reply_box input {
    color: #737373;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.32px;
    border: none;
    outline: none;
    width: 80%;
}

.community_view .reply_box form button {
    color: var(--800, #262626);
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: -0.28px;
    border-radius: 4px;
    border: 1px solid #d4d4d4;
    background: #fff;
    max-height: 40px;
    padding: 9px 30px;
    box-sizing: border-box;
}

.board .board_bottom {
    display: flex;
    justify-content: space-between;
}

.board .board_bottom .bottom_link {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #262626;

    font-family: Pretendard;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.32px;
}

.board .board_bottom .btn_board {
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .community_view .tit_wrap h3 {
        font-size: 18px;
    }

    .community_view .tit_wrap {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .community_view .side {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .community_view .writer_wrap p {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .community_view .writer_wrap span {
        font-size: 12px;
        letter-spacing: -0.03px;
    }

    .community_view .btn_wrap button {
        padding: 6px 10px;
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    .community_view .btn_wrap button img {
        width: 16px;
    }

    .community_view .content {
        padding: 20px 0;
        border-top: 1px solid #333;
        margin-bottom: 20px;
    }

    .community_view .content * {
        font-size: 15px;
        letter-spacing: -0.3px;
    }

    .community_view .reply_box {
        padding: 20px;
    }

    .community_view .reply_box h4 {
        font-size: 14px;
        letter-spacing: -0.28px;
        margin-bottom: 10px;
    }

    .community_view .reply_box h4 img {
        width: 20px;
    }

    .community_view .reply_box ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .community_view .reply_box form {
        padding: 10px 15px;
        flex-direction: column;
    }

    .community_view .reply_box form input {
        width: 100%;
        margin-bottom: 6px;
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .community_view .reply_box form input:placeholder {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .community_view .reply_box form button {
        max-width: 80px;
        padding: 6px 10px;
        margin-left: auto;
        font-size: 13px;
        letter-spacing: -0.26px;
    }

    .community_view .board_bottom {
        align-items: flex-start;
    }

    .board .board_bottom .bottom_link {
        flex-direction: column;
        gap: 7px;
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .board .board_bottom .bottom_link img {
        width: 48px;
    }

    .board .board_bottom .bottom_link:last-child {
        flex-direction: column-reverse;
    }
}

.notice_view .tit_wrap .title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.notice_view .tit_wrap .sort {
    overflow: hidden;
    color: #f9f9f9;
    text-overflow: ellipsis;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.36px;
    padding: 5px 10px;
    border-radius: 6px;
}

.notice_view .tit_wrap .sort.notice {
    background: #00A2C0;
}

.notice_view .tit_wrap .sort.event {
    background: #004E73;
}

.notice_view .content {
    margin-bottom: 70px;
}

.notice_view .content img {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .notice_view .tit_wrap .sort {
        font-size: 12px;
        letter-spacing: -0.24px;
        padding: 4px 8px;
    }

    .notice_view .content {
        margin-bottom: 30px;
    }
}

.board_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.board_pagination .pag_nav img {
    filter: brightness(5.7);
    width: auto;
}

.board_pagination .pag_nav.active img {
    filter: brightness(0);
}

.board_pagination .num_wrap {
    margin: 0 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.board_pagination .num_wrap a {
    color: #262626;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.04px;
    border-radius: 4px;
    border: 1px solid #E5E5E5;
    padding: 5px 10px 3px;
    max-width: 32px;
    box-sizing: border-box;
    display: block;
}

.board_pagination .num_wrap a.active {
    color: #FFF;
    background: #00A2C0;
    border: 1px solid transparent;
}

@media screen and (max-width: 768px) {
    .board_pagination .num_wrap a {
        font-size: 14px;
        letter-spacing: -0.035px;
        padding: 4px 8px 2px;
        max-width: 28px;
    }

}

/* 커뮤니티 글쓰기 */
.community_write .tit_wrap h3 {
    color: var(--grayscale-900, #171717);
    font-family: 'PT Bandoche';
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 39.2px */
  }
  .community_write .tit_wrap p {
    color: var(--grayscale-50002, #737373);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%; /* 24px */
    letter-spacing: -0.32px;
  }
  .community_write .tit_wrap {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .community_write .write_wrap {
    border-top: 2px solid #333;
    margin-bottom: 70px;
  }
  .community_write .write_wrap .inner {
    padding: 16px 40px;
    border-bottom: 1px solid #d4d4d4;
  }
  .community_write .input_wrap {
    display: flex;
  }
  .community_write .file_box {
    display: flex;
    gap: 10px;
  }
  .community_write .input_wrap label,
  .community_write .input_wrap .label {
    width: 10%;
    color: var(--neutral-gray-800, #262626);
    font-family: Pretendard;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: -0.36px;
    padding: 10px 0;
    box-sizing: border-box;
  }
  
  .community_write .input_wrap label em {
    color: var(--color-primary);
    margin: 0 3px;
  }
  .community_write .input_wrap textarea,
  .community_write .input_wrap input {
    width: 90%;
    border-radius: 8px;
    border: 1px solid var(--40001, #a3a3a3);
    padding: 15px 20px;
    box-sizing: border-box;
    color: #262626;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.32px;
  }
  .community_write .input_wrap .note-editor {
    width: 75%;
  }
  .community_write .input_wrap textarea {
    resize: none;
    height: 170px;
  }
  .community_write .input_wrap input:placeholder,
  .community_write .input_wrap textarea:placeholder {
    color: var(--40001, #a3a3a3);
  }
  .community_write .inner:nth-child(2) .input_wrap:first-child {
    margin-bottom: 16px;
  }
  .community_write .free_view {
    position: relative;
    width: 54px;
    height: 54px;
    overflow: hidden;
    cursor: pointer;
    /* margin-right: 10px; */
  }
  .community_write .free_view img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .community_write .file_box input {
    padding: 0;
    border: none;
    display: none;
  }
  .community_write .file_box label {
    cursor: pointer;
    width: 54px;
    padding: 0;
  }
  .community_write .chk_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }
  .community_write .chk_wrap input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: url('/img/sub/community_chk.webp') no-repeat center center / 100%;
    cursor: pointer;
  }
  .community_write .chk_wrap label {
    cursor: pointer;
    color: var(--grayscale-40001, #a3a3a3);
    font-family: Pretendard;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 22.5px */
    letter-spacing: -0.3px;
  }
  
  .community_write .chk {
    padding: 5px 12px;
    display: flex;
    gap: 4px;
    border-radius: 999px;
    border: 1px solid var(--grayscale-40001, #a3a3a3);
    align-items: center;
  }
  .community_write .chk.on {
    border: 1px solid #171717;
  }
  .community_write .chk.on span {
    color: var(--grayscale-900, #171717);
  }
  .community_write .chk.on input {
    background: url('/img/common/ico-checkbox-p.svg') no-repeat center center / 100%;
  }
  .community_write .chk_wrap a {
    color: var(--grayscale-40001, #a3a3a3);
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.28px;
    text-decoration-line: underline;
    text-underline-offset: 21.5%;
  }
  .community_write .write_bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 70px;
  }
  .community_write .write_bottom .btn_board {
    margin: 0;
  }
  .community_write .write_bottom .btn_board:nth-child(2) {
    background: var(--color-primary);
    color: var(--grayscale-00-white, #fff);
    border: 1px solid var(--color-primary);
  }
  .community_write input[type="file"] {
    display: none;
  }
  .community_write .btn_upload {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 54px;
    height: 54px;
    background: #303030;
    transition: background 0.3s ease;
  }
  .community_write .btn_upload i {
    display: block;
    width: 36px;
    height: 36px;
    background: url('/img/common/ico-plus-w.svg') no-repeat center center / 100%;
  }
  .community_write .btn_upload.on {
    background: rgba(0, 0, 0, 0.40);
  }
  .community_write .btn_upload.on i {
    transform: rotate(45deg);
  }
  .community_write .btn_upload + .file-label {
    margin-left: 10px;
    font-size: 16px;
  }

  @media screen and (max-width: 768px) {
    .community_write .tit_wrap h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }
    .community_write .tit_wrap p {
      font-size: 14px;
      letter-spacing: -0.28px;
    }
    .community_write .write_wrap .inner {
      padding: 16px 0;
    }
    .community_write .input_wrap {
      flex-direction: column;
      width: 100%;
    }
    .community_write .input_wrap textarea,
    .community_write .input_wrap input {
      width: 100%;
      font-size: 14px;
      letter-spacing: -0.28px;
    }
    .community_write .input_wrap textarea {
      height: 120px;
    }
    .community_write .write_wrap {
      border-top: 1px solid #333;
      margin-bottom: 46px;
    }
    .community_write .input_wrap label,
    .community_write .input_wrap .label {
      font-size: 14px;
      padding: 0 0 8px;
    }
    .community_write .file_box label {
      display: block;
      width: 44px;
    }
    .community_write .file_view {
      width: 44px;
      height: 44px;
    }
    .community_write .chk_wrap label {
      font-size: 12px;
      letter-spacing: -0.24px;
      padding: 3px 9px;
    }
    .community_write .chk_wrap a {
      font-size: 12px;
    }
    .community_write .free_view {
      width: 44px;
      height: 44px;
    }
    .community_write .input_wrap label, .community_write .input_wrap .label {
        width: 100%;
    }
    .community_write .write_bottom {
      gap: 12px;
      margin-top: 40px;
    }
  }