.blog-container {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.post-content h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

.post-content h2 a:hover {
    color: var(--accent-color);
}

.post-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-profile img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-categories {
    text-align: center;
    margin-top: 4rem;
}

.blog-categories h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.category-tag:hover {
    background: var(--accent-color);
    color: white;
}

.category-tag.active {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    .blog-container {
        padding: 2rem 0;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .post-image {
        height: 200px;
    }
} 