@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

.textColumn {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.textColumn_Block {
	display: flex;
	padding: 64px 80px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 109px;
	box-sizing: border-box;
}

.textColumn_Block--white {
	background-color: var(--MörkBeige, #f9f5ec);
}

.textColumn_Block--brown {
	background-color: var(--Brun, #a33f0f);
}

.textColumn_Column {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
	gap: 47px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

.textColumn_Section {
	display: flex;
	width: 436px;
	max-width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin: 0;
	box-sizing: border-box;
}

.textColumn_Block--brown .textColumn_Section h2 {
	color: var(--Background-beige, #fefbf6);
}

.textColumn_Block--white .textColumn_Section h2 {
	color: #000;
}

.textColumn_Section h2 {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	font-synthesis: none;
	font-optical-sizing: auto;
	line-height: 32px;
	margin: 0;
}

.textColumn_Block--brown .textColumn_Section .textColumn_Text,
.textColumn_Block--brown .textColumn_Section .textColumn_Text p,
.textColumn_Block--brown .textColumn_Section .textColumn_Text li,
.textColumn_Block--brown .textColumn_Section .textColumn_Text a,
.textColumn_Block--brown .textColumn_Section .textColumn_Text a:visited {
	color: var(--Background-beige, #fefbf6);
}

.textColumn_Block--white .textColumn_Section .textColumn_Text,
.textColumn_Block--white .textColumn_Section .textColumn_Text p,
.textColumn_Block--white .textColumn_Section .textColumn_Text li,
.textColumn_Block--white .textColumn_Section .textColumn_Text a,
.textColumn_Block--white .textColumn_Section .textColumn_Text a:visited {
	color: #000;
}

.textColumn_Section .textColumn_Text,
.textColumn_Section .textColumn_Text p,
.textColumn_Section .textColumn_Text li,
.textColumn_Section .textColumn_Text a {
	font-family: "Inter", system-ui, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	font-synthesis: none;
	line-height: 26px;
	letter-spacing: -0.312px;
}

/* WYSIWYG links: no underline; color comes from --brown / --white rules above */
.textColumn_Section .textColumn_Text a,
.textColumn_Section .textColumn_Text a:visited {
	text-decoration: none;
}

.textColumn_Section .textColumn_Text a:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
	border-radius: 2px;
}

/* -------------------------------------------------------------------------- */
/* Tablet */
/* -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
	.textColumn_Block {
		padding: clamp(40px, 8vw, 56px) clamp(28px, 5vw, 48px);
		gap: clamp(48px, 10vw, 72px);
	}

	.textColumn_Column {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: clamp(36px, 6vw, 48px);
	}

	.textColumn_Section {
		width: 100%;
		max-width: min(36rem, 100%);
		align-items: flex-start;
	}

	.textColumn_Section h2 {
		font-size: clamp(22px, 2.8vw, 24px);
		line-height: 1.3;
	}

	.textColumn_Section .textColumn_Text,
	.textColumn_Section .textColumn_Text p,
	.textColumn_Section .textColumn_Text li,
	.textColumn_Section .textColumn_Text a {
		font-size: clamp(15px, 1.6vw, 16px);
		line-height: 1.625;
	}
}

/* -------------------------------------------------------------------------- */
/* Mobile */
/* -------------------------------------------------------------------------- */
@media (max-width: 767px) {
	.textColumn_Block {
		padding: clamp(32px, 10vw, 48px) clamp(16px, 5vw, 24px);
		gap: clamp(32px, 8vw, 40px);
		padding-left: max(16px, env(safe-area-inset-left, 0px));
		padding-right: max(16px, env(safe-area-inset-right, 0px));
	}

	.textColumn_Column {
		flex-direction: column;
		align-items: stretch;
		gap: clamp(28px, 7vw, 36px);
	}

	.textColumn_Section {
		width: 100%;
		max-width: none;
		gap: 12px;
	}

	.textColumn_Section h2 {
		font-size: clamp(20px, 5.2vw, 22px);
		line-height: 1.28;
	}

	.textColumn_Section .textColumn_Text,
	.textColumn_Section .textColumn_Text p,
	.textColumn_Section .textColumn_Text li,
	.textColumn_Section .textColumn_Text a {
		font-size: 16px;
		line-height: 1.55;
		letter-spacing: -0.02em;
	}
}

@media (max-width: 380px) {
	.textColumn_Block {
		padding-left: max(12px, env(safe-area-inset-left, 0px));
		padding-right: max(12px, env(safe-area-inset-right, 0px));
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.textColumn_Section h2 {
		font-size: clamp(18px, 5vw, 20px);
	}
}
