/* ============================================================
   BOURSES-MONDE-EXTRA.CSS
   Composants additionnels pour bourses-monde.html
   Charger APRÈS bourse.css
   ============================================================ */

/* ── HERO IMAGE ───────────────────────────────────────────── */
.article-hero.hero-monde {
  background-image: url('https://images.unsplash.com/photo-1446776858070-70c3d5ed6758?w=1800&q=85');
  background-position: center 45%;
}

/* ── NUAGE DE PAYS ────────────────────────────────────────── */
.monde-pays-grid {
  margin: 16px 0;
}
.monde-pays-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.monde-pays-label i { color: var(--gold); }
.monde-pays-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.monde-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
  transition: all .2s;
}
.monde-chip:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.monde-chip-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(11,31,58,.05);
  border: 1px dashed rgba(11,31,58,.2);
  color: var(--text-light);
}

/* ── ALERTES INLINE ───────────────────────────────────────── */
.monde-alerte {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin: 14px 0;
  font-size: .87rem;
  line-height: 1.7;
}
.monde-alerte.info {
  background: rgba(30,65,117,.06);
  border: 1px solid rgba(30,65,117,.15);
}
.monde-alerte.warning {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
}
.monde-alerte > i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.monde-alerte.info > i    { color: var(--navy-light); }
.monde-alerte.warning > i { color: var(--gold); }
.monde-alerte p {
  margin: 0;
  color: var(--text);
}
.monde-alerte p strong { color: var(--navy); }
.monde-alerte p a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* ── GUIDE RAPIDE SIDEBAR ─────────────────────────────────── */
.monde-guide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.monde-guide-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.monde-guide-item:last-child { border-bottom: none; }
.monde-guide-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .82rem;
}
.monde-guide-item div strong {
  display: block;
  font-size: .87rem;
  color: var(--navy);
  margin-bottom: 1px;
}
.monde-guide-item div span {
  font-size: .76rem;
  color: var(--text-light);
  line-height: 1.4;
}