/* ===== STYLES SPÉCIFIQUES À LA PAGE ARTICLE ===== */

.blog-article {
    max-width: 820px;
    margin: 0 auto;
}

.blog-article h1 {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.blog-article .featured-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-article .byline {
    color: #8A8A9A;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-article .byline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-article .byline i {
    color: #A855F7;
    width: 18px;
}

.blog-article .content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #D0D0E0;
    margin-bottom: 1.5rem;
}

.blog-article .content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #FFFFFF;
}

.blog-article .content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: #FFFFFF;
}

.blog-article .content blockquote {
    border-left: 3px solid #A855F7;
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #B0B0C8;
    background: rgba(168, 85, 247, 0.03);
    border-radius: 0 8px 8px 0;
}

.blog-article .content blockquote p {
    margin-bottom: 0;
}

.blog-article .content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: #D0D0E0;
}

.blog-article .content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.blog-article .content .highlight-box {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-article .content .highlight-box strong {
    color: #A855F7;
}

.post-card .post-content p{
    border-bottom: 1px solid rgba(169, 85, 247, 0.268);
    padding-bottom:40px!important;
    margin-bottom:20px!important;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #8A8A9A;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-link:hover {
    color: #A855F7;
    transform: translateX(-4px);
}

.share-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.06);
}

.share-bar span {
    color: #8A8A9A;
    font-weight: 500;
    font-size: 0.9rem;
}

.share-bar a {
    color: #8A8A9A;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.share-bar a:hover {
    color: #A855F7;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-article h1 {
        font-size: 1.8rem;
    }
    .blog-article .featured-image {
        height: 220px;
    }
    .blog-article .byline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .blog-article .content p {
        font-size: 1rem;
    }
    .blog-article .content h2 {
        font-size: 1.4rem;
    }
}
