/* Blog Styles */
.blog-page,
.blog-post {
    min-height: 100vh;
}

/* Blog Grid */
.blog-container {
    padding: 3rem 0 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.blog-card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.blog-card-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.blog-card-cta {
    color: #667eea;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Post */
.blog-post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #888;
    margin-top: 1rem;
}

.blog-content {
    padding: 3rem 0 5rem;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-article {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-article h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.blog-article h3 {
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-article p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-article ul,
.blog-article ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
}

.blog-article strong {
    color: #2c3e50;
    font-weight: 600;
}

.blog-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.blog-cta h3 {
    color: white !important;
    margin-top: 0;
}

.blog-cta p {
    color: rgba(255,255,255,0.9) !important;
}

.blog-cta .help-text {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.blog-tips,
.blog-educational {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.sidebar-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-actions .btn-outline,
.sidebar-actions .btn-secondary {
    width: 100%;
    text-align: center;
}

.word-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.word-tag {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.sidebar-list {
    color: #555;
    padding-left: 1.25rem;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .blog-post-emoji {
        font-size: 3rem;
    }
}
