/*************** overview 시작 ********************/

.news_overview > h2 {
    font-size: 2rem;
    color: #0c3e72;
    text-align: center;
    text-shadow: 2px 2px 2px #ced8e3;
    margin-bottom: 20px;
}
.news_overview_wrap {
    width: 80%;
    margin: 0 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.news_overview .article {
    flex: 0 0 20%;
    padding: 10px 10px 30px 10px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid #ced8e3;
}
.news_overview .article > h3 {
    text-align: center;
    color: #0c3e72;
}
.news_overview .article p {
    margin-top: 20px;
}

.news_overview .article:hover {
    box-shadow: 2px 2px 10px #000;
}


/*********************  overview 끝 *******************/

/***************** news 시작 ********************/
.news {
   padding: 20px 0;
}
.news h2{
    text-align: center;
    font-size: 2rem;
    color: #e58426;
    margin-bottom: 40px;
}
.news_article p>a{
    border: 1px solid #e58426;
    color: #000;
    padding: 5px
}
.news_article p > a:hover{
    box-shadow: 2px 2px 5px #c16101;
}
.news_content {
    display: none;
    width: 80%;
    margin: 20px 10%;
    padding: 20px;
    border: 1px solid #e58426;
}
.news_content p, .news_content h3{
    text-align: justify;
}
.news_content h3{
    display: inline-block;
    color: #e58426;
    padding-bottom: 5px;
    border-bottom: 1px solid #e58426;
    margin-bottom: 15px;
}
/* .news .article {
    width: 80%;
    margin: 10px 10%;
    overflow: hidden;
}
.news .article img{
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}
.news .article h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.news .article p {
    color: #000;
    background-color: rgba(255,255,255,.7);
    padding: 10px;
    font-size: 1.1rem;
} */
.news_table {
    width: 80%;
    margin: 0 10%;
}

.news_table tr th{
    background-color: #e58426;
    border-right: 1px solid #fff;
    padding: 10px;
    font-size: 1.1rem;
}
.news_table tr th:last-child{
    border-right: 0;
}
.news_table tr td{
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid #e58426;
    border-right: 1px solid #e58426;
    padding: 10px;
}
.news_table tr td:last-child{
    border-right: 0;
}
.news_table tr td:nth-child(2){
    text-align: start;
    padding-left: 10px;
    width: 40%;
    word-break: keep-all;
    overflow: hidden;
}
.page_number_box {
    margin-top: 20px;
}
.page_number_box > #page_number {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#page_number > li {
    margin-left: 20px;
}
#page_number > li:hover{
    cursor: pointer;
}
@media only screen and (max-width: 530px){
    .news_table{
        width: 100%;
        margin: 0;
    }
    #page_number > li {
        margin-left: 44px;
    }
}

/***************** news 끝 ********************/

/* .darker_footer {
    background: #e58426;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */
