.hub-featured-resources {
	padding: var(--fg-section-padding-y) var(--fg-space-4);
	background: var(--fg-color-muted-surface-40);
	border-top: var(--fg-border-width) solid var(--fg-color-border);
	border-bottom: var(--fg-border-width) solid var(--fg-color-border);
}

.hub-featured-resources__inner {
	width: min(100%, var(--fg-content-6xl));
	margin: 0 auto;
}

.hub-featured-resources__header {
	width: min(100%, var(--fg-content-4xl));
	margin: 0 auto var(--fg-space-10);
	text-align: center;
}

.hub-featured-resources__eyebrow {
	margin: 0 0 var(--fg-space-3);
	color: var(--fg-color-muted);
	font-size: var(--fg-text-xs);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-tight);
	letter-spacing: var(--fg-tracking-section);
	text-transform: uppercase;
}

.hub-featured-resources__title {
	margin: 0;
	color: var(--fg-color-text);
	font-size: clamp(var(--fg-text-3xl), 3vw, var(--fg-text-4xl));
	font-weight: var(--fg-weight-bold);
	line-height: var(--fg-leading-tight);
	letter-spacing: var(--fg-tracking-tight);
	text-wrap: balance;
}

.hub-featured-resources__intro {
	margin: var(--fg-space-4) 0 0;
	color: var(--fg-color-muted);
	font-size: var(--fg-text-base);
	line-height: var(--fg-leading-relaxed);
	text-wrap: pretty;
}

.hub-featured-resources__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--fg-space-4);
}

.hub-featured-resources__card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: var(--fg-space-5);
	align-items: flex-start;
	min-height: 100%;
	padding: var(--fg-space-7);
	border: var(--fg-border-width) solid var(--fg-color-border);
	border-radius: var(--fg-radius-card);
	background: var(--fg-color-background);
	color: var(--fg-color-text);
	text-decoration: none;
	box-shadow: var(--fg-shadow-card);
	transition: border-color var(--fg-transition-fast), transform var(--fg-transition-fast), box-shadow var(--fg-transition-fast);
}

.hub-featured-resources__card:hover {
	border-color: var(--fg-color-text-30);
	transform: translateY(calc(var(--fg-space-1) * -1));
	box-shadow: var(--fg-shadow-md);
}

.hub-featured-resources__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--fg-space-12);
	height: var(--fg-space-12);
	border-radius: var(--fg-radius-lg);
	background: var(--fg-color-muted-surface);
	color: var(--fg-color-text);
}

.hub-featured-resources__icon-svg {
	width: var(--fg-space-5);
	height: var(--fg-space-5);
}

.hub-featured-resources__content {
	display: grid;
	gap: var(--fg-space-3);
}

.hub-featured-resources__label {
	color: var(--fg-color-muted);
	font-size: var(--fg-text-xs);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-tight);
	letter-spacing: var(--fg-tracking-kicker);
	text-transform: uppercase;
}

.hub-featured-resources__heading {
	color: var(--fg-color-text);
	font-size: var(--fg-text-xl);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-snug);
	text-wrap: balance;
}

.hub-featured-resources__body {
	color: var(--fg-color-muted);
	font-size: var(--fg-text-sm);
	line-height: var(--fg-leading-relaxed);
}

.hub-featured-resources__cta {
	display: inline-flex;
	align-items: center;
	gap: var(--fg-space-2);
	width: fit-content;
	color: var(--fg-color-text);
	font-size: var(--fg-text-sm);
	font-weight: var(--fg-weight-semibold);
	line-height: var(--fg-leading-tight);
}

.hub-featured-resources__arrow {
	width: var(--fg-space-4);
	height: var(--fg-space-4);
	transition: transform var(--fg-transition-fast);
}

.hub-featured-resources__card:hover .hub-featured-resources__arrow {
	transform: translateX(var(--fg-space-1));
}

@media (max-width: 767px) {
	.hub-featured-resources {
		padding-top: var(--fg-space-12);
		padding-bottom: var(--fg-space-12);
	}

	.hub-featured-resources__grid {
		grid-template-columns: 1fr;
	}

	.hub-featured-resources__card {
		padding: var(--fg-space-5);
	}
}
