/* Stylish list for sidebar articles */
.sidebar-articles-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.sidebar-articles-list li {
    margin-bottom: 0.5rem;
}
.sidebar-articles-list a {
    display: block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.sidebar-articles-list a:hover, .sidebar-articles-list a:focus {
    background: #007bff;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.10);
    text-decoration: none;
}
.sidebar-articles-list .article-date {
    font-size: 0.85em;
    color: #6c757d;
    margin-left: 0.5em;
}
