A possible factorization argument leading up till @Kevin's final form, for reference.
Since
$$
(x+\sqrt{-7}) - (x-\sqrt{-7}) = 2\sqrt{-7}
$$
The possible common factors are $\sqrt{-7}$ and the prime elements of norm $2$ (which works out to be $(1\pm \sqrt{-7})/2$). The former will cause $x$ to be divisible by $7$ and hence fails in the original equation, so we exclude it since it can't happen.
If $x$ is even, then $x\pm \sqrt{-7}$ has odd norm so they can't have that common factor of norm $2$. This is the part you wrote down.
However if $x=2r+1$ is odd, then since
$$
\frac{x + \sqrt{-7}}{2} = r + \frac{1+\sqrt{7}}{2}\in\mathcal O, \frac{x - \sqrt{-7}}{2} = r+1 - \frac{1+\sqrt{7}}{2} \in \mathcal O,
$$
the common factor between $x+\sqrt{-7}$ and $x-\sqrt{-7}$ is exactly $2$. Since we also know that $y=2s$ must be even, this means
$$
\begin{align*}
2^2\left(r+\frac{1+\sqrt{-7}}{2}\right)\left(r+1-\frac{1+\sqrt{-7}}{2}\right) &= 2^5s^5\\
\left(r+\frac{1+\sqrt{-7}}{2}\right)\left(r+1-\frac{1+\sqrt{-7}}{2}\right) &= 2^3s^5 = \left(\frac{1+\sqrt{-7}}{2}\right)^3\left(\frac{1-\sqrt{-7}}{2}\right)^3s^5
\end{align*}
$$
So by the coprime-ness (and absorbing any units into $\beta^5$), you now have 4 possibilities
$$
r+\frac{1+\sqrt{-7}}{2} \in \left\{\beta^5,\left(\frac{1+\sqrt{-7}}{2}\right)^3\beta^5,\left(\frac{1-\sqrt{-7}}{2}\right)^3\beta^5,2^3\beta^5\right\}
$$
With $\beta = a+b(1+\sqrt{-7})/2$ this works out to be 4 different (Thue) equations when comparing the real and imaginary parts:
$$
\begin{align*}
E1: 2r &= -1 + 2 a^5 + 5 a^4 b - 30 a^3 b^2 - 50 a^2 b^3 + 5 a b^4 + 11 b^5\\
1 &= 5 a^4 b + 10 a^3 b^2 - 10 a^2 b^3 - 15 a b^4 - b^5\\
E2: 2r &= -1 - 5 a^5 + 5 a^4 b + 110 a^3 b^2 + 90 a^2 b^3 - 65 a b^4 - 31 b^5\\
1 &= - a^5 - 15 a^4 b - 10 a^3 b^2 + 50 a^2 b^3 + 35 a b^4 - 3 b^5\\
E3: 2r &= -1 - 5 a^5 - 30 a^4 b + 40 a^3 b^2 + 160 a^2 b^3 + 40 a b^4 - 24 b^5\\
1 &= a^5 - 10 a^4 b - 40 a^3 b^2 + 40 a b^4 + 8 b^5\\
E4: 2r &= -1 + 16 a^5 + 40 a^4 b - 240 a^3 b^2 - 400 a^2 b^3 + 40 a b^4 + 88 b^5\\
1 &= 40 a^4 b + 80 a^3 b^2 - 80 a^2 b^3 - 120 a b^4 - 8 b^5
\end{align*}
$$
Equation 4 clearly has no solutions modulo 2.
Equation 1 must have $b=\pm 1$, then solving for $a$ (factoring over $\mathbb Z$) gives only two integer solutions: $(a,b)= (0,-1),(1,-1)$. Then $r=-6,5$ which corresponds to $x=-11,11$, which both fails.
For equation 2, doing a substitution of
$$
(a,b,r) = (-u - v, v, -w-1)
$$
will reveal that it's exactly the same form as equation 3. (Upon which $(u,v,w) = (a,b,r)$ in equation 3.)
Equation 2 is given by @Kevin's solution. Alternatively Using Pari/GP to solve the Thue equation
$$
1 = - a^5 - 15 a^4 b - 10 a^3 b^2 + 50 a^2 b^3 + 35 a b^4 - 3 b^5
$$
returns
$$
(a,b) = (-1, 0), (2, -1)
$$
Then $r=90,2$, so $x=181,5$. Then for equation 3, using the earlier relationship of $(u,v,w) = (-a-b,b,-r-1)$ gives $w =-91,-3$. Hence $x=-181,-5$.