.news_box {
    margin-bottom: 15px;
}

.news_date_category_box {
    display: felx;
    font-size: 0.8rem;
}

.news_date_category_box p {
    margin-bottom: 10px;
}

.news_box h3 {
    font-size: 1.3rem;
}

#body_container {
    position: relative;
}

#news_detail {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 100px);
    height: calc(100vh - 100px);
    background-color: #d3d3d3;
    color: black;
    z-index: 30;
    display: none;
}

#news_detail_content {
    white-space: pre-wrap;
    word-wrap: break-word;
}

@media (max-width: 1000px) {
    #news_detail {
        width: calc(100vw - 50px);
        height: calc(100vh - 50px);
    }
}