/* ==========================================================================
   FHG Big Typo v1.2.0
   Design: Figma FHG_Website / Big Typo (Node 703:1590)
   Dekorative Gross-Typografie mit automatischem Umbruch
   Colors: Sun #F4EE8F
   Font: SangBleu Kingdom (Medium + Medium Italic)
   Responsive: clamp() fuer flüssige Skalierung ohne Overflow
   ========================================================================== */

/* --- Container --- */

.fhg-bigtypo {
	position: relative;
	width: 100%;
	font-family: 'SangBleu Kingdom', serif;
	font-weight: 500;
	font-size: 250px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #F4EE8F;
	overflow: hidden;
}

/* --- Line 1: Regular --- */

.fhg-bigtypo__line1 {
	margin: 0;
	font-style: normal;
	white-space: nowrap;
}

/* --- Line 2: Italic, automatisch eingerückt --- */

.fhg-bigtypo__line2 {
	margin: 0;
	font-style: italic;
	white-space: nowrap;
}

/* Unsichtbarer Spacer: gleicher Text wie Zeile 1, schiebt Zeile 2 automatisch nach rechts */

.fhg-bigtypo__spacer {
	visibility: hidden;
	font-style: normal;
}

/* --- Italic/Bold Support --- */

.fhg-bigtypo i,
.fhg-bigtypo em {
	font-style: italic;
}

.fhg-bigtypo b,
.fhg-bigtypo strong {
	font-weight: 700;
}

/* --- Mobile: Zeile 2 rechtsbündig statt Spacer --- */

@media (max-width: 767px) {
	.fhg-bigtypo {
		font-size: 79px;
		letter-spacing: -0.05em;
		overflow: visible;
	}

	.fhg-bigtypo__spacer {
		display: none;
	}

	.fhg-bigtypo__line2 {
		text-align: right;
	}
}
