I have a div and am utilizing Bootstrap 5. I'd like to have the Description and Length elements on separate lines when the page width is <=1024px.
<div class="col-3 col-md-4 col-lg-3">
<div class="card d-flex align-items-center dynamic-card mb-3">
<div class="card-body">
<div class="card-title">@Tester.ProjectName</div>
<div class="row">
<div class="col">
<label>Description</label><br>
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="597d190d3c2a2d3c2b771834362c37">[email protected]</a>
</div>
<div class="col">
<label>Length</label><br>
@Tester.SquareFeet
</div>
<div class="col d-flex align-items-center justify-content-end">
<div class="icon next-button"></div>
</div>
</div>
</div>
</div>
</div>
I'm trying to figure out where and how to implement this change. Would a media query be needed? What would it look like?