.c-help-article-featured {
	.c-help-article-featured__container {
		display: flex;
		flex-direction: column;
		gap: calc(var(--spacing-xs) * 2);

		@media (width > 768px) {
			flex-direction: row;
		}
	}

	.c-help-article-featured__heading {
		@media (width > 768px) {
			flex: 0 0 25%;
		}
	}

	.c-help-article-featured__articles {
		display: flex;
		flex-direction: column;
		gap: calc(var(--spacing-xs) * 2);

		@media (width > 768px) {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: auto;
			flex: 0 0 75%;
		}
	}
}
