/**
 * Post listings
 *
 * Front page cards, blog index, categories, archives and search results.
 */
.news-item {
    margin-bottom: 12px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #8c99a6;
    box-shadow: inset 0 0 0 2px #edf1f4;
}

.news-item::after {
    display: block;
    clear: both;
    content: "";
}

.news-item h2 {
    margin: 0 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.news-meta {
    margin-bottom: 8px;
    color: #555555;
    font-family: "Courier New", monospace;
    font-size: 11px;
}

.news-image {
    float: left;
    width: 145px;
    height: 95px;
    margin: 0 10px 7px 0;
    background: #dae4ed;
    border: 4px double #405b75;
    object-fit: cover;
}

.entry-summary {
    line-height: 1.55;
}

.read-more {
    font-weight: 700;
}

.archive-description,
.front-intro .panel-body {
    margin-bottom: 10px;
    background: #ffffff;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.archive-grid .news-image {
    float: none;
    width: 100%;
    height: 150px;
    margin: 0 0 8px;
}
