/**
 * TFE — Help banner ("Besoin d'aide ?")
 *
 * Filtré depuis le CSS Courrier International fourni en référence.
 * Variables CSS CI (--siteBoxBackground, --radius, --siteText, etc.)
 * remplacées par les tokens TFE en valeurs fixes :
 *   primaire : #6D2929   texte : #282828   border-radius : 0
 *
 * Police icônes ci-icons non disponible ici → icônes retirées du CSS,
 * gérées en emoji directement dans le HTML (voir includes/tfe-help-banner.php).
 *
 * Namespace : .help-banner (pas de préfixe tfe- pour rester cohérent
 * avec le markup fourni ; aucun conflit attendu côté thème WP actuel —
 * à surveiller si le thème PopularFX définit aussi .help-banner).
 */

.help-banner {
  background-color: #fff;
}

.help-banner .section-wrap {
  align-items: center;
  color: #282828;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 20px;
}

.help-banner .section-wrap .title {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.help-banner .section-wrap .wrap-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 680px;
}

.help-banner .section-wrap .section-item {
  align-items: center;
  background-color: #282828;
  border-radius: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.help-banner .section-wrap .section-item:hover {
  background-color: #6D2929;
}

.help-banner .section-wrap .section-item p {
  font-size: 16px;
  margin: 0;
}

.help-banner .section-wrap .section-item:nth-child(2) {
  margin: 12px 0;
}

@media screen and (min-width: 760px) {
  .help-banner .section-wrap .wrap-links {
    flex-direction: row;
    gap: 12px;
  }

  .help-banner .section-wrap .section-item {
    flex: 1;
  }

  .help-banner .section-wrap .section-item:nth-child(2) {
    margin: 0;
  }
}