/* Loops Knowledge Hub — "Emotional Dysregulation With ADHD" — editorial guide page. Sensitive topic: quiet design, no alarm styling. Knowledge Hub direction: eyebrow labels, stacked insight blocks, 2x3 card grid, distinct pull quote, single CTA at the end only. Inline links point to existing pages; UK English, no em dashes. */ const ED_LINK = "text-brand-deep font-semibold hover:underline"; /* ---------------- Page nav ---------------- */ const ED_NAV_LINKS = [ { label: "How it shows up", href: "#shows-up" }, { label: "What helps", href: "#help" }, { label: "Knowledge Hub", href: "/adhd/knowledge-hub/" }, { label: "Blog", href: "/blog/" }, ]; const EdNav = () => { const [open, setOpen] = React.useState(false); const [scrolled, setScrolled] = React.useState(false); React.useEffect(() => { const onScroll = () => setScrolled(window.scrollY > 8); onScroll(); window.addEventListener("scroll", onScroll, { passive: true }); return () => window.removeEventListener("scroll", onScroll); }, []); React.useEffect(() => { if (!open) return; const onKey = (e) => e.key === "Escape" && setOpen(false); document.body.style.overflow = "hidden"; document.addEventListener("keydown", onKey); return () => { document.body.style.overflow = ""; document.removeEventListener("keydown", onKey); }; }, [open]); return (
Loops
); }; /* ---------------- Hero ---------------- */ const EdHero = () => (
ADHD Knowledge Hub

Emotional dysregulation with ADHD: why feelings arrive faster and hit harder

A small criticism ruins an entire day. A minor frustration ends a project. If emotions with ADHD feel like they happen to you at full volume, with no dial, that experience has a name, a mechanism, and a substantial research literature behind it.

); /* ---------------- Section 2: What it means ---------------- */ const EdWhatItMeans = () => (
The basics

Not wrong emotions. Unmodulated ones.

Emotional dysregulation doesn't mean having wrong emotions, or too many of them. It describes differences in how emotion is modulated: how quickly feelings arrive, how intense they are relative to the trigger, how hard they are to dial down once running, and how long they take to fade. The emotion itself is usually appropriate. What differs is amplitude and recovery time.

A useful frame: executive function includes inhibition, the ability to pause a response before it takes over. In ADHD that pause is less reliable, and it's less reliable for feelings just as it is for impulses. The emotion doesn't get a moment in the waiting room. It walks straight in.

This cuts in every direction. The same wiring that makes frustration huge also makes enthusiasm huge, joy huge, and interest consuming. The difficulty isn't the depth of feeling. It's what unregulated depth costs on the hard days.
); /* ---------------- Section 3: The evidence ---------------- */ const EdEvidence = () => (
What the research says

The evidence, honestly stated.

Reviews estimate that significant emotional dysregulation affects somewhere between roughly 30% and 70% of adults with ADHD, and it's associated with symptom severity, executive dysfunction, and reduced quality of life. A 2023 systematic review found adults with ADHD use non-adaptive emotional strategies, including suppression, rumination, catastrophising and self-blame, more frequently than people without ADHD.

Researchers increasingly describe emotional dysregulation as a core contributor to impairment rather than a side effect. At the same time, it's worth being precise about what remains debated: whether it should be treated as a central diagnostic feature of ADHD or as a very common associated one is a genuinely open question in the field. What isn't debated is that the experience is real, common and consequential.

); /* ---------------- Section 4: How it shows up (6 cards) ---------------- */ const ED_CARDS = [ { t: "Criticism lands like injury", body: (<>Feedback meant gently arrives as physical pain, and perceived rejection arrives even where none was sent. This pattern is often called rejection sensitive dysphoria. The label is contested. The experience isn't.) }, { t: "Setbacks end projects", body: (<>A mistake or a difficult day can tip a project from in-progress to abandoned. A lot of unfinished work isn't a focus story. It's an emotion story.) }, { t: "Shame compounds", body: (<>ADHD produces visible stumbles, and dysregulation amplifies each one. Over time this builds the shame spiral, where past attempts raise the cost of new ones.) }, { t: "Stress spirals faster", body: (<>Feeling overwhelmed degrades the exact capacity you'd use to address the overwhelm. It's why stress with ADHD deserves treatment as a mechanism, not a mood.) }, { t: "Relationships absorb the volatility", body: (<>A reasonable request lands as an accusation, an argument runs hotter than intended. None of it reflects how much you care, but follow-through and repair get harder when the emotional layer is this loud.) }, { t: "The heavy seasons hit heavier", body: (<>During grief and major loss, the regulation load can exceed anything willpower was ever going to cover.) }, ]; const EdShowsUp = () => (
Does any of this sound familiar?

Where the volume gets turned up.

These are the patterns people with ADHD describe most often when emotion is the mechanism underneath.

{ED_CARDS.map((c) => (

{c.t}

{c.body}

))}

Experiences differ. Some people feel this mainly as intensity, others as slow recovery, and some barely at all. It also fluctuates with sleep, stress, hormones and load, so the same trigger can produce entirely different days.

); /* ---------------- Section 5: Why "calm down" fails ---------------- */ const EdCalmDown = () => (
Something worth knowing

Why "calm down" doesn't work.

Telling a dysregulated brain to calm down is like telling an accelerating car to brake with brakes it doesn't currently have. The regulation capacity is exactly what's offline in the moment.

Strategies that work don't demand in-the-moment willpower. They change the conditions around the moment.

); /* ---------------- Section 6: What helps (5 stacked blocks + support note) ---------------- */ const EdWhatHelps = () => (
Working with it

Change the conditions, not the feeling.

Name it while it's happening

"This is dysregulation, not information" sounds small, but labelling an emotional state engages regulatory circuits and creates the beginning of distance. The feeling is real. Its size may not be accurate data about the situation.

Buy time before responding

Since the missing piece is the pause, install one externally. Draft the reply and send it tomorrow. Leave the room with a stated return time. Distance does what inhibition couldn't.

Lower the stakes in advance

Emotional spikes are largest where stakes feel highest. Smaller tasks, recoverable lapses and routines that expect bad days all shrink the emotional blast radius of ordinary setbacks before they happen.

Treat the emotional barrier as the actual target

When a task is avoided, the block is often a feeling rather than the task's difficulty. Addressing the dread or the anticipated shame directly beats another round of task-splitting.

Protect the physical foundations

Sleep loss reliably worsens emotional regulation in everyone. Exercise has measurable same-day effects on mood and impulse control. Unglamorous, and it moves the dial. There's more in the guide on sleep with ADHD.

One more thing, said plainly. If emotional intensity regularly tips into despair, rage that frightens you, or persistent low mood, that's genuinely worth raising with a doctor or a therapist. Depression and anxiety frequently travel alongside ADHD, and support for them works. This isn't a failure state. It's the appropriate next step. You can find crisis lines and specialist support on our help page.

); /* ---------------- Section 7: Open questions ---------------- */ const EdOpenQuestions = () => (
Honest limits

What we still don't know.

Beyond the core-feature debate, open questions remain about mechanism: how much ADHD emotional dysregulation reflects weaker top-down regulation versus stronger bottom-up emotional response, and how much overlap it shares with the anxiety and mood conditions that so often co-occur.

Treatment evidence is also thinner here than for attention symptoms. Medication helps some people's emotional symptoms and does little for others', and most trials weren't designed to measure emotional outcomes at all. The honest summary: the experience is well documented, the explanation is still being assembled.

); /* ---------------- Section 8: The bottom line ---------------- */ const EdBottomLine = () => (
The bottom line

The dial exists. It has to be built outside first.

Emotional dysregulation is a core part of how many adults experience ADHD: feelings that arrive faster, hit harder and take longer to fade, in every direction, joy included. It was never oversensitivity as a moral failing, and "calm down" was never going to be the strategy.

What helps is external structure around the hot moments, stakes lowered before setbacks arrive, feelings treated as the real target rather than an inconvenience, and professional support where the intensity warrants it.

); /* ---------------- Section 9: Final CTA ---------------- */ const EdFinalCTA = () => (
Small steps, small setbacks

Keep setbacks the size of setbacks.

Loops is a daily coaching app that keeps the emotional cost of progress low. Steps stay small enough that setbacks stay small, a missed day is treated as information rather than a verdict, and coming back is always built to feel lighter than the fear of it.

7-day free trial. No complicated setup. Takes a few minutes.
); /* ---------------- App ---------------- */ function EdApp() { return (
); } const edRoot = ReactDOM.createRoot(document.getElementById("root")); edRoot.render();