I have layout like image below:

The jsx/html code:
<article id="exhibition">
<section>
<a href="#">
<h1>{exhibition[0].title}</h1>
<p>{exhibition[0].description}</p>
</a>
</section>
<section>
<a href="#">
<h1>{exhibition[1].title}</h1>
<p>{exhibition[1].description}</p>
</a>
</section>
<section>
<a href="#">
<h1>{exhibition[2].title}</h1>
<p>{exhibition[2].description}</p>
</a>
</section>
</article>
css code:
article#exhibition {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
& section {
padding: 1rem;
background-color: #61C9A8;
& a {
font-weight: 400;
}
& h1 {
font-size: 2rem;
color: #4C3B4D;
}
& p {
margin-top: 1.5rem;
font-size: 1.5rem;
}
}
}
I want the description in the paragraph should be aligned with the other paragraph, but I have no idea how to do that. What should I change in my css grid (importantly the paragraph tags)?