/** widgets/post/post-list — 색은 변수로만 노출한다. */
.w-post-list {
    --w-post-list-fg:     var(--site-text, #1f2937);
    --w-post-list-muted:  var(--site-muted, #6b7280);
    --w-post-list-border: var(--site-border, #e5e7eb);
}

.w-post-list__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--w-post-list-border);
    margin-bottom: 0.25rem;
}

.w-post-list__title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--w-post-list-fg);
}

.w-post-list__empty {
    padding: 2.5rem 1rem;
    text-align: center;
    color: var(--w-post-list-muted);
    font-size: 0.875rem;
}

.w-post-list__count {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--w-post-list-muted);
    margin-left: 0.25rem;
}
