/* Extracted from lib.css — loaded conditionally via functions.php */

/* ================================================================
   DASHBOARD
   Member dashboard — /dashboard/ (page-dashboard.php)
   All classes prefixed .lib-dash-
   ================================================================ */

/* ── Scoped variables ─────────────────────────────────────────── */

.lib-dash-wrap {
	--d-bg:        #F4F6F8;
	--d-surface:   #ffffff;
	--d-text-mid:  #4a5568;
	--d-border:    #e2e8f0;
	--d-border-lt: #f0f2f5;
	--d-r:         16px;
	--d-r-lg:      24px;
	--d-r-pill:    100px;
	--d-shadow-sm: 0 1px 4px rgba(10,30,63,.06), 0 1px 2px rgba(10,30,63,.04);
	--d-shadow:    0 4px 20px rgba(10,30,63,.08), 0 1px 4px rgba(10,30,63,.04);
	--d-shadow-lg: 0 16px 48px rgba(10,30,63,.12), 0 4px 12px rgba(10,30,63,.06);
	background: var(--d-bg);
}

.lib-dash-wrap *,
.lib-dash-wrap *::before,
.lib-dash-wrap *::after { box-sizing: border-box; }

.lib-dash-wrap a { text-decoration: none; }

/* ── Login (logged-out state) ─────────────────────────────────── */

.lib-dash-login {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.lib-dash-login-card {
	background: var(--d-surface);
	border-radius: var(--d-r-lg);
	padding: 48px;
	max-width: 440px;
	width: 100%;
	box-shadow: var(--d-shadow);
	text-align: center;
}

.lib-dash-login-card h1 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.75rem;
	font-weight: 400;
	color: var(--wp--preset--color--primary);
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}

.lib-dash-login-card > p {
	color: var(--wp--preset--color--mid-grey);
	margin: 0 0 24px;
	font-size: 15px;
}

.lib-dash-login-card label {
	display: block;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	color: var(--wp--preset--color--primary);
	margin-bottom: 4px;
}

.lib-dash-login-card .input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid var(--d-border);
	border-radius: 10px;
	font-size: 15px;
	font-family: var(--wp--preset--font-family--body);
	margin-bottom: 16px;
	transition: border-color 0.15s;
}

.lib-dash-login-card .input:focus {
	outline: none;
	border-color: var(--wp--preset--color--teal);
	box-shadow: 0 0 0 3px rgba(78,165,156,0.15);
}

.lib-dash-login-card .login-remember {
	text-align: left;
	font-size: 13px;
	color: var(--wp--preset--color--mid-grey);
	margin-bottom: 16px;
}

.lib-dash-login-card .button {
	width: 100%;
	padding: 12px;
	background: var(--wp--preset--color--teal);
	color: white;
	border: none;
	border-radius: var(--d-r-pill);
	font-family: var(--wp--preset--font-family--body);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.lib-dash-login-card .button:hover {
	background: var(--wp--preset--color--teal-dark);
}

.lib-dash-login-lost {
	margin-top: 16px;
}

.lib-dash-login-lost a {
	color: var(--wp--preset--color--teal);
	font-size: 13px;
	font-weight: 600;
}

.lib-dash-login-lost a:hover {
	color: var(--wp--preset--color--teal-dark);
	text-decoration: underline;
}

/* ── Hero ─────────────────────────────────────────────────────── */

.lib-dash-hero {
	background: linear-gradient(160deg, #0d3d38 0%, #1a6b62 35%, #4EA59C 70%, #6bbcb4 100%);
	position: relative;
	overflow: hidden;
	padding: 48px 24px 56px;
}

.lib-dash-hero::before {
	content: '';
	position: absolute;
	top: -120px; right: -80px;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	pointer-events: none;
}

.lib-dash-hero::after {
	content: '';
	position: absolute;
	bottom: -60px; left: 10%;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(249,130,119,0.1) 0%, transparent 70%);
	pointer-events: none;
}

.lib-dash-noise {
	position: absolute;
	inset: 0;
	opacity: 0.03;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-size: 256px 256px;
}

.lib-dash-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

.lib-dash-hero-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

.lib-dash-hero-greeting {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.75rem, 3.5vw, 2.8rem);
	font-weight: 400;
	color: white;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 12px;
}

.lib-dash-hero-greeting em {
	font-style: italic;
	color: var(--wp--preset--color--salmon);
}

