Another method is to align the button
HTML
<div class="button__wrapper">
<button>Кнопка</button>
</div>
SCSS
.button__wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
grid-template-areas: "a b c";
align-items: start;
button {
grid-area: b;
}
}