.main.homepage {
	padding-top: var(--header-height);
	padding-bottom: 0;
}

.homepage-intro {
	display: block;
	height: calc(100vh - var(--header-height));
	min-height: 400px;
	overflow: hidden;
	z-index: 5;
	position: relative;
}

	.homepage-intro__background {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	
		.homepage-intro__background img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: top center;
		}

	.homepage-intro__teaser-button {
		position: absolute;
		z-index: 10;
		width: 150px;
		height: 150px;
		margin-top: -75px;
		background: url(../img/homepage/button_support.png) no-repeat center center / contain;
		color: transparent;
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: 20%;
	}

.homepage-intro-text {
	text-align: center;
	padding: 80px 0;
}

	.homepage-intro-text .content {
		font-size: 2em;
		text-wrap: balance;
	}

.homepage-news {
	padding: 80px 0;
}

	.homepage-intro-text + .homepage-news {
		padding-top: 0;
	}

	.homepage-news a {
		color: var(--color-text);
	}

		.homepage-news a:hover,
		.homepage-news a:focus {
			text-decoration: none;
		}

			.homepage-news a:hover .newspost-title,
			.homepage-news a:focus .newspost-title {
				color: var(--color-highlight);
			}

	@media ( max-width: 840px ) {

		.homepage-news .columns {
			flex-wrap: wrap;
		}
		
		.homepage-news .columns .column {
			flex-basis: 300px;
		}

	}

.homepage-productions {
	display: flex;
	--headline-width: 180px;
}

	.homepage-productions__headline {
		position: relative;
		width: var(--headline-width);
		height: 338px;
		line-height: 1;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: 2.5em;
		padding: 30px 30px 90px;
		overflow: break-word;
		word-break: break-word;
		background: var(--color-orange);
		color: var(--color-white);
	}

		.homepage-productions__arrows {
			position: absolute;
			bottom: 0;
			left: 0;
			padding: 20px;
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			width: 100%;
			box-sizing: border-box;
			visibility: hidden;
		}
		
			.homepage-productions__arrows.visible {
				visibility: unset;
			}

			.homepage-productions__arrow {
				width: 54px;
				height: 54px;
				cursor: pointer;
				background: no-repeat center center / contain;
			}

				.homepage-productions__arrow-left {
					background-image: url(../img/homepage/productions_arrow-left.svg);
				}

				.homepage-productions__arrow-right {
					background-image: url(../img/homepage/productions_arrow-right.svg);
				}

	.homepage-productions .productions-list {
		display: block;
		width: calc(100% - var(--headline-width));
		list-style-type: none;
		margin: 0;
		padding: 0;
		white-space: nowrap;
		font-size: 0;
		overflow: auto;
		scroll-behavior: smooth;
	}
	
		.homepage-productions .productions-list li {
			display: inline-block;
			position: relative;
			background: var(--color-highlight);
		}
		
			.homepage-productions .productions-list .flag {
				position: absolute;
				color: var(--color-white);
				text-shadow: 0 0 8px rgba(0,0,0,.4);
				display: flex;
				justify-content: center;
				align-items: center;
				text-align: center;
				width: 100%;
				height: 100%;
				left: 0;
				top: 0;
				font-weight: bold;
				z-index: 5;
				font-size: 2rem;
				pointer-events: none;
			}
		
		.homepage-productions .productions-list img {
			width: 180px;
			height: 338px;
			object-fit: cover;
		}

			.homepage-productions .productions-list .ended img {
				opacity: 0.5;
			}

		.homepage-productions .productions-list a {
			position: relative;
			display: inline-block;
		}
		
			.homepage-productions .productions-list a:hover:after,
			.homepage-productions .productions-list a:focus:after {
				content: "";
				display: block;
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				box-sizing: border-box;
				border: 2px solid var(--color-orange);
			}

	@media ( max-width: 680px ) {

		.homepage-productions {
			--headline-width: 160px;
		}

	}

.homepage-teaserlist {
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	background: #fff;
	color: #000;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	text-align: center;
}

	.homepage-teaserlist li {
		width: 240px;
		padding: 20px;
	}

	.homepage-teaserlist a {
		color: inherit;
		display: block;
		font-size: 25px;
		text-transform: uppercase;
		text-decoration: none;
	}

		.homepage-teaserlist a:hover,
		.homepage-teaserlist a:focus {
			color: var(--color-highlight);
		}

.homepage .digital-teasers {
	background: var(--color-black);
	color: var(--color-white);
	font-size: 2em;
	text-transform: uppercase;
	text-align: center;
}

	.homepage .digital-teasers a {
		color: inherit;
		text-decoration: none;
	}
	
		.homepage .digital-teasers a:hover,
		.homepage .digital-teasers a:focus {
			color: var(--color-highlight);
		}

	.homepage-digital-teaserlist {
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding: 20px 0;
		margin: 0 auto;
		width: 1000px;
		max-width: 100%;
		flex-wrap: wrap;
	}
	
		.homepage-digital-teaserlist p,
		.homepage-digital-teaserlist img {
			width: 200px;
			height: auto;
			display: block;
		}
