/* ========================================================================
   SIDEBAR CATEGORY POSTS WIDGET
   ======================================================================== */

/* Sidebar widget container */
.category-posts-sidebar-widget {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Widget title (category name) */
.category-posts-sidebar-widget .widget-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 600;
    color: #2c5f5f;
    border-bottom: 3px solid #2c5f5f;
    padding-bottom: 12px;
}

/* Posts list */
.category-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual post items */
.category-posts-list li {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.category-posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Post links */
.category-posts-list li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.category-posts-list li a:hover {
    color: #2c5f5f;
    padding-left: 5px;
}

/* Current post highlighting */
.category-posts-list li.current-post {
    background: linear-gradient(to right, #e8f4f4, transparent);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 14px;
    border-radius: 6px;
    border-left: 4px solid #2c5f5f;
}

.category-posts-list li.current-post a {
    font-weight: 700;
    color: #2c5f5f;
}

/* Add indicator for current post */
.category-posts-list li.current-post a:before {
    content: "▸";
    font-size: 0.8em;
    margin-right: 5px;
}

/* ========================================================================
   RESPONSIVE - MOBILE
   ======================================================================== */

@media (max-width: 768px) {
    .category-posts-sidebar-widget {
        padding: 20px;
    }
    
    .category-posts-list li.current-post {
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */

@media print {
    .category-posts-sidebar-widget {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}
