/* CustomerNode Insights — on-domain reader page (/insights/<slug>/).
   Premium editorial typography for the full-text article/note, rendered from the
   brand source. Light theme, indigo tokens shared with insights.css. No inline
   styles (PUBLIC_CSP style-src 'self'); everything scoped under .cn-reader /
   .cn-article so it cannot collide with the rest of the marketing CSS. */

.cn-reader {
    --cni-indigo: #6366f1;
    --cni-indigo-deep: #4f46e5;
    --cni-indigo-soft: #818cf8;
    /* Neutral editorial palette matching the brand source article style
       (brand/linkedin-series/article_template.html): near-black ink + grey
       secondary. Indigo tokens below stay for the site chrome (badge/CTAs). */
    --cni-ink: #191919;
    --cni-ink-soft: #333333;
    --cni-body: #191919;
    --cni-muted: #555555;
    --cni-border: #e4e2f2;
    --cni-border-strong: #cfcceb;
    --cni-lilac: #edeafe;
    --cni-cover-bg: #f1f1f9;
    --cni-page: #fdfdff;
    --cni-frost: rgba(253, 253, 255, 0.92);
    --cni-surface: #ffffff;
    --cni-rule: #e0e0e0;
    --cni-link: #0a66c2;
    --cni-quote-bg: linear-gradient(135deg, #f3f1ff 0%, #eef0f6 100%);
    --cni-panel-bg: #f3f6f8;
    --cni-panel-border: #e0e0e0;
    --cni-panel-border-hover: #cfd6dc;

    position: relative;
    /* top padding == nav height so the sticky bar sits flush under the nav. */
    padding: 60px 24px 110px;
    /* Follows the site theme -- see the dark branch below. */
    background: var(--cni-page);
}

/* ---- Dark theme -------------------------------------------------------
   The site flags the document with html[data-theme="dark"] and renders its
   palette into :root (templates/style-variables.css). The reader keeps its own
   editorial palette, so dark is one re-point of the --cni-* set: every rule
   below already reads a token. Prose contrast is deliberately a notch softer
   than pure white -- this is long-form reading, not UI chrome. */
html[data-theme="dark"] .cn-reader {
    --cni-indigo: #818cf8;
    --cni-indigo-deep: #a5b4fc;
    --cni-ink: #f0f1f6;
    --cni-ink-soft: #cdd0dc;
    --cni-body: #d8dae4;
    --cni-muted: #9aa0b8;
    --cni-border: #1e2233;
    --cni-border-strong: #333b55;
    --cni-lilac: rgba(129, 140, 248, 0.18);
    --cni-cover-bg: #11141f;
    --cni-page: var(--main-bg-color);
    --cni-frost: rgba(10, 12, 20, 0.86);
    --cni-surface: #0c0f1a;
    --cni-rule: #232838;
    --cni-link: #6cb3f0;
    --cni-quote-bg: linear-gradient(135deg, rgba(129, 140, 248, 0.14) 0%, rgba(99, 102, 241, 0.08) 100%);
    --cni-panel-bg: #10131d;
    --cni-panel-border: #232838;
    --cni-panel-border-hover: #39415c;
}

.cn-reader-inner {
    max-width: 760px;
    margin: 0 auto;
}

/* ---- Full-width sticky bar: meta (left) + small CTAs (right) ----
   Same two-state pattern as the hub masthead (insights.css): transparent and
   full-size at the top of the piece, then a thin frosted strip once scrolled,
   so the reading column owns the screen. Everything that moves shares one curve
   (--cn-rb-anim) so the collapse reads as a single motion. */
.cn-reader-bar {
    /* Bar height, and the ONLY driver of vertical compression. The bottom
       margin is its exact complement -- height + margin-bottom is always
       --cn-rb-slot -- so collapsing the bar costs the document zero pixels and
       the article below cannot jump upward mid-scroll. A sticky element still
       occupies its original box in flow; shrinking it without this pair is
       exactly how sticky headers shove their own page. */
    /* rem for the same reason as the hub masthead, including the same honest
       caveat about the hard-pinned root -- see the comment on --cn-hub-h in
       insights.css. Root is 20px, so 2.7rem == the previous 54px. */
    --cn-rb-h: 2.7rem;
    --cn-rb-slot: 4rem;
    --cn-rb-anim: 280ms cubic-bezier(0.22, 1, 0.36, 1);

    position: sticky;
    top: 60px;                 /* flush under the 60px fixed nav */
    z-index: 5;
    margin: 0 -24px;           /* cancel section side padding -> full viewport width */
    margin-bottom: calc(var(--cn-rb-slot) - var(--cn-rb-h));
    height: var(--cn-rb-h);
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: transparent;   /* frost only once scrolled (.is-stuck) */
    transition: height var(--cn-rb-anim), margin-bottom var(--cn-rb-anim),
                background 200ms ease, box-shadow 200ms ease,
                -webkit-backdrop-filter 200ms ease, backdrop-filter 200ms ease;
}

.cn-reader-bar.is-stuck {
    --cn-rb-h: 1.8rem;
    background: var(--cni-frost);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px -20px rgba(15, 23, 42, 0.45);
}

.cn-reader-bar-inner {
    width: 100%;
    max-width: 760px;          /* aligns with the reading column */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Never wrap: a second row would break the fixed height above and bring the
       shove back. Narrow screens shed the CTA labels instead (see the 560/400
       blocks at the bottom of this file). */
    flex-wrap: nowrap;
    gap: 12px;
    /* Own the line box: the page's inherited line-height is a fixed px value,
       so without this the row keeps its full-size height even after the type
       steps down and the strip cannot actually get thinner. */
    line-height: 1.2;
    transition: gap var(--cn-rb-anim);
}

.cn-reader-bar.is-stuck .cn-reader-bar-inner { gap: 10px; }

/* ---- Header ---- */
.cn-reader-head {
    margin-bottom: 36px;
}

.cn-reader .cn-insight-meta {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    transition: gap var(--cn-rb-anim);
    /* Reset the 16px bottom margin the shared .cn-insight-meta (insights.css)
       carries for grid cards. In this sticky bar the meta is a flex-row item, so
       that margin makes align-items:center center the margin-box — pinning the
       badge/date ~8px above the CTA buttons. Zero it so they align on one line. */
    margin: 0;
}

/* Top-row CTAs read as lightweight TEXT LINKS (no button chrome) so the sticky
   bar stays a low, single-line meta row consistent with the badge + date on the
   left. Strips the gradient fill, border, radius, box-shadow and block padding. */
.cn-reader-bar .cn-reader-ctas--top {
    gap: 20px;
    /* `.cn-reader-ctas` (further down, same specificity) sets wrap for the
       footer row -- this compound has to out-specify it, or the bar wraps to a
       second row on a phone and the fixed-height contract breaks. */
    flex-wrap: nowrap;
    flex-shrink: 0;
    transition: gap var(--cn-rb-anim);
}

.cn-reader-bar.is-stuck .cn-reader-ctas--top { gap: 14px; }

.cn-reader-ctas--top .cn-reader-cta,
.cn-reader-ctas--top .cn-reader-cta--back {
    font-size: 0.82rem;
    font-weight: 600;
    gap: 5px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none !important;
    box-shadow: none !important;
    color: var(--cni-indigo-deep) !important;
    white-space: nowrap;
    transition: color 160ms ease, font-size var(--cn-rb-anim), gap var(--cn-rb-anim);
}

/* The bar's links carry no button chrome, so nothing gives them a hit area --
   without this they shrink-wrap to a 20px line box (16px once the label is
   clipped to an icon on a phone). WCAG 2.2 SC 2.5.8 wants 24x24; 28 leaves
   slack inside both the 54px rest bar and the 36px collapsed one. */
.cn-reader-bar .cn-reader-cta,
.cn-reader-bar .cn-reader-cta--back {
    min-width: 28px;
    min-height: 28px;
    justify-content: center;
}

/* Icons ride the link's own font-size so they shrink on the SAME transition as
   the label rather than snapping (a px height off the SVG attribute does not
   interpolate in Chromium). */
.cn-reader-ctas--top .cn-reader-cta svg {
    flex-shrink: 0;
    width: 0.95em;
    height: 0.95em;
}

/* Back link is the muted/secondary of the pair. */
.cn-reader-ctas--top .cn-reader-cta--back { color: var(--cni-muted) !important; }

.cn-reader-ctas--top .cn-reader-cta:hover,
.cn-reader-ctas--top .cn-reader-cta:focus-visible {
    transform: none;
    box-shadow: none !important;
    color: var(--cni-indigo) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.cn-reader-ctas--top .cn-reader-cta--back:hover,
.cn-reader-ctas--top .cn-reader-cta--back:focus-visible {
    color: var(--cni-ink-soft) !important;
}

.cn-reader .cn-insight-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--cni-indigo-deep);
    background: var(--cni-lilac);
    border-radius: 999px;
    padding: 5px 12px;
    line-height: 1;
    white-space: nowrap;
    transition: font-size var(--cn-rb-anim), padding var(--cn-rb-anim);
}

