можно с помощью js )
js ->
const updateTitlesHeight = () => {
const allTitles = document.querySelectorAll('.programs__title');
let maxHeight = 0;
allTitles.forEach(title => {
maxHeight = Math.max(maxHeight, title.offsetHeight);
});
allTitles.forEach(title => {
title.style.height = maxHeight + 'px';
});
};
document.addEventListener("DOMContentLoaded", updateTitlesHeight);
window.addEventListener('resize', updateTitlesHeight);
css ->
.programs__descr {
margin: 0 0 17px;
}