/**
 * Home closing CTA section styles — Figma node 2617:3538.
 */

.gh-cta {
	max-width: 1120px;
	margin: 0 auto;
	padding: 80px 0 120px;
}

.gh-cta__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--gh-accent);
	border-radius: 24px;
	padding-left: 64px;
	overflow: hidden;
}

.gh-cta__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 448px;
	flex-shrink: 1;
	min-width: 0;
	/* padding: 48px 0; */
}

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

.gh-cta__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);
}

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

.gh-cta__btn-row .gh-btn--primary,
.gh-cta__body .gh-btn--primary {
	align-self: flex-start;
}

.gh-cta__media {
	width: 544px;
	height: 272px;
	flex-shrink: 1;
	min-width: 0;
	overflow: hidden;
}

.gh-cta__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 33px 32.4px 0 32.4px;
}
@media (min-width: 1024px) and (max-width: 1300px) {
	.gh-cta {
		padding: 40px 0 100px;
	}
}
/* iPad / tablet (768–1023px) keeps the desktop side-by-side layout — the body
   and media shrink to fit (see flex-shrink/min-width above). Mobile design only
   applies ≤767px. */
@media (max-width: 991px) {
	.gh-cta {
		padding: 48px 0 48px;
	}
	.gh-cta__card {
		padding: 24px 24px 0px;
	}
	.gh-cta__title {
		font-size: 24px;
		line-height: 32px;
	}

	.gh-cta__subtitle {
		font-size: 14px;
		line-height: 24px;
	}
	.gh-cta__media img{
		padding: 12px 0 0px 14px;
		object-fit: cover;
	}
	.gh-cta__body{
		padding: 0 0 24px;
	}
	.gh-cta__media{
		height: 230px;
	}
}
@media (max-width: 767px) {
	/* Mobile — Figma node 3247:13074. Horizontal gutter comes from the global
	   .site-content (16px at this tier); the card supplies its own 24px inset.
	   The card stacks here. */
	.gh-cta {
		padding: 40px 0 56px;
	}

	.gh-cta__card {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		border-radius: 16px;
		padding: 24px 24px 0;
	}

	.gh-cta__body {
		width: auto;
		gap: 16px;
		padding: 0;
	}

	.gh-cta__title {
		font-size: 24px;
		line-height: 32px;
	}

	.gh-cta__subtitle {
		font-size: 14px;
		line-height: 24px;
	}

	.gh-cta__media {
		width: 100%;
		height: auto;
		margin-top: 0;
		border-radius: 8px;
	}

	.gh-cta__media img {
		width: 100%;
		height: auto;
		padding: 0;
		object-fit: cover;
		object-position: top;
		border-radius: 8px;
	}
}
