El enlace URL no funciona al cambiar el tamaño de un objeto tabular al ancho de texto

El enlace URL no funciona al cambiar el tamaño de un objeto tabular al ancho de texto

Cuando quiero cambiar el tamaño de una tabla al ancho de texto, los enlaces a páginas web y las referencias ya no funcionan (los cuadros de hipervínculo se mueven a otro lugar), mientras que no encuentro este problema cuando no cambio el tamaño de una tabla al ancho de texto.

Sin embargo, necesito hacer esto y tanto resizebox(primer ejemplo) como adjustbox(segundo ejemplo) dan problemas.

¿Como puedo resolver esto? ¡Gracias! (Trabajo en TeXstudio y uso LuaLaTeX para compilar)

\documentclass{article}

\usepackage{booktabs}
\usepackage{adjustbox}
\usepackage{graphicx}
\usepackage{hyperref}

\begin{document}

%%% change size by resizebox
\begin{table}[]
    \centering
    \caption{Caption for the table.}
    \label{tab:table1}
    \resizebox{\textwidth}{!}{% 
    \begin{tabular}{@{}llll@{}}
        \toprule
        \textbf{A} & \textbf{B} & \textbf{C}   \\ \midrule
        Problems & Help & \href{stackoverflow.com}    {stackstacksstackstackstacktacstackstackstackstackstackstackstack} \\
        & Search & \href{google.com}{Your friend}     \\
   \bottomrule
    \end{tabular}
    }   
\end{table}

%%% change size by adjustbox
\begin{table}[]
    \centering
    \caption{Caption for the table.}
    \label{tab:table2}
     \begin{adjustbox}{max width=\textwidth}
    \begin{tabular}{@{}llll@{}}
        \toprule
        \textbf{A} & \textbf{B} & \textbf{C}   \\ \midrule
        Problems & Help & \href{stackoverflow.com}    {stackstacksstackstackstacktacstackstackstackstackstackstackstack} \\
        & Search & \href{google.com}{Your friend}     \\
        \bottomrule
    \end{tabular}
     \end{adjustbox}
\end{table}
\end{document}

información relacionada