/*Compuware/News detail*/
/* =========================== Desktop =========================== */
.news_box {
    background: rgba(255, 255, 255, 0.7);
    padding: 3em;
}

.NEWS_title {
    font-size: 24px;
    line-height: 1.5em;
    color: #111;
    margin-bottom: 1.2rem;
    border-left: 5px solid #004098;
    padding-left: 10px;
}

.NEWS_img_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: auto;
    margin: 3rem auto;
}

.NEWS_img {
    width: 100%;
    height: auto;
}

.NEWS_date {
    color: #777;
}

.NEWS_text {
    margin-bottom: 2rem;
}

.NEWS_text P,
.NEWS_text UL,
.NEWS_text OL {
    margin-bottom: 2rem;
    text-align: justify;
}

.NEWS_text P:has(+ ul),
.NEWS_text P:has(+ ol) {
    margin-bottom: 1rem;
}

.NEWS_text P:last-of-type {
    margin-bottom: 0;
}

.NEWS_text UL,
.NEWS_text OL {
    padding-left: 2em;
}

.NEWS_text li {
    margin-bottom: 1em;
}

.NEWS_text li:last-of-type {
    margin-bottom: 0;
}

.NEWS_text a {
    color: #004098;
}

.NEWS_text a:hover {
    color: #004098;
    text-decoration: underline;
}

.news_contact {
    display: block;
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #555;
    line-height: 1.8rem;
    border-top: 1px solid #686868;
    padding-top: 2rem;
}

.news_contact p,
.news_contact a {
    margin-left: 0;
}

.news_contact a {
    color: #004098;
}

.news_contact a:hover {
    color: #004098;
    text-decoration: underline;
}

.news_contact .news_name {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.aboutCPW {
    background: #ffffff33;
    padding: 1.5em 2em;
    border-radius: 8px;
    margin: 4em 0 3em;
}

.aboutCPW h2 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: .6em;
}

.aboutCPW h2::before {
    content: "■";
    font-size: 1.5em;
    color: #004098;
    margin-right: 0.3em;
}


/* =========================== iPad =========================== */

@media screen and (min-width: 768px) and (max-width: 1050px) {

    .NEWS_img_box {
        margin: 1.8rem auto;
    }

    .NEWS_text a {
        text-decoration: none;
    }

    .news_contact {
        font-size: 14px;
        line-height: 1.6rem;
    }

    .news_contact a {
        text-decoration: none;
    }

    .news_contact .news_name {
        font-size: 18px;
    }
}


/* =========================== Mobile =========================== */
@media screen and (max-width: 767px) {
    .news_box {
        padding: 1em;
    }

    .NEWS_title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .NEWS_img_box {
        width: 100%;
        height: auto;
        margin: 1rem auto;
    }

    .NEWS_img {
        margin-bottom: 0px;
    }

    .NEWS_text {
        margin-bottom: 1rem;
    }

    .news_contact {
        font-size: 1rem;
        line-height: 1.5rem;
        padding-top: 1rem;
    }

    .news_contact p {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .news_contact a {
        margin-left: 0px;
        word-break: break-all;
    }

    .news_contact .news_name {
        font-size: 18px;
    }
}