/* Blog Index Styles */
.blog-index {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: 
        radial-gradient(ellipse at top, rgba(88, 166, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(126, 231, 135, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

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

.blog-index-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-index-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

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

.blog-list-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.blog-list-item:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(126, 231, 135, 0.1);
}

.blog-list-item .blog-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
}

.blog-list-item h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-list-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.blog-list-item .read-more {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.blog-list-item .read-more:hover {
    color: var(--accent-secondary);
}

/* Individual Blog Post Styles */
.blog-post {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: 
        radial-gradient(ellipse at top, rgba(88, 166, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(126, 231, 135, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

.blog-post article {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.post-date {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.post-content {
    margin-bottom: 3rem;
}

.post-content h4 {
    color: var(--accent-primary);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-content h4:first-child {
    margin-top: 0;
}

.post-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.post-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.post-content li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.post-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--accent-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-index-header h1 {
        font-size: 2.25rem;
    }

    .post-header h1 {
        font-size: 1.75rem;
    }

    .blog-list-item {
        padding: 1.5rem;
    }

    .blog-post article {
        padding: 0 1rem;
    }
}
