*{
    -webkit-font-smoothing : antialiased;
    -webkit-font-smoothing : subpixel-antialiased;
}

h1, h2, h3, h4, h5 {
    font-weight: normal;
}

.editor-title {
    display: none !important;
}

.editor-title * {
    display: none !important;
}

strong {    
    font-family: var(--wp--preset--font-family--parkinsans-medium);    
}


.layout-logo {
    max-width: 280px !important;
}

/* Tous les éléments avec data-title */
[data-title] {
    position: relative;
    cursor: help;
    border-bottom: 2px dotted var(--wp--preset--color--custom-vert-encabs);
  }
  
  /* La bulle */
  [data-title]::before {
    content: attr(data-title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wp--preset--color--custom-vert-encabs);
    color: #fff;
    padding: 10px;
    border-radius: 6px;    
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
    width: 100vw;
    max-width: 300px;
    text-align: center;
  }  

  
  /* Affichage au survol */
  [data-title]:hover::before,
  [data-title]:hover::after {
    opacity: 1;
  }
  