/* Charger Raleway dans le thème (Google Fonts ou @font-face local) */
:root {
  --fb-title-color: #004A8C;
  --fb-subtitle-color: #A4BDC3;
}

/* Titre */
.fb-title{
  font-family: 'Raleway', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 120%;           /* ~50px */
  letter-spacing: -0.01em;     /* -1% */
  color: var(--fb-title-color);
  margin: 0 0 .25rem 0;
}

/* Sous-titre */
.fb-subtitle{
  font-family: 'Raleway', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 120%;           /* ~34px */
  letter-spacing: -0.01em;
  color: var(--fb-subtitle-color);
  margin: 0 0 1rem 0;
}

/* Body (texte courant) */
.fb-body{
  color:#394a5a;
}

/* Image/media */
.fb-media img,
.fb-media picture,
.fb-media video,
.fb-media iframe {
  max-width:100%;
  height:auto;
  display:inline-block;
}

/* (optionnel) Ajustements responsives */
@media (max-width: 575.98px){
  .fb-title{ font-size: 34px; }
  .fb-subtitle{ font-size: 22px; }
}