.lib-dash-hero-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.55);
	line-height: 1.7;
	max-width: 520px;
	margin: 0 0 24px;
}

.lib-dash-hero-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.lib-dash-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 16px 6px 8px;
	background: rgba(78,165,156,0.15);
	border: 1px solid rgba(78,165,156,0.25);
	border-radius: var(--d-r-pill);
	font-size: 12px;
	font-weight: 700;
	color: #7dd3cc;
	letter-spacing: 0.02em;
}

.lib-dash-badge-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--wp--preset--color--teal);
	box-shadow: 0 0 8px rgba(78,165,156,0.6);
	animation: lib-dash-pulse 2s ease-in-out infinite;
}

@keyframes lib-dash-pulse {
	0%, 100% { box-shadow: 0 0 8px rgba(78,165,156,0.6); }
	50% { box-shadow: 0 0 16px rgba(78,165,156,0.9); }
}

.lib-dash-stat-pills {
	display: flex;
	gap: 8px;
}

.lib-dash-stat-pill {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,0.45);
	padding: 5px 12px;
	background: rgba(255,255,255,0.06);
	border-radius: var(--d-r-pill);
	border: 1px solid rgba(255,255,255,0.08);
}

.lib-dash-stat-pill strong {
	color: rgba(255,255,255,0.8);
	font-weight: 700;
}

/* Founders image */

.lib-dash-founders { position: relative; }

.lib-dash-founders-img {
	width: 220px; height: 220px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255,255,255,0.1);
	box-shadow: 0 16px 48px rgba(0,0,0,0.3);
	display: block;
}

.lib-dash-founders-ring {
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px dashed rgba(78,165,156,0.25);
	animation: lib-dash-spin 30s linear infinite;
}

@keyframes lib-dash-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.lib-dash-founders-label {
	position: absolute;
	bottom: -8px; left: 50%;
	transform: translateX(-50%);
	background: var(--wp--preset--color--deep-navy);
	border: 1px solid rgba(78,165,156,0.3);
	padding: 4px 14px;
	border-radius: var(--d-r-pill);
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,0.6);
	white-space: nowrap;
}

/* Wave bottom edge */

.lib-dash-wave {
	position: absolute;
	bottom: -1px; left: 0;
	width: 100%; height: 48px;
	z-index: 2;
}

/* ── Main content ─────────────────────────────────────────────── */

.lib-dash-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 80px;
	position: relative;
	z-index: 1;
}

/* ── Section headings ─────────────────────────────────────────── */

.lib-dash-sh {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 16px;
}

.lib-dash-eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--teal);
	margin-bottom: 4px;
}

.lib-dash-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 400;
	color: var(--wp--preset--color--primary);
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
}

.lib-dash-title em {
	font-style: italic;
	color: var(--wp--preset--color--teal);
}

.lib-dash-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--wp--preset--color--teal);
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	transition: color 0.15s;
}

.lib-dash-link:hover { color: var(--wp--preset--color--teal-dark); }

.lib-dash-link svg { transition: transform 0.15s; }

.lib-dash-link:hover svg { transform: translateX(2px); }

/* ── Program banners ──────────────────────────────────────────── */

.lib-dash-programs {
	margin-top: 8px;
	margin-bottom: 40px;
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lib-dash-program {
	border-radius: var(--d-r-lg);
	padding: 20px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	box-shadow: var(--shadow-teal), 0 0 0 1px rgba(78,165,156,0.2);
	position: relative;
	overflow: hidden;
}

.lib-dash-program::before {
	content: '';
	position: absolute;
	top: -30px; right: -30px;
	width: 120px; height: 120px;
	background: rgba(255,255,255,0.06);
	border-radius: 50%;
}

.lib-dash-program-content {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
	z-index: 1;
}

.lib-dash-program-icon {
	width: 44px; height: 44px;
	background: rgba(255,255,255,0.15);
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

.lib-dash-program-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.6);
	margin-bottom: 2px;
}

.lib-dash-program-name {
	font-family: var(--wp--preset--font-family--display);
	font-size: 17px;
	font-weight: 500;
	color: white;
	letter-spacing: -0.01em;
}

.lib-dash-program-btn {
	background: white !important;
	color: var(--wp--preset--color--teal-dark) !important;
	border: none;
	border-radius: var(--d-r-pill);
	padding: 10px 24px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	position: relative;
	z-index: 1;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
}

.lib-dash-program-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
	color: var(--wp--preset--color--teal-dark) !important;
}