.cn-reader .cn-insight-date {
    font-size: 0.82rem;
    color: var(--cni-muted);
    font-weight: 500;
    white-space: nowrap;
    transition: font-size var(--cn-rb-anim);
}

/* ---- Collapsed strip: the whole row steps down one type size ---- */
.cn-reader-bar.is-stuck .cn-insight-badge {
    font-size: 0.6rem;
    padding: 3px 9px;
}

.cn-reader-bar.is-stuck .cn-insight-meta { gap: 8px; }

.cn-reader-bar.is-stuck .cn-insight-date,
.cn-reader-bar.is-stuck .cn-reader-ctas--top .cn-reader-cta,
.cn-reader-bar.is-stuck .cn-reader-ctas--top .cn-reader-cta--back {
    font-size: 0.74rem;
}

.cn-reader-bar.is-stuck .cn-reader-ctas--top .cn-reader-cta { gap: 4px; }

/* The bar's links are bare text (no button chrome), and `.cn-reader-cta`
   suppresses the UA outline for the footer's filled buttons. Give the bar back
   a real keyboard ring; collapsed it hugs the link, because the strip has only
   a few px of slack before the ring would paint under the fixed nav. */
.cn-reader-bar .cn-reader-cta:focus-visible {
    outline: 2px solid var(--cni-indigo-deep);
    outline-offset: 3px;
}

