/* ── Page layout ─────────────────────────────────────────────────────────── */
/* Search block sits in row 2; rows 1 and 3 are equal 1fr halves,
   so the block stays perfectly centered regardless of recents height. */
.sp-page {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    width: 100%;
}

.sp-center {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
