/*
Theme Name: Blocksy Child
Theme URI: https://example.com/blocksy-child
Description: Child theme for Blocksy — safe place for custom templates and styles.
Author: Your Name
Version: 1.0.0
Template: blocksy
Text Domain: blocksy-child
*/

/* Add child theme custom CSS below this line */

/* Logo bullet modification */
.site-logo-container {
    position: relative;
}

.site-logo-container::before {
    content: "●"; /* Caractère bullet &#9679; */
    color: var(--theme-palette-color-1, #2c3e50); /* Couleur thème nuero 1 avec fallback */
    font-size: 2em;
    vertical-align: middle;
    display: inline-block;
}

/* Alternative si le sélecteur ci-dessus ne fonctionne pas */
.ct-logo::before,
.site-logo::before,
[data-id="logo"]::before {
    content: "●";
    color: var(--theme-palette-color-1, #2c3e50);
    font-size: 2em;
    vertical-align: middle;
    display: inline-block;
}
