/* ==========================================================================
   Typographie Recrute by Pablo — Sora (titres) / Manrope (corps)
   ==========================================================================
   Couleurs du thème d'origine conservées telles quelles. Seule la police
   change.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --brand-font-heading: 'Sora', sans-serif;
    --brand-font-body:    'Manrope', sans-serif;

    --heading-font: var(--brand-font-heading);
    --body-font: var(--brand-font-body);
}

body {
    font-family: var(--brand-font-body);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--brand-font-heading);
}

/* ==========================================================================
   Sélecteur de note en étoiles (fin de mission — MissionRating)
   ========================================================================== */

.star-rating {
    display: inline-flex;
    gap: 4px;
}

.star-rating__star {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    color: #f5b301;
    cursor: pointer;
}

.star-rating__half {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.star-rating__half--left {
    left: 0;
}

.star-rating__half--right {
    right: 0;
}

.star-rating--display .star-rating__star {
    font-size: 1.125rem;
    cursor: default;
}

