#background-canvas {
    position: fixed;
    top: 30%;
    left: 0;
    z-index: -1;
}

.content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5%;
    padding: 0 20px;
    gap: 40px;
}

.blog-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 200px;
    align-self: flex-start;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.sidebar-link {
    display: block;
    padding: 8px 0;
    color: #888f8d;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 10px;
}

.sidebar-link:hover {
    color: #45a049;
    border-left-color: #45a049;
    padding-left: 18px;
}

.sidebar-link.active {
    color: #45a049;
    border-left-color: #45a049;
    font-weight: 500;
}

.blog-main {
    flex: 1;
    min-width: 0;
}

.blog-list {
    margin-top: 40px;
}

.blog-entry {
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-entry:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #cccaca;
}

.blog-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.blog-entry-title {
    font-size: 28px;
    font-weight: 300;
    color: #666666;
    margin: 0;
    transition: color 0.3s ease;
}

.blog-entry:hover .blog-entry-title {
    color: #45a049;
}

.blog-entry-date {
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    margin-left: 20px;
}

.blog-entry-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #888f8d;
    margin: 10px 0 0 0;
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        max-width: 95%;
        padding: 0 15px;
    }

    .blog-sidebar {
        width: 100%;
        position: static;
        order: -1;
    }

    .sidebar-section {
        margin-bottom: 20px;
    }

    .blog-entry {
        padding: 20px;
    }

    .blog-entry-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-entry-date {
        margin-left: 0;
        margin-top: 5px;
    }

    .blog-entry-title {
        font-size: 18px;
    }

}