@charset "UTF-8";

.c-news {
    display: block;
    width: 100%;
}

.c-news__date {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1;
    color: #0e3305;
    font-family: "Rallisaguen-B";
    letter-spacing: .5px;
    text-align: right;
    transform-origin: right top;
    transform: translateX(-100%) rotate(-90deg);
}

.c-news__pic {
    display: block;
    width: calc(100% - 30px);
    margin: 0 0 0 auto;
    border-left: 5px solid #1b590c;
}

.c-news__content {
    display: block;
    width: 100%;
    margin: 35px 0 0 0;
}

.c-news__content__title {
    display: block;
    width: 100%;
    font-size: 17px;
    line-height: 1.5;
    color: #151912;
    margin: 0 0 25px 0;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.c-news__content__text {
    display: block;
    width: 100%;
    padding: 0 0 0 60px;
    font-size: 15px;
    line-height: 1.5;
    color: #525151;
    text-align: justify;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.c-news__content__text::before {
    content: '';
    position: absolute;
    top: calc(.25em + 1px);
    left: 0;
    display: block;
    width: 55px;
    height: 1px;
    background: #1b590c;
}

.c-news__link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 991px) {

    .c-news__pic {
        width: calc(100% - 25px);
    }

    .c-news__content {
        margin: 15px 0 0 0;
    }

    .c-news__content__title {
        font-size: 17px;
        margin: 0 0 15px 0;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {
    .c-news__pic {
        width: calc(100% - 20px);
    }

    .c-news__content {
        margin: 10px 0 0 0;
    }

    .c-news__content__title {
        font-size: 15px;
    }

    .c-news__content__text {
        font-size: 14px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}