/* ============================================================
   FR Responsible Gambling — official ANJ resources bar
   ============================================================ */

.rg-official-bar {
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.6rem 0;
  font-size: var(--fs-xs);
}
.rg-official-bar__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.rg-official-bar__label {
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rg-official-bar a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.rg-official-bar a:hover { color: var(--gold-muted); }

/* Mandatory ANJ risk warning bar (toujours visible) */
.anj-warning {
  background: #2D2D2A;
  color: #F5F3EE;
  font-size: var(--fs-xs);
  padding: 0.55rem 0;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.anj-warning strong { color: var(--gold-light); }
.anj-warning a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Resource cards block */
.rg-official-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.rg-official-cards a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: var(--fs-xs);
  font-weight: 500;
  background: rgba(255,255,255,0.04);
}
.rg-official-cards a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
