Ajuste o espaçamento dentro do teorema tcb e entre parágrafos

Ajuste o espaçamento dentro do teorema tcb e entre parágrafos

Para referência, este é o meu bloco tcbtheorem atual

\newtcbtheorem[number within=section, list inside = theoremlist, list type = thrm]{thrm}{Theorem}%
{enhanced, breakable,
colback=r!7, colbacktitle=r!17, coltitle=RedViolet,
frame hidden, parbox=false,
arc=1.85pt, titlerule=0pt, toptitle=2pt, bottomtitle=2pt,
fonttitle=\bfseries,separator sign= : \hspace{0.005cm},
segmentation style={solid, draw=r!55, line width=1pt},
before upper=\csname @nobreakfalse\endcsname, halign=left
}{th}

Como posso fazer com que os espaços entre os parágrafos sejam maiores, neste ambiente e no documento em geral. E como posso diminuir o espaço entre o tcbline e a prova.

insira a descrição da imagem aqui

Aqui está um código de teste

\documentclass{article}

\usepackage[many]{tcolorbox}
\usepackage[dvipsnames]{xcolor}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}


\newtcbtheorem[number within=section, list inside = theoremlist, list type = thrm]{thrm}{Theorem}%
{enhanced, breakable,
colback=Red!7, colbacktitle=Red!17, coltitle=Black,
frame hidden, parbox=false,
arc=1.85pt, titlerule=0pt, toptitle=2pt, bottomtitle=2pt,
fonttitle=\bfseries,separator sign= : \hspace{0.005cm},
segmentation style={solid, draw=Red!55, line width=1pt},
before upper=\csname @nobreakfalse\endcsname, halign=left
}{th}


\begin{document}
Testing out the spacing.

Hello. 

\begin{thrm}{Test}{}
His

this is a test 

\tcbline
\begin{proof}
Test

This is not enough space between lines.
\end{proof}
\end{thrm}
\end{document}

informação relacionada