I am having trouble with a hover effect to display a hidden card. I have two div elements, one is labeled single-album and the other hide. I used the + selector to set the hide div to display none initially, but the hover effect is not working as expected.
<div class="row">
<div class="col-12">
<!-- Single Album -->
<div class="single-album">
<img src="img/book-imgs/DH.jpg" alt="">
<div class="album-info">
<a href="#">
<h5>HORROR</h5>
</a>
<p>Dark House</p>
</div>
</div>
</div>
</div>
<div class="row hide">
<div class="col-lg-12">
<div class="card mb-3" style="max-width: 540px;height:240px">
<div class="row g-0">
<div class="col-md-4">
<img src="img/book-imgs/NHrt.jpg" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">NHRT</h5>
<p class="card-text">This is a wider card with supporting text below as a lead-in to additional content. This content is a little bit longer.
</p>
<button class="ba-btn">Download</button>
</div>
</div>
</div>
</div>
</div>
</div>