/* ================================================================
 *  Dashboard — My Interests Tab
 * ============================================================= */

.mfv-dash-interests {
	max-width: 680px;
	padding: 8px 0;
}

.mfv-dash-interests__header h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
}
.mfv-dash-interests__header p {
	font-size: 14px;
	color: #64748b;
	margin: 0 0 24px;
	line-height: 1.5;
}

/* ── Chip grid ─────────────────────────────────────────────────── */
.mfv-dash-interests__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}

.mfv-dash-interests__chip {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 18px 12px 14px;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
	user-select: none;
	font-family: inherit;
}
.mfv-dash-interests__chip:hover {
	border-color: #99f6e4;
	background: #f0fdfa;
	box-shadow: 0 2px 8px rgba(14, 116, 144, 0.08);
}
.mfv-dash-interests__chip:active {
	transform: scale(0.97);
}

/* Selected state */
.mfv-dash-interests__chip--on {
	border-color: #0e7490;
	background: linear-gradient(135deg, #0e7490, #0891b2);
	box-shadow: 0 4px 12px rgba(14, 116, 144, 0.25);
}
.mfv-dash-interests__chip--on .mfv-dash-interests__chip-icon { color: #fff; }
.mfv-dash-interests__chip--on .mfv-dash-interests__chip-label { color: #fff; }
.mfv-dash-interests__chip--on .mfv-dash-interests__chip-desc { color: rgba(255, 255, 255, 0.7); }

/* Chip internals */
.mfv-dash-interests__chip-icon {
	color: #0e7490;
	transition: color 0.2s;
}
.mfv-dash-interests__chip-label {
	font-size: 14px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.2;
	transition: color 0.2s;
}
.mfv-dash-interests__chip-desc {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.3;
	transition: color 0.2s;
}

/* ── Actions ───────────────────────────────────────────────────── */
.mfv-dash-interests__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}
.mfv-dash-interests__actions .button-primary {
	padding: 10px 28px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 10px;
	height: auto;
	line-height: 1.4;
}
.mfv-dash-interests__actions .button-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.mfv-dash-interests__status {
	font-size: 13px;
	font-weight: 600;
}
.mfv-dash-interests__status--ok  { color: #059669; }
.mfv-dash-interests__status--err { color: #dc2626; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.mfv-dash-interests__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.mfv-dash-interests__chip {
		padding: 14px 8px 10px;
	}
	.mfv-dash-interests__chip-desc {
		display: none;
	}
	.mfv-dash-interests__header h2 {
		font-size: 18px;
	}
}

@media (max-width: 380px) {
	.mfv-dash-interests__grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	.mfv-dash-interests__chip {
		padding: 12px 6px 8px;
	}
	.mfv-dash-interests__chip-label {
		font-size: 12px;
	}
}
