 * {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

header, subheader, footer, article { display: block;}

body {
	background-color: #ffffff;
	font-size: 0.95em;
	font-family: Arial, Helvetica, sans-serif;
}

img{border:none;}

.imgl {
	float: left;
	margin-left: 100px;
}
.imgr {
	float: right;
	margin-right: 100px;
}

header {
	height: 70px;
	width: 100%;
	min-width: 1145px;
	position: fixed;
	left: 0;
	top: 0;
	background:#ff3000;
	z-index: 1000;
}

whiteheader{
	height: 2px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 70px;
	background:#fff;
	z-index: 1000;
}

subheader {
	height: 39px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 72px;
	background:#292e31;
	z-index: 1000;
}

/* ---- Grid (Fallback ohne JS): zeilenweise links->rechts ---- */
article {
	max-width: 1760px;
	min-width: 300px;
	margin: 0 auto 60px;
	padding: 125px 20px 40px;
	position: relative;

	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 16px;
	align-items: start;
}

/* ---- Masonry (mit JS): waagerechte Reihenfolge, Luecken werden aufgefuellt ---- */
article.masonry {
	display: block;
}
article.masonry .box {
	position: absolute;
	margin: 0;
}

.scrollicon{
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 50px;
    right: 10px;
    display: none;
    text-indent: -9999px;
    background: url('top.png') no-repeat;
    background-color: #000;
	text-align: center;
	text-decoration:none;
	opacity:1;
}

.scrollicon div{
	font-weight:bold;
	font-size:28px;
	color:#333;
	padding-top:12px;
}

.box {
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px;
	background-color: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	font-size: 12px;
	color: #555;
	line-height: 1.45;
	transition: box-shadow .2s ease, transform .2s ease;
}

.box:hover {
	box-shadow: 0 8px 22px rgba(0,0,0,.18);
	transform: translateY(-2px);
}

.box a {
	display: block;
}

.box img {
	display: block;
	width: calc(100% + 20px);
	height: auto;
	margin: -10px -10px 12px;
	border-radius: 16px 16px 0 0;
}

.fett {
	font-size: 1.05em;
	font-weight: 700;
	color: #111111;
	line-height: 1.25;
	margin: 0 0 8px;
}
