.fetch-news-list {
    display: block;
    width: 100%;
    padding: 0;
}

.fetch-news-list ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    margin-bottom: 10px;
}

.fetch-news-list ul li {
    display: block;
}


.fetch-news-list ul li a {
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    gap: 10px;
    text-decoration: none;
    font-weight: bold !important;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
    color: #D45154;
}

.fetch-news-list ul li a time {
    font-size: 0.7em;
    color: #222;
}

.fetch-news-list ul li a .excerpt {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    font-size: 0.8em;
    color: #222;
    line-height: 1.4;
}