article {
    padding: 30px 10%;
    background-color: #f8f8f8;
    font-size: 2.8rem;
    color: var(--blue);
}

main {
    padding: 30px 10%;
    font-size: 1.8rem;
}

.news {
    /* margin-bottom: 20px; */
    display: flex;
    align-items: center;
    height: 120px;
    overflow: hidden;
}

.news > img {
    width: 20%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    margin-right: 20px;
    cursor: pointer;
}

.news > .news-title {
    flex-grow: 1;
    padding: 15px 0;
}
.news > .news-title > .news-title-text {
    font-size: 2.4rem;
    cursor: pointer;
    /* color: var(--blue); */
}
.news > .news-title > .news-title-date {
    text-align: right;
    font-size: 1.6rem;
    color: #666;
    font-style: italic;
}

hr.line {
    border: 1px solid #ccc;
    /* height: 1px;
    background-color: #ccc; */
    margin: 10px -5px;
}