

.nws_pgn_box {
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.nws_art_title {
    color: #1b1b1b;
}

.nws_art_img_box {
    width: 800px;
    height: 450px;
    margin: 30px auto;
}

.nws_art_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nws_art_content p {
    font-size: 18px;
    line-height: 30px;
    color: #333;
    margin-top: 12px;
}

.nws_art_content ul {
    list-style: disc;
    padding-left: 20px;
}

.nws_art_content ul li {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin-top: 10px;
}

.nws_art_content ul li ul {
    list-style: circle;
    padding-left: 20px;
}


.nws_date_box {
    display: flex;
}

.nws_dtl_date {
    margin-top: 15px;
    font-size: 20px;
    color: #555;
}

.nws_art_content h1,
.nws_art_content h2,
.nws_art_content h3 {
    font-size: 20px;
    margin-top: 10px;
}

.breadcrumb {
    padding: 40px 0 10px 0;
}

.nws_dtl_card {
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px dashed #ccc;
    cursor: pointer;
}

.nws_dtl_describe {
    flex: 1;
}

.nws_dtl_describe h2 {
    font-size: 24px;
    color: #2b2b2b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 15px;
    font-weight: bold;
}

.nws_describe_content {
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 26px;
    margin-top: 15px;

}

.nws_dtl_img {
    width: 330px;
    height: 190px;
}

.nws_dtl_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 767px) {

    .nws_box {
        padding: 15px;
        box-sizing: border-box;
        margin-top: 0px;
    }

    .nws_art_img_box {
        width: 100%;
        height: 250px;
        margin: 15px auto;
    }

    .nws_art_content p {
        font-size: 15px;
        line-height: 26px;
        margin-top: 15px;
    }

    .nws_pgn_box {
        margin-top: 5px;
    }

    .breadcrumb {
        padding: 20px 15px 0 15px;
    }

    .nws_dtl_card {
        padding: 10px 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .nws_box {
        justify-content: center;
    }
}