/**
 * @author Valentin Alisch, Off Office <hallo@valentinalisch.de>
 * @version 1.0
 *
 * Rettberg: Typography
 */

body {
	--font-size--small: 14px;
	--line-height--small: 19px;
	--font-size--regular: 20px;
	--line-height--regular: 26px;

	--font-size: var( --font-size--regular );
	--line-height: var( --line-height--regular );

	--text-color: var( --black );
	--font-color: var( --text-color );
	--text-color--invert: var( --white );
	--font-color--invert: var( --text-color--invert );

	--link-color: inherit;
	--hover-color: var( --gray );
}

body,
input,
textarea,
select {
	font-family: 'ABC Repro', sans-serif;
	font-weight: 400;
	font-size: var( --font-size );
	line-height: var( --line-height );
}

a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: var( --link-color );

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

a:not( .no-hover ):hover,
a:not( .no-hover ):active {
	color: var( --hover-color );
}

a.is-inverted {
	--link-color: var( --gray );
	--hover-color: var( --text-color );
}

ins {
	text-decoration: none;
}



small,
.fs--small {
	--font-size: var( --font-size--small );
	--line-height: var( --line-height--small );

	font-size: var( --font-size );
	line-height: var( --line-height );
}

.fs--small--forced,
.fs--small--forced * {
	--font-size: var( --font-size--small ) !important;
	--line-height: var( --line-height--small ) !important;

	font-size: var( --font-size ) !important;
	line-height: var( --line-height ) !important;
}

.fs--regular {
	--font-size: var( --font-size--regular );
	--line-height: var( --line-height--regular );

	font-size: var( --font-size );
	line-height: var( --line-height );
}

h1,
h2,
h3,
h4,
h5,
h6 {
	--font-size: var( --font-size--regular );
	--line-height: var( --line-height--regular );

	font-size: var( --font-size );
	line-height: var( --line-height );
	font-weight: 400;
}

h3:not( :last-child ) {
	font-weight: 700;
	margin-bottom: var( --spacing--tiny );
	margin-top: 0;
}

p + h3:not( :first-child ) {
	margin-top: var( --spacing--medium--fixed );
}

p {}

/*p:not( :last-child ) > strong {
	display: inline-block;
	margin-bottom: var( --spacing--tiny );
}

p + p > strong {
	margin-top: var( --spacing--medium--fixed );
}*/



.fw--regular,
.fw--screen {
	font-weight: 400;
}

strong,
.fw--bold {
	font-weight: 700;
}



.italic {
	font-style: italic;
}