.news {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    line-height: 1.5;
}

.dateTxt {
    text-align: right;
    color: #555;
}

.news_title {
    margin: 20px 0;
    font-size: 1.5rem;
    color: #E64A19; 
    background-color: #ffffff;
    font-weight: bold;
    text-align: center;
}

.news_subTitle {
    margin: 20px 0;
    font-size: 1.3rem;
    padding: 10px;
    border-left: 5px solid blue;
}

.news_section {
    margin: 20px 0;
    font-size: 1.1rem;
}

.news_txt {
    margin: 20px 0;
    color: #555;
}

@media (max-width: 860px) {
    .news_title {
        font-size: 1.1rem;
    }

    .news_subTitle {
        font-size: 1.1rem;
    }

    .news_section {
        font-size: 1.0rem;
    }

    .news_txt {
        font-size: 0.9rem;
    }
}

.news_img {
    width: 100%;
}