/**
 * Security hub hero section styles — Figma node 3570:6089.
 */

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

.gh-sec-hero::before {
	content: '';
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%) rotate(6deg);
	width: 760px;
	height: 380px;
	background:
		radial-gradient(ellipse at 30% 50%, rgba(255, 200, 80, 0.5) 0%, transparent 60%),
		radial-gradient(ellipse at 50% 50%, rgba(255, 140, 100, 0.4) 0%, transparent 55%),
		radial-gradient(ellipse at 70% 50%, rgba(180, 230, 140, 0.4) 0%, transparent 60%),
		radial-gradient(ellipse at 60% 40%, rgba(220, 160, 220, 0.3) 0%, transparent 55%);
	filter: blur(40px);
	pointer-events: none;
	z-index: 0;
}

.gh-sec-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	max-width: 1120px;
	width: 100%;
}

.gh-sec-hero__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

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

.gh-sec-hero__subtitle {
	margin: 0;
	max-width: 832px;
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	color: var(--gh-text-secondary);
}

.gh-sec-hero__actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.gh-sec-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	width: 200px;
	padding: 13px 16px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
}

.gh-sec-hero__btn--outline {
	border: 1px solid var(--gh-text-primary);
	font-family: 'avenir_next_worlddemi', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: var(--gh-text-primary);
}

.gh-sec-hero__btn--outline:hover {
	background: var(--gh-text-primary);
	color: var(--gh-white);
}

.gh-sec-hero__btn--link {
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
	color: var(--gh-text-primary);
	text-decoration: underline;
}

.gh-sec-hero__btn--link:hover {
	color: var(--gh-text-secondary);
}

.gh-sec-hero__quote {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1120px;
	width: 100%;
	background: var(--gh-white);
	border-radius: 24px;
	padding: 48px 64px;
}

.gh-sec-hero__quote-body {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 640px;
}

.gh-sec-hero__blockquote {
	margin: 0;
}

.gh-sec-hero__blockquote p {
	margin: 0;
	font-family: 'schibsted_grotesk', Arial, sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 32px;
	color: var(--gh-text-primary);
}

.gh-sec-hero__author {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.gh-sec-hero__author-name {
	font-family: 'avenir_next_worldbold', 'Verdana';
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: var(--gh-text-primary);
}

.gh-sec-hero__author-role {
	font-family: 'avenir_next_worldmedium', 'Verdana';
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	color: var(--gh-text-secondary);
}

.gh-sec-hero__quote-img {
	width: 256px;
	height: 280px;
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
}

.gh-sec-hero__quote-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

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

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

	.gh-sec-hero__quote {
		gap: 32px;
		padding: 32px;
	}
}

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

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

	.gh-sec-hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.gh-sec-hero__btn {
		width: 100%;
		max-width: 328px;
		padding: 13px 16px;
		font-size: 16px;
		line-height: 24px;
	}
}

@media (max-width: 480px) {
	.gh-sec-hero__quote {
		flex-direction: column;
		gap: 32px;
	}

	.gh-sec-hero__quote-body {
		max-width: 100%;
	}

	.gh-sec-hero__quote-img {
		width: 100%;
		height: 240px;
	}
}