/* ── Support section ──────────────────────────────────────────── */

.lib-dash-help {
	margin-bottom: 48px;
}

.lib-dash-help-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.lib-dash-help-card {
	background: var(--d-surface);
	border: 1.5px solid var(--d-border);
	border-radius: var(--d-r);
	overflow: hidden;
	box-shadow: var(--d-shadow-sm);
	transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.lib-dash-help-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--d-shadow-lg);
}

.lib-dash-hch {
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.lib-dash-hch--teal {
	background: linear-gradient(135deg, #e8f5f3, #f0faf8);
	border-bottom: 1px solid rgba(78,165,156,0.15);
}

.lib-dash-hch--salmon {
	background: linear-gradient(135deg, #fce9e7, #fef4f3);
	border-bottom: 1px solid rgba(249,130,119,0.15);
}

.lib-dash-hch--navy {
	background: linear-gradient(135deg, #e8ecf2, #eef1f6);
	border-bottom: 1px solid rgba(10,30,63,0.1);
}

.lib-dash-hci {
	width: 44px; height: 44px;
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

.lib-dash-hci--teal {
	background: var(--wp--preset--color--teal);
	color: white;
	box-shadow: 0 4px 12px rgba(78,165,156,0.3);
}

.lib-dash-hci--salmon {
	background: var(--wp--preset--color--salmon);
	color: white;
	box-shadow: 0 4px 12px rgba(249,130,119,0.3);
}

.lib-dash-hci--navy {
	background: var(--wp--preset--color--deep-navy);
	color: white;
	box-shadow: 0 4px 12px rgba(10,30,63,0.3);
}

.lib-dash-hc-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 17px;
	font-weight: 500;
	color: var(--wp--preset--color--primary);
	letter-spacing: -0.01em;
}

.lib-dash-chip {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: var(--d-r-pill);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 4px;
	display: inline-block;
}

.lib-dash-chip--teal {
	background: rgba(78,165,156,0.1);
	color: var(--wp--preset--color--teal-dark);
}

.lib-dash-chip--salmon {
	background: rgba(249,130,119,0.1);
	color: var(--wp--preset--color--salmon-dark);
}

.lib-dash-chip--navy {
	background: rgba(10,30,63,0.08);
	color: var(--wp--preset--color--deep-navy);
}

.lib-dash-hcb {
	padding: 20px 24px;
}

.lib-dash-hcb p {
	font-size: 14px;
	color: var(--d-text-mid);
	line-height: 1.7;
	margin: 0 0 16px;
}

/* ── Buttons ──────────────────────────────────────────────────── */

.lib-dash-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	border-radius: var(--d-r-pill);
	font-family: var(--wp--preset--font-family--body);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
	text-decoration: none;
	line-height: 1;
}

.lib-dash-btn--teal {
	background: var(--wp--preset--color--teal) !important;
	color: white !important;
	padding: 11px 24px;
	font-size: 14px;
	box-shadow: var(--shadow-teal);
}

.lib-dash-btn--teal:hover {
	background: var(--wp--preset--color--teal-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(78,165,156,0.35);
	color: white !important;
}

.lib-dash-btn--salmon {
	background: var(--wp--preset--color--salmon) !important;
	color: white !important;
	padding: 11px 24px;
	font-size: 14px;
	box-shadow: 0 6px 20px rgba(249,130,119,0.28);
}

.lib-dash-btn--salmon:hover {
	background: var(--wp--preset--color--salmon-dark) !important;
	transform: translateY(-2px);
	color: white !important;
}

.lib-dash-btn--ghost {
	background: transparent !important;
	color: var(--wp--preset--color--teal) !important;
	border: 1.5px solid var(--wp--preset--color--teal) !important;
	padding: 10px 22px;
	font-size: 13px;
}

.lib-dash-btn--ghost:hover {
	background: var(--wp--preset--color--teal-light) !important;
	color: var(--wp--preset--color--teal-dark) !important;
}

.lib-dash-btn--navy {
	background: var(--wp--preset--color--deep-navy) !important;
	color: white !important;
	padding: 11px 24px;
	font-size: 14px;
	box-shadow: 0 6px 20px rgba(10,30,63,0.28);
}

.lib-dash-btn--navy:hover {
	background: #142d54 !important;
	transform: translateY(-2px);
	color: white !important;
}

/* ── Two-column grid ──────────────────────────────────────────── */

.lib-dash-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	margin-bottom: 48px;
}

/* ── Sidebar ──────────────────────────────────────────────────── */

.lib-dash-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Refresh account link */

.lib-dash-refresh {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--teal);
	text-decoration: none;
	opacity: 0.7;
	transition: opacity 0.15s;
}
.lib-dash-refresh:hover {
	opacity: 1;
	text-decoration: underline;
}

/* Membership card */

.lib-dash-mc {
	background: var(--d-surface);
	border: 1.5px solid var(--d-border);
	border-radius: var(--d-r-lg);
	overflow: hidden;
	box-shadow: var(--d-shadow);
}

.lib-dash-mc-header {
	background: linear-gradient(135deg, var(--wp--preset--color--deep-navy), #1a3a66);
	padding: 24px;
	position: relative;
	overflow: hidden;
}

.lib-dash-mc-header::before {
	content: '';
	position: absolute;
	top: -40px; right: -40px;
	width: 120px; height: 120px;
	background: rgba(78,165,156,0.12);
	border-radius: 50%;
}

.lib-dash-mc-header::after {
	content: '';
	position: absolute;
	bottom: -20px; left: -20px;
	width: 80px; height: 80px;
	background: rgba(249,130,119,0.08);
	border-radius: 50%;
}

.lib-dash-mc-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.5);
	margin-bottom: 6px;
	position: relative;
	z-index: 1;
}

.lib-dash-mc-name {
	font-family: var(--wp--preset--font-family--display);
	font-size: 24px;
	font-weight: 500;
	color: white;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.lib-dash-mc-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	padding: 4px 12px;
	background: rgba(78,165,156,0.2);
	border: 1px solid rgba(78,165,156,0.3);
	border-radius: var(--d-r-pill);
	font-size: 11px;
	font-weight: 600;
	color: #7dd3cc;
	position: relative;
	z-index: 1;
}

.lib-dash-mc-body {
	padding: 20px 24px;
}

.lib-dash-mc-sl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--mid-grey);
	margin-bottom: 12px;
}

