/**
 * Privacy Policy hero — Figma node 3350:16549.
 * Full-bleed dark-green band: left column (eyebrow + title + outline button),
 * right column (three intro paragraphs).
 */

.gh-pp-hero {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--gh-green-dark);
}

.gh-pp-hero__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 96px 0;
	display: flex;
	gap: 128px;
	align-items: flex-start;
}

.gh-pp-hero__col--left {
	display: flex;
	flex-direction: column;
	gap: 36px;
	width: 544px;
	flex-shrink: 0;
}

.gh-pp-hero__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gh-pp-hero__eyebrow {
	margin: 0;
	font-family: 'avenir_next_worlddemi', 'Verdana';
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: #3ed3b5;
}

.gh-pp-hero__title {
	margin: 0;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 48px;
	line-height: 56px;
	color: var(--gh-white);
}

.gh-pp-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	height: 48px;
	padding: 13px 16px;
	border: 1px solid var(--gh-accent);
	border-radius: 8px;
	font-family: 'avenir_next_worlddemi', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: var(--gh-white);
	white-space: nowrap;
}

.gh-pp-hero__btn:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--gh-white);
}

.gh-pp-hero__col--right {
	flex: 1 0 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.gh-pp-hero__col--right p {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-white);
}
.gh-pp-hero__col--right a{
	color: var(--gh-white);
	text-decoration: underline;
}
.gh-pp-hero__col--right a:hover{
	color: #e2e2e2;
	text-decoration: underline;
}
/* Laptop / small desktop. */
@media (min-width: 1024px) and (max-width: 1439px) {
	.gh-pp-hero__inner {
		padding: 96px 40px;
		gap: 80px;
	}
}

/* Tablet and below — stack the two columns. */
@media (max-width: 991px) {
	.gh-pp-hero__inner {
		flex-direction: column;
		gap: 40px;
		padding: 80px 40px;
	}

	.gh-pp-hero__col--left {
		width: auto;
	}

	.gh-pp-hero__title {
		font-size: 32px;
		line-height: 40px;
	}
}

@media (max-width: 767px) {
	.gh-pp-hero__inner {
		padding: 64px 16px;
	}
}
