/* FoundersClubb -- small custom layer on top of theme.json global styles.
   Kept intentionally minimal: no animation library, no icon font, no
   utility-class framework. */

.fcb-header {
	border-bottom: 1px solid var(--wp--preset--color--border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.fcb-nav-cta a {
	background: var(--wp--preset--color--ink);
	color: var(--wp--preset--color--on-dark) !important;
	padding: 0.55rem 1.2rem;
	border-radius: 999px;
}

/* Reusable "pill" badge -- used for hero stats, program highlights. */
.fcb-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--wp--preset--color--on-dark);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
}
.fcb-pill.is-light {
	background: var(--wp--preset--color--surface);
	border-color: var(--wp--preset--color--border);
	color: var(--wp--preset--color--text);
}

/* Reusable hairline card -- mentors, programs, testimonials. */
.fcb-card {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 16px;
	background: var(--wp--preset--color--white);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fcb-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--wp--preset--shadow--card);
}

@media (prefers-reduced-motion: reduce) {
	.fcb-card {
		transition: none;
	}
	.fcb-card:hover {
		transform: none;
	}
}

/* Comparison / feature tables -- quieter than the WP core default. */
.fcb-compare-table table {
	border-collapse: collapse;
	width: 100%;
}
.fcb-compare-table th,
.fcb-compare-table td {
	padding: 0.9rem 1rem;
	border-bottom: 1px solid var(--wp--preset--color--border);
	text-align: left;
}
.fcb-compare-table th {
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--preset--color--text-muted);
	font-weight: 600;
}

img {
	height: auto;
	max-width: 100%;
}

/* Sensei auto-injects a prev/next-course nav and an (empty, until modules
   exist) module header at the end of a course's content. Style the nav to
   match the design system instead of leaving it as plain unstyled text;
   collapse the empty module header so it takes no visible space. */
.single-course #post-entries.post-entries {
	border-top: 1px solid var(--wp--preset--color--border);
	margin-top: 3rem;
	padding-top: 1.5rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.single-course #post-entries a {
	font-weight: 600;
	font-size: var(--wp--preset--font-size--small);
}
.single-course .course-lessons > header h2:empty {
	display: none;
	margin: 0;
}

/* Member Dashboard -- [fcb_my_courses] output. */
.fcb-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem;
}
.fcb-dashboard-card {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 1.5rem;
}
.fcb-dashboard-card h3 {
	margin: 0;
	font-size: var(--wp--preset--font-size--medium);
}
.fcb-dashboard-link {
	display: inline-block;
	margin-top: 0.75rem;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	color: var(--wp--preset--color--blue);
}
.fcb-empty-state {
	color: var(--wp--preset--color--text-muted);
	font-size: var(--wp--preset--font-size--small);
}
