@Patricia Davis great question, and honestly a really relevant one for a mixed-topology deployment like yours.
The short answer is that the module doesn't do automatic transmit power control by default — it's not dynamically backing off based on RSSI or link quality the way some cellular stacks do. What you're getting out of the box is the full output power configuration that achieves those long-range specs.
That said, the BLE stack on the STM32WB does expose TX power control in firmware, so if you're willing to dig into it, you can absolutely implement a scheme where nodes check RSSI on the link and dial back the PA output when they're sitting next to each other in your base station cluster. It's not a huge lift — read the RSSI on a connection interval, compare against a threshold, call the TX power API. The AI Firmware Builder in the Dev Hub is actually pretty solid for scaffolding exactly this kind of adaptive power logic if you'd rather not write it from scratch.
For your use case I'd probably start with a simple two-tier approach: full power for any link where RSSI is below a certain threshold (anything not basically sitting on top of each other), and drop to minimum for the cluster nodes. Saves power and reduces interference within the cluster without needing a full closed-loop controller.