.cn-reader-bar.is-stuck .cn-reader-cta:focus-visible {
    outline-offset: 1px;
}

.cn-reader-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-weight: 700;
    color: var(--cni-ink);
    margin: 0 0 10px;
}

/* Deck/subtitle under the title — italic grey, like the source .subtitle. */
.cn-reader-teaser {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.12rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--cni-muted);
    margin: 0 0 34px;
    max-width: 62ch;
}

/* ---- CTA row: LinkedIn (primary) + Back to Insights (secondary) ---- */
.cn-reader-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cn-reader-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
    background: linear-gradient(120deg, #4f46e5, #6366f1);
    border-radius: 12px;
    padding: 13px 24px;
    box-shadow: 0 16px 34px -16px rgba(79, 70, 229, 0.6);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.cn-reader-cta:hover,
.cn-reader-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -16px rgba(79, 70, 229, 0.7);
    outline: none;
    color: #ffffff;
}

.cn-cta-arrow { transition: transform 160ms ease; }
.cn-reader-cta:hover .cn-cta-arrow { transform: translateX(4px); }

/* Secondary "Back to Insights": ghost/outline, overrides the primary fill. */
.cn-reader-cta--back {
    color: var(--cni-indigo-deep) !important;
    background: var(--cni-surface);
    border: 1px solid var(--cni-border-strong);
    box-shadow: none;
}

.cn-reader-cta--back:hover,
.cn-reader-cta--back:focus-visible {
    border-color: var(--cni-indigo);
    color: var(--cni-indigo) !important;
    box-shadow: none;
    transform: translateY(-2px);
}

.cn-reader-cta--back svg { transition: transform 160ms ease; }
.cn-reader-cta--back:hover svg { transform: translateX(-3px); }

/* ---- Hero cover ---- */
.cn-reader-hero {
    margin: 0 0 44px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cni-cover-bg);
    border: 1px solid var(--cni-border);
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 60px -34px rgba(44, 42, 77, 0.5);
}

.cn-reader-hero .cn-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cn-cover-img--top { object-position: top center; }
.cn-cover-img--center { object-position: center; }

/* ============================================================
   Article body — .cn-article
   ============================================================ */
.cn-article {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--cni-body);
}

.cn-article > *:first-child { margin-top: 0; }

.cn-article p {
    margin: 0 0 1em;
}

.cn-article h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--cni-ink);
    margin: 2.6em 0 0.8em;
}

.cn-article h3 {
    font-size: 1.12rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--cni-ink-soft);
    margin: 2em 0 0.6em;
}

.cn-article h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cni-ink-soft);
    margin: 1.8em 0 0.5em;
}

