/* =============================================================
   SquashAddict – home.css
   Aktuelles Teaser Section
   CI: #181818 | #E9530E | #ffffff | #555555
   Font: Inter 400 / 700
   Alle font-size in px – unabhängig vom Parent vw-Scaling
   ============================================================= */

.sa-news-teaser {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 70vh;
	background-color: #181818;
}

.sa-news-teaser__image {
	overflow: hidden;
	position: relative;
}

.sa-news-teaser__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: grayscale(100%);
}

.sa-news-teaser__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5em 4.5em;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sa-news-teaser__label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #E9530E;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 1.25em;
}

.sa-news-teaser__headline {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 66px;
	color: #ffffff;
	line-height: 1.15;
	margin: 0 0 1.25em;
}

.sa-news-teaser__text {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 22px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin: 0 0 1em;
	max-width: 38em;
}

.sa-news-teaser__text:last-of-type {
	margin-bottom: 2em;
}

.sa-news-teaser__link {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #E9530E;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	text-decoration: none;
	border-bottom: 1.5px solid #E9530E;
	padding-bottom: 0.2em;
	align-self: flex-start;
	transition: opacity 0.2s ease;
}

.sa-news-teaser__link:hover {
	opacity: 0.75;
}

/* =============================================================
   RESPONSIVE – Gross-Desktop ab 1440px (fixe Sprünge)
   ============================================================= */
@media (min-width: 1440px) {
	.sa-news-teaser__headline {
		font-size: 76px;
	}

	.sa-news-teaser__text {
		font-size: 24px;
	}
}

@media (min-width: 1920px) {
	.sa-news-teaser__headline {
		font-size: 88px;
	}

	.sa-news-teaser__label,
	.sa-news-teaser__link {
		font-size: 18px;
	}

	.sa-news-teaser__text {
		font-size: 25px;
	}
}

/* =============================================================
   RESPONSIVE – Tablet  601px – 1180px
   ============================================================= */
@media (min-width: 601px) and (max-width: 1180px) {

	.sa-news-teaser__content {
		padding: 4em 3em;
	}

	.sa-news-teaser__headline {
		font-size: 44px;
	}

	.sa-news-teaser__text {
		font-size: 18px;
	}
}

/* =============================================================
   RESPONSIVE – Mobile max-width: 600px
   ============================================================= */
@media (max-width: 600px) {

	.sa-news-teaser {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.sa-news-teaser__image {
		height: 56vw;
	}

	.sa-news-teaser__content {
		padding: 3em 2em;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	.sa-news-teaser__headline {
		font-size: 34px;
	}

	.sa-news-teaser__text {
		font-size: 16px;
	}
}
