/* blog.css */
:root {
    --blog-max-width: 900px;
}

.blog-hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.blog-container {
    max-width: var(--blog-max-width);
    margin: 60px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blog-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.blog-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin: 50px 0 24px;
}

.blog-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 32px 0 16px;
}

.blog-content p {
    margin-bottom: 24px;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-cta {
    background: linear-gradient(135deg, var(--primary), #00b8d4);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 80px 0;
    color: #000;
}

.blog-cta h2 {
    color: #000 !important;
    margin-top: 0 !important;
}

.blog-cta-btn {
    display: inline-block;
    background: #000;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.blog-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background: #111;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    .blog-hero {
        height: 250px;
    }
}
