/* ================================================
   CORRECTIONS PAGE TRICKS - CHARTE ZAHRA TV
   ================================================ */

/* Image principale du trick - TAILLE MOYENNE */
.blog-img {
    width: 70%;
    max-width: 700px;
    margin: 30px auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.blog-img img {
    width: 100% !important;
    height: auto !important;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Titre du trick */
.post-name a {
    color: var(--zahra-vert-fonce);
    font-weight: 700;
}

.post-name a:hover {
    color: var(--zahra-dore-profond);
}

/* Métadonnées */
.post-metas .icon {
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 0 5px;
    border-left: 2px solid var(--zahra-dore-clair);
    font-size: 13px;
}

.post-metas .icon i {
    color: var(--zahra-vert-moyen);
    margin-left: 5px;
}

/* Contenu article */
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
}

.article-content p {
    margin-bottom: 15px;
}

/* Tags */
.topic-tags {
    margin: 30px 0;
    padding: 20px;
    background: #f0f9f6;
    border-radius: 8px;
    border-left: 4px solid var(--zahra-dore-clair);
}

.topic-tags li a {
    background: linear-gradient(135deg, var(--zahra-vert-moyen), var(--zahra-vert-fonce));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.topic-tags li a:hover {
    background: linear-gradient(135deg, var(--zahra-dore-clair), var(--zahra-dore-profond));
    color: var(--zahra-vert-fonce);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(227, 193, 102, 0.4);
}

/* Responsive mobile */
@media (max-width: 767px) {
    .blog-img {
        width: 90%;
        margin: 20px auto;
    }
    
    .blog-img img {
        max-height: 350px;
    }
    
    .post-metas {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .post-metas .icon {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .article-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 479px) {
    .blog-img img {
        max-height: 300px;
    }
    
    .post-metas .icon {
        font-size: 10px;
        padding: 5px 8px;
        margin: 0 3px;
    }
}