.lib-dash-mc-incl {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--d-border-lt);
	color: var(--wp--preset--color--primary);
	transition: all 0.15s;
}

.lib-dash-mc-incl:last-child { border-bottom: none; }

.lib-dash-mc-incl:hover { color: var(--wp--preset--color--teal-dark); }

.lib-dash-mc-incl:hover .lib-dash-mc-icon {
	background: var(--wp--preset--color--teal);
	color: white;
}

.lib-dash-mc-icon {
	width: 32px; height: 32px;
	border-radius: 8px;
	background: rgba(78,165,156,0.1);
	color: var(--wp--preset--color--teal-dark);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}

.lib-dash-mc-text {
	font-size: 13px;
	font-weight: 600;
}

.lib-dash-mc-arrow {
	margin-left: auto;
	color: var(--d-border);
	transition: color 0.15s, transform 0.15s;
}

.lib-dash-mc-incl:hover .lib-dash-mc-arrow {
	color: var(--wp--preset--color--teal);
	transform: translateX(2px);
}

/* Account card */

.lib-dash-account {
	background: var(--d-surface);
	border: 1.5px solid var(--d-border);
	border-radius: var(--d-r);
	padding: 20px;
	box-shadow: var(--d-shadow-sm);
}

.lib-dash-account-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lib-dash-account-links li {
	border-bottom: 1px solid var(--d-border-lt);
}

.lib-dash-account-links li:last-child { border-bottom: none; }

.lib-dash-account-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--d-text-mid);
	transition: color 0.15s;
}

.lib-dash-account-links a:hover { color: var(--wp--preset--color--teal-dark); }

.lib-dash-account-links a svg { color: var(--wp--preset--color--mid-grey); flex-shrink: 0; }

.lib-dash-account-links a:hover svg { color: var(--wp--preset--color--teal); }

/* Upsell card */

.lib-dash-upsell {
	background: linear-gradient(135deg, var(--wp--preset--color--salmon-light), #fff5f4);
	border: 1.5px solid rgba(249,130,119,0.2);
	border-radius: var(--d-r);
	padding: 20px;
	text-align: center;
}

.lib-dash-upsell h4 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 16px;
	font-weight: 500;
	color: var(--wp--preset--color--primary);
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}

.lib-dash-upsell p {
	font-size: 13px;
	color: var(--d-text-mid);
	line-height: 1.6;
	margin: 0 0 14px;
}

/* ── Podcast card ─────────────────────────────────────────────── */

