/* ═══════════════════════════════════════════════════════
   HIGHLIGHTS — 4 points forts avec icône, titre, texte
   ═══════════════════════════════════════════════════════ */

.vp-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vp-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.vp-highlight__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vp-black);
}

.vp-highlight__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--vp-black);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vp-highlight__body {
    flex: 1;
    min-width: 0;
}

.vp-highlight__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vp-black);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.vp-highlight__desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--vp-gray);
    line-height: 1.55;
}
