.news-info {
    position: absolute;
    left: -17px;
    background-color: #95d8ff;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Sidebar Kategori */
.category-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.category-title {
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    margin-bottom: 12px;
}

.category-link {
    display: block;
    padding: 8px 15px;
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover,
.category-link.active {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsif */
@media (max-width: 991.98px) {
    .category-sidebar {
        margin-top: 50px;
        position: static;
    }
}