/* app.post.layoout.css */
:root {
    --post-list-title-fg:#004c8d;
    --post-list-subtitle-fg:#a5a5a5;
    --post-list-meta-fg: #868686;
    --page-banner-bg: #f0f0f0;
    --page-banner-fg: #646464;
}

.post-list-item-container {
    border-bottom: var(--border-default);
    display: grid;
    column-gap: 16px;
    grid-template-columns: auto 160px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.post-list-item-title, .post-list-item-title a,
.post-list-item-title-featured, .post-list-item-title-featured a {
    color: var(--post-list-title-fg);
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 4px;
    text-decoration: none;
}

.post-list-item-title-featured, .post-list-item-title-featured a {
    font-size: 28px;
    line-height: 32px;
}

.post-list-item-subtitle, .post-list-item-subtitle a {
    color: var(--post-list-subtitle-fg);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 3px;
    text-decoration: none;
}

.post-list-item-meta, .post-list-item-meta a {
    color: var(--post-list-meta-fg);
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
}

.post-list-item-img {
    border-radius: 3px;
    max-width: 100%;
}
span.line-divider {
    color: var(--post-list-title-fg);
    font-size: 16px;
    margin: 0 2px;
}