/*
 * Profile tables (My Courses progress, Orders, Quizzes) all render as
 * table.lp-list-table with a hardcoded tbody font-size: 14px from
 * LearnPress's own CSS, and their title-column link inherits the plain
 * body text color (grey), making it unclear it's clickable. Bump the
 * font size to match the site's body text on mobile, and match the
 * title links to the site's link/active accent color.
 */
.learn-press-profile-course__progress .lp_profile_course_progress__item td:nth-child(2) a,
.profile-list-orders td.column-order-number a,
.profile-list-quizzes tbody td:first-child a {
	color: var(--thim-body_primary_color);
}

@media (max-width: 768px) {
	.learn-press-profile-course__progress table.lp-list-table tbody,
	.profile-list-orders tbody,
	.profile-list-quizzes tbody {
		font-size: var(--thim-font_body-font-size);
	}
}
