@media screen and (min-width: 1200px) {

/* 테이블을 감싸는 외곽 박스 스타일 */
.detail-table-wrap {
    border: 1px solid #DCE3ED;
    border-radius: 10px;
    padding: 20px;
}

/* DETAIL 페이지 전용 테이블 */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
    margin-bottom: 50px;
    border-top: 1px solid #DCE3ED;
}

/* TH 영역 */
.detail-table th {
    width: 150px;
    text-align: left;
    padding: 15px;
    background-color: #F2F5FA;
    font-weight: 600;
    vertical-align: top;
    border-bottom: 1px solid #DCE3ED;
}

/* TD 영역 */
.detail-table td {
    padding: 15px;
    border-bottom: 1px solid #DCE3ED;
    vertical-align: top;
}

/* 파일 목록 스타일 */
.detail-table ul {
    margin: 0;
    padding-left: 20px;
}

.detail-table li {
    list-style-type: disc;
    margin-bottom: 5px;
}

/* 제목 스타일 */
.detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* 본문 스타일 */
.detail-body {
    margin-bottom: 100px;
    line-height: 1.8;
    font-size: 1rem;
    min-height: 70vh;
}

/* 첨부파일 박스 (PROJECT/OTHERS용) */
.detail-files {
    margin-top: 20px;
    font-size: 0.95rem;
}
.detail-files ul {
    margin-top: 10px;
    padding-left: 20px;
}
.detail-files li {
    list-style-type: disc;
    margin-bottom: 5px;
}

.content-body h1{
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 700;
}

/* */
/* 제목 스타일 */
.bbs-title {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    line-height: 140%;
    font-weight: 700;
    padding: 0 0 15px;
    word-break: break-word;
    font-size: 22px;
    color: #222;
}

/* 작성자 / 작성일 / 조회수 / 첨부파일 리스트 */
.bbs-info {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 20px;
    min-width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    position: relative;
    gap: 20px 30px; /* 항목 간격 */
}

.bbs-info li {
    display: flex;
    align-items: center;
    position: relative;
}

.bbs-info .bbs-info-label {
    margin-right: 10px;
    font-weight: 500;
    color: #000;
}

.bbs-info li span {
    display: inline-block;
    color: #666;
    font-size: 0.95rem;
}

.bbs-info li ~ li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #d6d6d6;
}

/* 본문 내용 영역 */
.bbs-contents {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    word-break: break-word;
    padding-bottom: 200px;
    border-bottom: 1px solid #ccc;
}

.bbs-contents p {
    margin: 0 0 1em;
    line-height: 1.7;
}

.bbs-contents img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

.bbs-contents a {
    color: #0066cc;
    text-decoration: underline;
}

#slide-axis-x {
    position: relative;
    height: 50vh;
    margin-top: 50px;
    padding-bottom: 80px;
}

.bbs-slide .slide {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slide-group {
    position: relative;
    height: 100%;
    transition: left 0.5s ease-in-out;
}

.slide-item {
    float: left;
    background-color: #eee;
    height: 100%;
}

.item-block {
    display: block;
    height: 100%;
    text-align: center;
    background-color: #f9f9f9;
    color: #333;
}

.slide-dir {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.slide-dir button {
    background-color: #F5F7FA;
}

.slide-page {
    text-align: center;
    margin-top: 10px;
}

.slide-page-number {
    margin: 0 3px;
    cursor: pointer;
    background-color: #F5F7FA;
}

.slide-page-number.ov {
    font-weight: bold;
}

.back_btn_wrap {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

.back_btn {
    height: 30px;
    min-width: 100px;
    padding: 0 15px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #0a52a7;
    border-radius: 5px;
}

}