/* 공지사항 상세보기 스타일 */
.board_view {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.board_view__header {
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.board_view__title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.board_view__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.board_view__date {
    display: flex;
    align-items: center;
}

.board_view__date::before {
    content: "";
    margin-right: 0px;
}

.board_view__views {
    display: flex;
    align-items: center;
}

.board_view__views::before {
    content: "";
    margin-right: 0px;
}

.board_view__content {
    padding: 30px;
    line-height: 1.8;
    color: #333;
    min-height: 200px;
}

.board_view__content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.board_view__content p {
    margin: 0 0 15px 0;
}

.board_view__content h1,
.board_view__content h2,
.board_view__content h3,
.board_view__content h4,
.board_view__content h5,
.board_view__content h6 {
    margin: 20px 0 10px 0;
    color: #333;
}

.board_view__attachments {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 20px;
}

.board_view__attachments h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex-shrink: 0;
}

.attachment_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.attachment_list li {
    margin: 0;
}

.attachment_list a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease;
}

.attachment_list a:hover {
    background: #f0f0f0;
    border-color: #bbb;
}

.attachment_icon::before {
    content: "📎";
    margin-right: 6px;
}

.board_view__buttons {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn__secondary {
    background: #6b53d3;
    color: #fff;
}

.btn__secondary:hover {
    background: #6b53d3;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .board_view__header {
        padding: 20px;
    }
    
    .board_view__title {
        font-size: 20px;
    }
    
    .board_view__info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .board_view__content {
        padding: 20px;
    }
    
    .board_view__attachments {
        padding: 15px 20px;
    }
    
    .board_view__buttons {
        padding: 15px 20px;
    }
}
