/**
 * Security hub "Advanced security across every front" styles —
 * Figma node 3560:11751.
 */

.gh-sec-fronts {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: var(--gh-accent);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	padding: 120px 160px;
}

.gh-sec-fronts__title {
	margin: 0;
	font-family: 'schibsted_grotesk_demi', Arial, sans-serif;
	font-weight: normal;
	font-size: 32px;
	line-height: 40px;
	color: var(--gh-text-primary);
	text-align: center;
}

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

.gh-sec-fronts__card {
	display: flex;
	flex-direction: column;
	width: 352px;
	background: var(--gh-white);
	border-radius: 8px;
	overflow: hidden;
}

.gh-sec-fronts__card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 32px 32px 56px;
}

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

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

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

@media (min-width: 1024px) and (max-width: 1439px) {
	.gh-sec-fronts {
		padding: 96px 40px;
	}
}

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

	.gh-sec-fronts__cards {
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.gh-sec-fronts {
		padding: 64px 16px;
	}

	.gh-sec-fronts__cards {
		justify-content: center;
	}

	.gh-sec-fronts__card {
		width: calc(50% - 16px);
	}
}

@media (max-width: 480px) {
	.gh-sec-fronts {
		gap: 25px;
	}

	.gh-sec-fronts__cards {
		gap: 20px;
	}

	.gh-sec-fronts__card {
		width: 100%;
	}
}
