.content-title {
    padding: 2rem 0;
    font-size: 26px;
}

.content-title span {
    align-items: center;
    font-size: 16px;
}

@media (min-width: 600px) {
    .content-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.formatted h2, .h2 {
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
}

.formatted h1, .formatted h2, .formatted h3 {
    color: var(--color-dark);
    font-family: Inter, sans-serif;
    font-weight: 700;
}

.formatted h2 {
    margin-top: calc(5* var(--space));
    margin-bottom: 2px;
}

.formatted h3 {
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    line-height: 1.2;
    margin-top: calc(2* var(--space));
    margin-bottom: 2px;
}

.formatted p,
.formatted ul,
.formatted ol,
.formatted blockquote {
    margin-top: 1rem;
    margin-bottom: 30px;
}

.formatted ul {
    list-style: disc;
    padding-left: 19px;
}

.formatted hr{
    border-bottom: 1px solid var(--contrast);
}

/* Conteneur de la liste */
ol[data-list="bullet"] {
    list-style: none;
    padding-left: 1.5em;
    margin: 1em 0;
  }
  
  /* Élément de la liste */
  ol[data-list="bullet"] > li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.75em;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }
  
  /* Personnalisation de la puce */
  ol[data-list="bullet"] > li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #0077cc;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  /* Masquer le span généré par Quill */
  .ql-ui {
    display: none;
  }