/* Conteneur Grille pour la page complète */
.blog-full-posts-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Espace entre les articles */
}

/* Carte Article version large */
.blog-full-post {
    display: flex;
    /* Format paysage : Image à gauche, texte à droite */
    flex-direction: column;
    /* Mobile first */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-full-post:hover {
    transform: translateY(-5px);
}

.blog-full-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-full-post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-full-post h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.link-title {
    text-decoration: none;
    color: inherit;
}

.blog-full-post .meta {
    color: var(--base-color-high);
    margin-bottom: 16px;
    opacity: 75%;
}

.blog-full-post .excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Desktop : Image à gauche, Texte à droite */
@media (min-width: 768px) {
    .blog-full-post {
        flex-direction: row;
        min-height: 300px;
    }

    .blog-full-post .blog-post-image-link {
        width: 45%;
        /* Largeur de l'image */
        flex-shrink: 0;
    }

    .blog-full-post img {
        height: 100%;
        min-height: 300px;
    }

    .blog-full-post-content {
        width: 55%;
        padding: 40px 80px;
        min-height: 400px;
    }
}