Having a simple problem. I have anchor tags that are links to external websites, which are underneath a p element, inside a 12 column grid. I have used col-4 on them, the text is staying within the container but the anchors text is not breaking onto another line. The p element and its text keeps to the col-4, but the anchor text overflows. Please help
HTML
<div class="grouped-content__selection">
<div class="col4">
<h3>Go Kart Sorihuela Costa</h3>
<p>Hello <br>Website: <a href="google.co.uk">This line of text goes over</a></p>
</div>
</div>
CSS
.grouped-content__selection {
border-top: 2px solid #184450;
padding: 2rem 1rem 1rem 1rem;
overflow: hidden;
height: 100%;}