/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .sidebar {
        min-width: unset;
        width: 100%;
        max-width: 650px;
        position: static;
        padding: 1.2rem 1.5rem;
    }
    
    .sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .sidebar li {
        margin-bottom: 0;
        flex: 1 0 auto;
    }
    
    .sidebar a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .sidebar a.active::before {
        display: none;
    }
    
    .sidebar a.active {
        background: rgba(124, 58, 237, 0.15);
    }
    
    .badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    
    
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-header {
        flex-wrap: wrap;
    }
    
    .blog-post-header .date {
        margin-right: 0.5rem;
        font-size: 0.6rem;
    }
}

@media (max-width: 500px) {
    
    
    
    .sidebar ul {
        flex-direction: column;
    }
    
    .sidebar a {
        justify-content: flex-start;
    }
    
    .blog-post-header h3 {
        font-size: 0.85rem;
    }
    
    .footer-section .links a {
        padding: 0;
        font-size: 1.8rem;
    }
}
