.content_layout h2 {
    display: none !important; /* Ici le !important est "propre" car il annule une règle d'affichage du thème */
}

/* 2. On stylise le bloc de texte (le Body) */
.content_layout  {
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* 3. On transforme le lien en bouton noir "Declic Photography" */
.content_layout a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background-color: #000;
    color: #fff !important; /* Pour forcer le blanc sur le texte du lien */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: background-color 0.3s ease;
}

.content_layout a:hover {
    background-color: #444;
}