/* Blog Styles for akuraia.id */
.blog-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-post-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.blog-post-card:hover {
    border-color: rgba(168,85,247,0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(168,85,247,0.08);
}
.blog-post-card .meta {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.blog-post-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-post-card h3 a:hover {
    color: #a855f7;
}
.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}
.blog-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; color: #fff; }
.blog-content h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; color: #fff; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content ul, .blog-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; }
.blog-content blockquote {
    border-left: 3px solid #a855f7;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(168,85,247,0.05);
    border-radius: 0 12px 12px 0;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}
.blog-content code {
    background: rgba(255,255,255,0.05);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}
.blog-content pre {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.blog-content a { color: #a855f7; text-decoration: underline; }
.blog-content a:hover { color: #c084fc; }
.blog-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}