/* Article subtitle/deck (e.g. deal-room-paradox leads with p.subtitle) —
   italic grey, matching the source .subtitle. */
.cn-article .subtitle {
    font-size: 1.12rem;
    line-height: 1.5;
    color: var(--cni-muted);
    font-weight: 400;
    font-style: italic;
    margin: 0 0 2.2em;
}

/* Links: LinkedIn blue, undecorated until hover (source article style). */
.cn-article a {
    color: var(--cni-link);
    text-decoration: none;
    transition: color 140ms ease;
}

.cn-article a:hover { text-decoration: underline; text-underline-offset: 2px; }

.cn-article strong { color: var(--cni-ink); font-weight: 600; }

/* Account comment — the org's LinkedIn first-comment, rendered at the very top
   of the reader (above the hero). It is the account's own framing of the piece,
   so it is set as an editorial EPIGRAPH, not a callout box.

   It used to reproduce the source article_template.html's blue tinted box with
   an "ACCOUNT COMMENT" label. Two problems with that on a public page: the box
   is documentation-note styling (a system annotation, not editorial voice), and
   "account comment" is our internal taxonomy for where the text came from — a
   reader does not know or care that this was a LinkedIn first-comment. The label
   stays in the brand source, which is the authoring format; it is just not
   surfaced to readers. (commentary_text() already strips it for hub cards, for
   the same reason.)

   Scoped to .cn-reader (not .cn-article) since it sits outside the body flow. */
.cn-reader .account-comment {
    margin: 0 0 36px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
}

/* Internal taxonomy, not reader-facing. display:none (not .screen-reader) on
   purpose: "Account Comment" is no more useful announced than it is seen. */
.cn-reader .account-comment-label { display: none; }

.cn-reader .account-comment p {
    margin: 0 0 16px;
    /* Capped measure: at the full 760px the line ran the whole column and read
       as body copy that happened to be bigger. Breaking earlier is most of what
       makes it feel composed. */
    max-width: 62ch;
    font-family: var(--brand-font);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.62;
    letter-spacing: -0.005em;
    /* --cni-ink-soft, NOT --cni-title: .cn-reader does not define --cni-title
       (only .cn-insights-hub does), so that var was invalid here and the colour
       silently fell back to inherited slate. */
    color: var(--cni-ink-soft);
}

/* Short brand rule under the line, not a full-width divider: the hero's own top
   edge sits a few rems below, and a full rule stacked that close reads as two
   competing horizontals. A 34px mark closes the thought instead. */
.cn-reader .account-comment::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: var(--cni-indigo);
    opacity: 0.85;
}

.cn-article ul,
.cn-article ol {
    margin: 0 0 1.35em;
    padding-left: 1.4em;
}

.cn-article li { margin-bottom: 0.5em; }

.cn-article hr {
    border: 0;
    height: 2px;
    background: var(--cni-rule);
    margin: 2.8em 0;
}

/* Blockquote: heavy dark rule, bold near-black (source article style). */
.cn-article blockquote {
    margin: 2em 0;
    padding: 8px 0 8px 24px;
    border-left: 4px solid var(--cni-ink);
    color: var(--cni-ink);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Pull-quote — the recurring editorial device in the articles. */
.cn-article .pull-quote {
    margin: 2em 0;
    padding: 28px 30px;
    border-radius: 16px;
    background: var(--cni-quote-bg);
    border: 1px solid var(--cni-border);
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--cni-indigo-deep);
    text-align: center;
}

/* Postscript — the "About CustomerNode" coda. Flat top-ruled section, like the
   source .postscript (no card / shadow). */
.cn-article .postscript {
    margin: 3.5em 0 0;
    padding: 32px 0 0;
    border-top: 2px solid var(--cni-rule);
}

.cn-article .postscript h2,
.cn-article .postscript h3 {
    margin-top: 0;
}

.cn-article .postscript p:last-child { margin-bottom: 0; }

/* Figures / images — plain rounded image + centered italic caption. */
.cn-article figure {
    margin: 2em 0;
}

.cn-article img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em auto;
}

.cn-article figure img { margin: 0 auto; }

.cn-article figcaption {
    margin-top: 6px;
    font-size: 0.6rem;
    line-height: 1.35;
    color: var(--cni-muted);
    text-align: center;
    font-style: italic;
}

/* Link-preview card lifted from a short-form post. */
/* Link-preview card lifted from a short-form post — echoes the source post's
   .li-link card (grey panel, LinkedIn-blue title on hover). */
