
            /* Style pour le shortcode des publications récentes */
            .pubpro-recent-posts-container {
                margin: 30px 0;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
            }
            
            /* Styles pour la grille d'articles */
            .pubpro-posts-grid {
                display: grid;
                grid-gap: 30px;
                margin-bottom: 30px;
            }
            
            /* Définition des colonnes */
            .pubpro-column-1 {
                grid-template-columns: 1fr;
            }
            
            .pubpro-column-2 {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pubpro-column-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            
            /* Responsivité pour les mobiles */
            @media (max-width: 768px) {
                .pubpro-column-2, .pubpro-column-3 {
                    grid-template-columns: 1fr;
                }
            }
            
            /* Style pour chaque élément d'article */
            .pubpro-post-item {
                background-color: #fff;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                position: relative;
            }
            
            .pubpro-post-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            }
            
            .pubpro-post-inner {
                height: 100%;
                display: flex;
                flex-direction: column;
            }
            
            /* Style pour la vignette */
            .pubpro-post-thumbnail {
                position: relative;
                overflow: hidden;
                padding-bottom: 56.25%; /* Ratio 16:9 */
                height: 0;
            }
            
            .pubpro-post-thumbnail img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }
            
            .pubpro-post-item:hover .pubpro-post-thumbnail img {
                transform: scale(1.05);
            }
            
            .pubpro-no-image {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: #f0f0f0;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .pubpro-no-image:after {
                content: '\1F4F7';
                font-size: 2rem;
                color: #aaa;
            }
            
            /* Indicateur de statut pour les articles protégés/privés */
            .pubpro-post-status {
                position: absolute;
                top: 10px;
                right: 10px;
                font-size: 12px;
                padding: 4px 8px;
                border-radius: 4px;
                color: white;
                font-weight: 600;
                z-index: 10;
            }
            
            .pubpro-protected {
                background-color: #ff9800;
            }
            
            .pubpro-private {
                background-color: #f44336;
            }
            
            /* Style pour le contenu de l'article */
            .pubpro-post-content {
                padding: 20px;
                display: flex;
                flex-direction: column;
                flex-grow: 1;
            }
            
            .pubpro-post-title {
                margin-top: 0;
                margin-bottom: 10px;
                font-size: 1.4rem;
                line-height: 1.3;
                font-weight: 600;
            }
            
            .pubpro-post-title a {
                color: #333;
                text-decoration: none;
                transition: color 0.2s ease;
            }
            
            .pubpro-post-title a:hover {
                color: #0073aa;
            }
            
            /* Style pour les méta-données */
            .pubpro-post-meta {
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                font-size: 0.85rem;
                color: #666;
                margin-bottom: 15px;
            }
            
            .pubpro-post-date, .pubpro-post-author {
                display: flex;
                align-items: center;
            }
            
            /* Icônes pour les méta-données */
            .pubpro-icon-calendar:before {
                content: '\1F4C5';
                margin-right: 5px;
            }
            
            .pubpro-icon-user:before {
                content: '\1F464';
                margin-right: 5px;
            }
            
            /* Style pour l'extrait */
            .pubpro-post-excerpt {
                font-size: 0.95rem;
                line-height: 1.6;
                color: #555;
                margin-bottom: 15px;
                flex-grow: 1;
            }
            
            /* Style pour le lien "Lire la suite" */
            .pubpro-post-readmore {
                text-align: right;
                margin-top: auto;
            }
            
            .pubpro-post-readmore a {
                display: inline-block;
                color: #0073aa;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.9rem;
                transition: color 0.2s ease;
                position: relative;
                padding-right: 20px;
            }
            
            .pubpro-post-readmore a:after {
                content: '→';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                transition: transform 0.2s ease;
            }
            
            .pubpro-post-readmore a:hover {
                color: #005a87;
            }
            
            .pubpro-post-readmore a:hover:after {
                transform: translate(3px, -50%);
            }
            
            /* Style pour le bouton "Charger plus" */
            .pubpro-load-more-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-top: 30px;
            }
            
            .pubpro-load-more-button {
                padding: 12px 30px;
                background-color: #0073aa;
                color: white;
                border: none;
                border-radius: 4px;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: background-color 0.3s ease, transform 0.2s ease;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }
            
            .pubpro-load-more-button:hover {
                background-color: #005a87;
                transform: translateY(-2px);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            }
            
            .pubpro-load-more-button:disabled {
                background-color: #ccc;
                cursor: not-allowed;
                transform: none;
                box-shadow: none;
            }
            
            /* Loader animation */
            .pubpro-loader {
                margin-top: 20px;
            }
            
            .pubpro-loader span {
                display: inline-block;
                width: 40px;
                height: 40px;
                border: 4px solid rgba(0, 115, 170, 0.3);
                border-radius: 50%;
                border-top-color: #0073aa;
                animation: pubpro-spin 1s infinite linear;
            }
            
            @keyframes pubpro-spin {
                0% {
                    transform: rotate(0deg);
                }
                100% {
                    transform: rotate(360deg);
                }
            }
            
            /* Message quand il n'y a pas d'articles */
            .pubpro-no-posts {
                text-align: center;
                padding: 30px;
                background-color: #f8f8f8;
                border-radius: 8px;
                color: #666;
                font-size: 1.1rem;
            }
            
            /* Style pour le layout liste */
            .pubpro-layout-list .pubpro-posts-grid {
                grid-template-columns: 1fr !important;
            }
            
            .pubpro-layout-list .pubpro-post-inner {
                flex-direction: row;
            }
            
            .pubpro-layout-list .pubpro-post-thumbnail {
                width: 35%;
                padding-bottom: 0;
                height: auto;
            }
            
            .pubpro-layout-list .pubpro-post-content {
                width: 65%;
            }
            
            @media (max-width: 768px) {
                .pubpro-layout-list .pubpro-post-inner {
                    flex-direction: column;
                }
                
                .pubpro-layout-list .pubpro-post-thumbnail,
                .pubpro-layout-list .pubpro-post-content {
                    width: 100%;
                }
                
                .pubpro-layout-list .pubpro-post-thumbnail {
                    padding-bottom: 56.25%;
                    height: 0;
                }
            }
            