.blog-hero {
    padding: 8rem 0 4rem;
    text-align: left;
}
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border-glass));
}
.view-toggle {
    display: flex;
    gap: 1rem;
}
.toggle-btn {
    background: none;
    border: none;
    color: hsl(var(--muted-foreground));
    font-family: 'Geist Mono', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}
.toggle-btn.active {
    color: hsl(var(--primary));
    border-bottom: 2px solid hsl(var(--primary));
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
.blog-card {
    background-color: hsl(var(--surface-glass));
    border: 1px solid hsl(var(--border-glass));
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: hsl(var(--border-glass-hover));
    transform: translateY(-5px);
    box-shadow: 0 0 30px hsla(var(--glow-accent) / 0.1);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid hsl(var(--border-glass));
}
.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
}
.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-family: 'Geist Mono', monospace;
    font-size: 0.7rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}
.blog-category {
    color: hsl(var(--primary));
}
.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: none;
}

/* List View Styles */
.blog-grid.list-view {
    grid-template-columns: 1fr;
}
.blog-grid.list-view .blog-card {
    flex-direction: row;
    height: 250px;
}
.blog-grid.list-view .blog-card img {
    width: 40%;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid hsl(var(--border-glass));
}

@media (max-width: 768px) {
    .blog-grid.list-view .blog-card {
        flex-direction: column;
        height: auto;
    }
    .blog-grid.list-view .blog-card img {
        width: 100%;
        height: 200px;
    }
}

/* Blog Post Template Styles */
.post-header {
    padding: 8rem 0 2rem;
    border-bottom: 1px solid hsl(var(--border-glass));
    margin-bottom: 4rem;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content h2 {
    margin: 3rem 0 1.5rem;
    color: #fff;
    font-family: 'Camera Font', sans-serif; /* Assuming this is the title font */
    text-transform: none;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
}

.post-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border-glass));
    margin: 2rem 0;
}

blockquote {
    border-left: 4px solid hsl(var(--primary));
    padding: 1rem 2rem;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.25rem;
    background: hsla(var(--primary) / 0.05);
    color: #fff;
}