.cn-article-linkcard {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 2em 0;
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--cni-panel-bg);
    border: 1px solid var(--cni-panel-border);
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cn-article-linkcard:hover {
    border-color: var(--cni-panel-border-hover);
    box-shadow: 0 12px 30px -24px rgba(15, 23, 42, 0.5);
    transform: translateY(-1px);
}

.cn-article-linkcard:hover .cn-linkcard-title { color: var(--cni-link); text-decoration: underline; }

.cn-linkcard-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--cni-ink);
}

.cn-linkcard-domain {
    font-size: 0.82rem;
    color: var(--cni-muted);
}

/* ---- Footer ---- */
.cn-reader-foot {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--cni-border);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cn-reader-foot-label {
    font-size: 0.95rem;
    color: var(--cni-muted);
    margin: 0;
}

.cn-reader .cn-insights-hub-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cni-indigo-deep);
    text-decoration: none;
}

.cn-reader .cn-insights-hub-back svg { transition: transform 180ms ease; }
.cn-reader .cn-insights-hub-back:hover svg { transform: translateX(-3px); }

@media (max-width: 640px) {
    .cn-reader .account-comment { margin-bottom: 26px; }
    .cn-reader .account-comment p { font-size: 0.98rem; line-height: 1.58; margin-bottom: 14px; }

    /* Top padding stays at the 60px nav height so the sticky bar's natural
       position equals its sticky top -- otherwise it renders pre-clamped and
       overlaps the hero from the very first paint. */
    .cn-reader { padding: 60px 18px 80px; }
    /* Longhands only: the base rule's height/margin-bottom pair is a calc that
       must survive. Re-syncs the full-bleed breakout to the 18px side padding
       above -- a -24px breakout would protrude 6px past each edge and cause a
       horizontal scrollbar on mobile. */
    .cn-reader-bar {
        margin-left: -18px;
        margin-right: -18px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .cn-article { font-size: 1.06rem; }
    .cn-article .pull-quote { padding: 22px 20px; }
    .cn-article .postscript { padding: 28px 0 0; }
}

/* Narrow: the bar must stay ONE row (see .cn-reader-bar-inner), so the CTA
   labels shed progressively -- LinkedIn first, then the back link. Clipped, not
   removed, so both links keep their accessible name. */
@media (max-width: 560px) {
    .cn-reader-bar .cn-reader-cta:not(.cn-reader-cta--back) .cn-reader-cta-label {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
    }
}

@media (max-width: 430px) {
    .cn-reader-bar .cn-reader-cta-label {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cn-reader-cta,
    .cn-cta-arrow,
    .cn-article-linkcard,
    .cn-reader .cn-insights-hub-back svg,
    .cn-reader-bar,
    .cn-reader-bar-inner,
    /* These three must be the SAME compounds that declare the collapse
       transitions above (`.cn-reader-bar .cn-reader-ctas--top`, and the
       `.cn-reader-ctas--top .cn-reader-cta*` pair). Listing the bare classes
       loses on specificity, and the bar's height then snaps while the CTA type
       keeps smoothly shrinking for 280ms — worse than either both moving or
       neither. */
    .cn-reader-bar .cn-reader-ctas--top,
    .cn-reader-ctas--top .cn-reader-cta,
    .cn-reader-ctas--top .cn-reader-cta--back,
    /* The child svg carries its own transition; `.cn-reader-cta` does not
       reach it, so the back arrow kept sliding on hover under reduce. */
    .cn-reader-cta--back svg,
    .cn-reader .cn-insight-meta,
    .cn-reader .cn-insight-badge,
    .cn-reader .cn-insight-date {
        transition: none;
    }
    /* Same rule as insights.css: kill the DISPLACEMENT, not just the tween,
       and cover :focus-visible as well as :hover. */
    .cn-reader-cta:hover,
    .cn-reader-cta:focus-visible { transform: none; }
    .cn-reader-cta:hover .cn-cta-arrow,
    .cn-reader-cta:focus-visible .cn-cta-arrow { transform: none; }
    .cn-reader-cta--back:hover svg,
    .cn-reader-cta--back:focus-visible svg { transform: none; }
    .cn-reader .cn-insights-hub-back:hover svg,
    .cn-reader .cn-insights-hub-back:focus-visible svg { transform: none; }
    .cn-article-linkcard:hover,
    .cn-article-linkcard:focus-visible { transform: none; }
}
