/* Blog Detail Page CSS */

.blog-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    color: #ffd60a;
    font-weight: 600;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-featured-image {
    width: 100%;
    border-radius: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #000;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #000;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
}

.blog-content blockquote {
    border-right: 4px solid #ffd60a;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8f9fa;
    border-radius: 1rem;
    font-style: italic;
}

.blog-content img {
    max-width: 100%;
    border-radius: 1.5rem;
    margin: 2rem 0;
}

.blog-author-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd60a, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.author-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #6c757d;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffd60a;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 3rem;
}

.back-to-blog:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-container {
        padding: 2rem 1rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-author-section {
        flex-direction: column;
        text-align: center;
    }
}