.lib-dash-podcast-wrap {
	margin-bottom: 28px;
}

.lib-dash-podcast {
	background: var(--wp--preset--color--deep-navy);
	border-radius: var(--d-r-lg);
	padding: 24px 28px;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: 0 16px 48px rgba(10,30,63,0.3);
	position: relative;
	overflow: hidden;
	color: white;
}

.lib-dash-podcast::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(135deg, transparent 40%, rgba(78,165,156,0.08) 100%);
}

.lib-dash-podcast-art {
	width: 72px; height: 72px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--wp--preset--color--teal), var(--wp--preset--color--salmon));
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(0,0,0,0.3);
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.lib-dash-podcast-art img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}

.lib-dash-podcast-info {
	flex: 1;
	position: relative;
	z-index: 1;
}

.lib-dash-podcast-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--salmon);
	margin-bottom: 4px;
}

.lib-dash-podcast-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 16px;
	font-weight: 500;
	color: white;
	letter-spacing: -0.01em;
	margin-bottom: 4px;
}

.lib-dash-podcast-ep {
	font-size: 12px;
	color: rgba(255,255,255,0.45);
}

.lib-dash-podcast-play {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--wp--preset--color--teal);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(78,165,156,0.4);
	transition: all 0.2s;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.lib-dash-podcast:hover .lib-dash-podcast-play {
	transform: scale(1.08);
	box-shadow: 0 8px 24px rgba(78,165,156,0.5);
}

/* ── Blog tip cards ───────────────────────────────────────────── */

.lib-dash-tips-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.lib-dash-tip {
	background: var(--d-surface);
	border: 1.5px solid var(--d-border);
	border-radius: var(--d-r);
	overflow: hidden;
	box-shadow: var(--d-shadow-sm);
	transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
	color: var(--wp--preset--color--primary);
	display: flex;
	flex-direction: column;
}

.lib-dash-tip:hover {
	transform: translateY(-6px);
	box-shadow: var(--d-shadow-lg);
	border-color: transparent;
	color: var(--wp--preset--color--primary);
}

.lib-dash-tip-img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
	display: block;
	background: linear-gradient(135deg, #e8ecf2, var(--wp--preset--color--teal-light));
}

.lib-dash-tip-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lib-dash-tip-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--teal);
	margin-bottom: 6px;
}

.lib-dash-tip-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 15px;
	font-weight: 500;
	color: var(--wp--preset--color--primary);
	letter-spacing: -0.01em;
	line-height: 1.35;
	margin-bottom: 8px;
}

.lib-dash-tip:hover .lib-dash-tip-title { color: var(--wp--preset--color--teal-dark); }

.lib-dash-tip-meta {
	font-size: 11px;
	color: var(--wp--preset--color--mid-grey);
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid var(--d-border-lt);
}

/* ── Dashboard footer ─────────────────────────────────────────── */

.lib-dash-footer {
	background: var(--d-surface);
	border-top: 1px solid var(--d-border);
	padding: 24px;
	text-align: center;
}

.lib-dash-footer p {
	font-size: 12px;
	color: var(--wp--preset--color--mid-grey);
	margin: 0;
}

.lib-dash-footer a {
	color: var(--wp--preset--color--teal);
	font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1100px) {
	.lib-dash-grid {
		grid-template-columns: 1fr;
	}
	.lib-dash-sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.lib-dash-hero {
		padding: 32px 16px 44px;
	}
	.lib-dash-hero-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}
	.lib-dash-hero-sub {
		margin-left: auto;
		margin-right: auto;
	}
	.lib-dash-hero-meta {
		justify-content: center;
	}
	.lib-dash-founders {
		display: none;
	}
	.lib-dash-main {
		padding: 0 16px 60px;
	}
	.lib-dash-program {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	.lib-dash-program-content {
		flex-direction: column;
	}
	.lib-dash-help-grid {
		grid-template-columns: 1fr;
	}
	.lib-dash-sidebar {
		grid-template-columns: 1fr;
	}
	.lib-dash-tips-grid {
		grid-template-columns: 1fr;
	}
	.lib-dash-podcast {
		flex-direction: column;
		text-align: center;
		padding: 24px;
	}
}

@media (max-width: 480px) {
	.lib-dash-stat-pills {
		flex-direction: column;
		align-items: center;
	}
}

/* ── Reduced motion ───────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.lib-dash-wrap *,
	.lib-dash-wrap *::before,
	.lib-dash-wrap *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
