I am currently using the following code to produce a fancy section title in LaTeX. However, I am be having trouble figuring out how to get rid of the additional horizontal space before and after the title (Introduction). I'd like the underline to extend only as far as the end of the title with no additional space. I'd also like the blue box's width to be vary according to the width of the section number inside it (so no extra space as in the picture below). How can I achieve this?

\documentclass{article}
\usepackage{lipsum}
\usepackage{xcolor}
\usepackage{calc}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{xcolor, lipsum}
\renewcommand*\thesection{\arabic{section}}
\usepackage[explicit,calcwidth]{titlesec}
\definecolor{myBlue}{HTML}{0088FF}
\titleformat{\section}[block]{\Large\bfseries\sffamily}
{\rlap{\color{red}\rule[-6pt]{\titlewidth}{1pt}}\colorbox{myBlue}{
\raisebox{0pt}[13pt][3pt]{\makebox[60pt]{
\selectfont\color{white}{\thesection}}
}}}
{15pt}
{\color{myBlue}#1}
\titlespacing*{\section}{0pt}{0mm}{0mm}
\begin{document}
\section{Introduction}
\lipsum[1]
\end{document}

\color{myBlue}. – cabohah May 15 '23 at 15:52\makebox. – David Carlisle May 15 '23 at 16:21\makeboxof fixed width? – samcarter_is_at_topanswers.xyz May 15 '23 at 16:34