I have been wrecking my brain to figure out why some elements are too high above the horizontal line/rule and some are arguably well placed.
I found out it is because of the \color-command.
Why does that happen?
How can I have the parts without the \color-command behave the same way as it were there?
Screenshot of MWE
MWE
\documentclass[
11pt,
a4paper,
]
{scrartcl}
\usepackage{
lmodern,
multicol,
}
\usepackage[svgnames]{xcolor}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\listfiles
\begin{document}
\begin{center}\huge
Title stuff
\end{center}
\begin{multicols*}{2}
\section{Word}
\begin{center}
\sffamily
\fbox{
\begin{minipage}[t]{0.9\columnwidth}
\centering\begin{minipage}[t]{0.95\columnwidth}\raggedright%
\color{DarkBlue}\textbf{Stuff:} aaaaaaaa [asdf: 1111]
\end{minipage}\par\addvspace{0.4ex}%
\color{black}\rule{0.9\columnwidth}{0.1pt}\par\addvspace{0.4ex}%
\begin{minipage}[t]{0.95\columnwidth}\small
Words.
Sentence words and aaaa asdf lorem.
Ipsum.
Words words more.
\end{minipage}
\end{minipage}}
\end{center}
\begin{center}
\sffamily
\fbox{
\begin{minipage}[t]{0.9\columnwidth}
\centering\begin{minipage}[t]{0.95\columnwidth}\raggedright%
\textbf{Stuff:} aaaaaaaa [asdf: 1111]
\end{minipage}\par\addvspace{0.4ex}%
\color{black}\rule{0.9\columnwidth}{0.1pt}\par\addvspace{0.4ex}%
\begin{minipage}[t]{0.95\columnwidth}\small
Words.
Sentence words and aaaa asdf lorem.
Ipsum.
Words words more.
\end{minipage}
\end{minipage}}
\end{center}
\end{multicols*}
\end{document}
