/* ============================================================
   COMPONENT — Note Callout
   Encart avec fond cyan-tint-light et pastille info qui dépasse.
   ============================================================ */

.noteCallout {
    position: relative;
    padding: 20px;
    background: var(--color-cyan-tint-light);
    margin-top: 14px;          /* espace pour la pastille qui dépasse */
}

.noteCallout__badge {
    position: absolute;
    top: -14px;
    left: 20px;
    width: 28px;
    height: 28px;
    display: block;
}

.noteCallout__badge img {
    width: 100%;
    height: 100%;
    display: block;
}

.noteCallout__inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.noteCallout__title {
    color: var(--color-primary-midnightblue);
    font-size: var(--font-size-md);     /* 16px en maquette */
    font-weight: 700;
    line-height: 1.3;
}

.noteCallout__body {
    color: var(--color-primary-midnightblue);
    font-size: var(--font-size-md);
    font-weight: 400;
    line-height: 1.5;
}

.noteCallout__body strong,
.noteCallout__body b {
    font-weight: 700;
}

.noteCallout__body p + p {
    margin-top: var(--space-2);
}
