
    <style>
    .rcp-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 32px;
		justify-content: center;     /* Centre horizontalement les blocs */
		margin: 30px auto;
		width: 100%;
		/*max-width: 1200px;            Limite la largeur pour garder un alignement harmonieux */
	}
	
	.home .entry-title, .front-page .entry-title {
    display: none !important;
	}
	
	.home .rcp-title a,
	.home .rcp-more,
	.home .rcp-cat-footer a {
		text-decoration: none !important;
	}

    .rcp-category {
        flex: 1 1 100%;
        margin-bottom: 48px;
    }
    .rcp-category h2 {
        margin-bottom: 20px;
        font-size: 1.4em;
    }
    .rcp-article {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(60,80,140,0.08);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-width: 300px;
        /*max-width: 350px;*/
        margin-bottom: 28px;
        margin-right: 14px;
        min-height: 430px;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.2s;
    }
    .rcp-article:last-child { margin-right: 0; }

    .rcp-thumb-wrapper {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        background: #eee;
        flex-shrink: 0;
    }
    .rcp-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rcp-title {
        margin: 18px 16px 10px 16px;
        font-size: 1.13em;
        font-weight: 700;
        flex-shrink: 0;
        line-height: 1.2;
        text-align: left;
    }
    .rcp-title a {
        text-decoration: none;
        color: #153474;
        transition: color 0.2s;
    }
    .rcp-title a:hover { color: #2854c3; }

    .rcp-excerpt {
        margin: 0 16px 10px 16px;
        color: #50546a;
        font-size: 1em;
        flex-grow: 1;
        text-align: left;
    }
    .rcp-more {
		display: block;           /* Le lien occupe toute la largeur disponible */
		text-align: right;        /* Alignement à droite */
		font-weight: bold;        /* En gras */
		margin: 0 16px 18px 16px; /* Garde une belle marge autour */
		color: #3473ea;           /* Facultatif : couleur de ton choix */
		text-decoration: none;    /* Pas de soulignement */
		font-size: 1em;
		transition: color 0.2s;
	}
	.rcp-more:hover {
		color: #0d55c5;           /* Facultatif : couleur différente au survol */
	}

    .rcp-cat-footer {
        background: #060097;
		color: #FFFFFF;
        padding: 12px 0;
        text-align: center;
        margin-top: auto;
        border-top: 1px solid #e0e8f8;
        font-size: 0.96em;
        font-weight: 600;
        letter-spacing: 0.03em;
    }
    .rcp-cat-footer a {
        color: #FFFFFF;
        text-decoration: none;
        transition: color 0.2s;
    }
    .rcp-cat-footer a:hover { color: #FFFF00; }
	
	.rcp-related-list {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.rcp-related-item {
		margin-bottom: 1em;
	}

	.rcp-related-title {
		color: #244999;
		font-size: 1em;
		font-weight: 600;
		text-decoration: none;
		display: block;
		margin-bottom: 0; /* la marge est portée par le <li> */
	}

	.rcp-related-title:hover {
		color: #1583d1;
	}

    /* Responsive */
    @media (min-width: 850px) {
        .rcp-category {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .rcp-article {
            width: calc(33.333% - 20px);
            max-width: 340px;
        }
    }
    @media (max-width: 849px) and (min-width: 600px) {
        .rcp-category {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .rcp-article {
            width: calc(50% - 10px);
            max-width: 400px;
        }
    }
    @media (max-width: 599px) {
        .rcp-wrapper, .rcp-category {
            flex-direction: column !important;
            gap: 0 !important;
        }
        .rcp-article {
            width: 100%;
            max-width: 100%;
            margin: 0 0 20px 0;
        }
    }
	
	
    </style>
	
	
    
