/**
 * Home "Private. Secure. Reliable." section styles — Figma node 2631:2435.
 */

.gh-security {
	/* Full-bleed out of the .site-content (max 1120px) wrapper. */
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--gh-green-dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	padding: 120px 160px;
}

.gh-security__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
	max-width: 1120px;
	width: 100%;
	color: var(--gh-white);
}

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

.gh-security__subtitle {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-white);
}

.gh-security__cards {
	display: flex;
	gap: 32px;
	width: 100%;
	max-width: 1120px;
	justify-content: center;
}

.gh-security__card {
	display: flex;
	flex-direction: column;
	width: 352px;
	background: #fcf8f5;
	border: 1px solid #008768;
	border-radius: 8px;
	overflow: hidden;
}

.gh-security__card-body {
	flex: 1 1 auto;
	background: var(--gh-green-dark);
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px 32px 56px;
	color: var(--gh-white);
}

.gh-security__card-title {
	margin: 0;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
	line-height: 28px;
	color: var(--gh-white);
}

.gh-security__card-desc {
	margin: 0;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: var(--gh-white);
}

.gh-security__strip {
	display: block;
	height: 8px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Laptop / small desktop (1024–1439px): tighter 80px sides + reduced vertical. */
@media (min-width: 1024px) and (max-width: 1439px) {
	.gh-security {
		padding: 96px 40px;
	}
}

@media (max-width: 1023px) {
	.gh-security {
		padding: 64px 24px;
	}

	.gh-security__cards {
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	/* Mobile layout — Figma node 3247:12831: cards stack, head left-aligns, 16px gutter. */
	.gh-security {
		padding: 64px 16px;
	}

	.gh-security__head {
		text-align: left;
	}

	/* Full-width cards filling the 16px-gutter content area (Figma 328px in a
	   360px frame); drop the 352px cap so they reach full width at ≤768px. */
	.gh-security__card {
		width: 100%;
		max-width: none;
	}
}
