/* =========================================================================
   BLOG SIDEBAR COMPONENT (template-parts/blog-sidebar.php)
   Architecture: Isolated Sticky Widget Component with Design Tokens
   ========================================================================= */

.blog-sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 10px;
    padding: 24px;
    position: sticky;
    top: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark, #0f172a);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--text-dark, #0f172a);
    letter-spacing: -0.5px;
}

.sidebar-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-post-item {
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-muted, #334155);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s ease, transform 0.15s ease;
}

.sidebar-post-link:hover {
    color: var(--fogya-red, #cc0e0e);
    transform: translateX(4px);
}

.link-arrow {
    font-weight: bold;
    margin-right: 10px;
    color: #94a3b8;
    font-size: 16px;
}

.sidebar-post-link:hover .link-arrow {
    color: var(--fogya-red, #cc0e0e);
}