.widget {
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fcfcfc;
}

.widget .widget-title, .widget .section-title {
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #13AE6F;
}

.widget-list .recommended-article-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease-in-out;
}

.widget-list .recommended-article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recommended-image-container {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 1rem;
}

.recommended-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommended-article-item:hover .recommended-image-container img {
    transform: scale(1.1);
}

.recommended-text h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #333;
    line-height: 1.3;
}

.recommended-text p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 500;
}

.category-list li a:hover {
    background-color: #13AE6F;
    color: #fff;
}

.category-list .category-icon {
    margin-right: 0.75rem;
    opacity: 0.8;
}

.category-list .category-name {
    flex-grow: 1;
}

.category-list .category-count {
    background-color: #e9ecef;
    color: #495057;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.category-list li a:hover .category-count {
    background-color: #fff;
    color: #13AE6F;
}