/* ============================================================================
 * BRAND
 * ============================================================================
 * Extrait de home.css lors du nettoyage pré-Bloc 3.
 * Toutes les couleurs/valeurs en dur ont été migrées vers tokens.css.
 * ============================================================================ */

/* ═══════════════════════════════════════════════════════════════
 * BRAND HEADER
 * ═══════════════════════════════════════════════════════════════ */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}
.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}
.brand-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 5px;
}
.brand-info { flex: 1; text-align: center; }
.brand-info .sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

