I am seeking a solution for changing the text of a button within three columns when a specific 'advice-card' div is clicked on. The text should change to 'Hide' for the clicked div, and the other buttons should switch back to 'Show' when a different 'advice-card' div is clicked. Thank you
<div id="general-advice" class="col-sm advice-card">
<div class="advice-card-footer">
<p class="advice-cost-disclaimer">Cost: Included with membership - no additional cost.</p>
<button>Show</button>
</div></div>
<div id="super-advice" class="col-sm advice-card">
<div class="advice-card-footer">
<p class="advice-cost-disclaimer">Cost: Included with membership - no additional cost.</p>
<button>Show</button>
</div></div>
<div id="retirement-advice" class="col-sm advice-card">
<div class="advice-card-footer">
<p class="advice-cost-disclaimer">Cost: Included with membership - no additional cost.</p>
<button>Show</button>
</div></div>