@media only screen and (min-width:750px) and (max-width: 1920px) {
    .wrapper-head {
        display: flex !important;
        justify-content: flex-end !important;
        padding: 10px 0 30px 0;
    }

    .wrapper-head .news-more {
        font-size: 1.2rem;
        color: #333;
        cursor: pointer;
    }
}

@media only screen and (max-width: 750px) {
    .news-wrapper {
        margin-top: 15px;
    }

    .news-list .head {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .news-list .title {
        position: relative;
        /* font-size: 2rem; */
        font-size: 1.4rem;
        text-align: center;
        padding: 0px 0 20px 0;
        margin-top: 20px;
        font-weight: bold;
    }

    .news-list .title::after {
        position: absolute;
        content: ' ';
        left: 0px;
        bottom: 10px;
        width: 100%;
        height: 3px;
        background-color: #eb6100;
    }

    .news-more {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-size: 1.1rem;
        color: #333;
        margin-top: 5px;
        padding: 10px 0;
        height: 30px;
        text-decoration: underline;
        text-underline-offset: 5px;
    }
}