/**
 * NHR Article UI v1 — Sprint 3: Content Components
 *
 * Scope: standard WordPress posts only (enqueued conditionally in functions.php).
 * Sprint 3 adds reusable callouts, responsive tables, framed figures/captions, and
 * refined article content elements while preserving all accepted Sprint 2 behavior.
 */

:root {
    /* Brand and text */
    --nhr-article-primary: #605DBA;
    --nhr-article-primary-dark: #4B4899;
    --nhr-article-heading: #0F172A;
    --nhr-article-body: #334155;
    --nhr-article-muted: #64748B;
    --nhr-article-border: #E5E7EB;
    --nhr-article-border-strong: #D7DCE5;
    --nhr-article-surface: #F9FAFB;
    --nhr-article-surface-blue: #F3F6FA;

    /* Callout surfaces reserved for the component sprint */
    --nhr-article-callout-notice: #FEFCE8;
    --nhr-article-callout-risk: #FEF0F0;
    --nhr-article-callout-success: #EDFDF3;
    --nhr-article-callout-info: #EFF6FF;
    --nhr-article-callout-neutral: #F9FAFB;
    --nhr-article-callout-insight: #FAF5FF;

    /* Shared geometry */
    --nhr-article-shell: 80rem;
    --nhr-article-reading-width: 46rem;
    --nhr-article-radius-sm: 0.5rem;
    --nhr-article-radius-md: 0.75rem;
    --nhr-article-radius-lg: 1rem;
    --nhr-article-radius-xl: 1.5rem;
    --nhr-article-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --nhr-article-shadow-md: 0 14px 36px rgba(15, 23, 42, 0.08);
    --nhr-article-shadow-image: 0 24px 60px rgba(15, 23, 42, 0.13);
}

/* --------------------------------------------------------------------------
 * Shared article shell
 * -------------------------------------------------------------------------- */
.nhr-article-shell {
    width: min(calc(100% - 2rem), var(--nhr-article-shell));
    margin-inline: auto;
}

@media (min-width: 640px) {
    .nhr-article-shell {
        width: min(calc(100% - 3rem), var(--nhr-article-shell));
    }
}

@media (min-width: 1024px) {
    .nhr-article-shell {
        width: min(calc(100% - 4rem), var(--nhr-article-shell));
    }
}

/* --------------------------------------------------------------------------
 * Reading progress — behavior remains page-based until its dedicated sprint.
 * -------------------------------------------------------------------------- */
.nhr-reading-progress {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    z-index: 999999;
    pointer-events: none;
    background: transparent;
}

.nhr-reading-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--nhr-article-primary), #817ED0);
    transition: width 50ms ease-out;
    box-shadow: 0 1px 4px rgba(96, 93, 186, 0.28);
}

/* --------------------------------------------------------------------------
 * P3 — Article Hero
 * The Sprint 1 hero visual treatment is intentionally retained after runtime QA.
 * Sprint 2 only keeps RTL-safe breadcrumb/meta markup and loading attributes.
 * -------------------------------------------------------------------------- */

/* Hero metadata ------------------------------------------------------------
 * Runtime QA showed the category chip and the eye/clock items collapsing
 * together because Sprint 2 introduced Tailwind gap-x/gap-y utilities that
 * are not present in the theme's precompiled Tailwind bundle. Keep this UI
 * self-contained in article.css so it is deterministic in both directions.
 */
.nhr-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.625rem;
}

.nhr-article-category {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(96, 93, 186, 0.12);
    border-radius: 9999px;
    background: rgba(96, 93, 186, 0.09);
    color: var(--nhr-article-primary);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
    box-shadow: none;
}

.nhr-article-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #556176;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.nhr-article-meta__icon {
    width: 1rem;
    flex: 0 0 1rem;
    color: var(--nhr-article-primary);
    font-size: 0.875rem;
    line-height: 1;
    text-align: center;
}

@media (max-width: 479px) {
    .nhr-article-meta {
        column-gap: 0.8rem;
    }

    .nhr-article-category {
        padding-inline: 0.8rem;
    }
}

/* --------------------------------------------------------------------------
 * P4 — Core reading layout and typography
 * -------------------------------------------------------------------------- */
.nhr-article-main {
    padding-block: clamp(3.5rem, 6vw, 5.75rem) clamp(4.5rem, 7vw, 7rem);
    background: #FFFFFF;
}

.nhr-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.nhr-article-sidebar {
    display: none;
}

.nhr-article-body-column {
    width: 100%;
    min-width: 0;
    max-width: var(--nhr-article-reading-width);
    margin-inline: auto;
}

.nhr-article-entry {
    width: 100%;
    max-width: none;
}

.article-content {
    color: var(--nhr-article-body);
    font-family: 'Noto Sans Arabic', sans-serif;
    font-size: 1.075rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.ltr .article-content {
    line-height: 1.78;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--nhr-article-heading);
    font-weight: 800;
    text-wrap: pretty;
}

.article-content h2 {
    margin-block: clamp(3rem, 6vw, 4rem) 1.05rem;
    font-size: clamp(1.65rem, 3.6vw, 2.05rem);
    line-height: 1.35;
    scroll-margin-top: 7rem;
}

.ltr .article-content h2 {
    line-height: 1.25;
    letter-spacing: -0.018em;
}

.article-content h3 {
    margin-block: 2.35rem 0.85rem;
    font-size: clamp(1.35rem, 2.8vw, 1.58rem);
    line-height: 1.42;
    scroll-margin-top: 7rem;
}

.ltr .article-content h3 {
    line-height: 1.3;
    letter-spacing: -0.012em;
}

.article-content h4 {
    margin-block: 1.9rem 0.7rem;
    font-size: 1.18rem;
    line-height: 1.45;
}

.article-content p {
    margin-block: 0 1.45em;
    color: var(--nhr-article-body);
    font-size: 1em;
    line-height: inherit;
}

/* Answer-first articles get a clear editorial lead without altering post content. */
.article-content > p:first-of-type {
    margin-block-end: 1.65em;
    color: #475569;
    font-size: clamp(1.12rem, 2vw, 1.24rem);
    font-weight: 500;
    line-height: 1.9;
}

.ltr .article-content > p:first-of-type {
    line-height: 1.72;
}

.article-content strong,
.article-content b {
    color: #1E293B;
    font-weight: 750;
}

.article-content a {
    color: var(--nhr-article-primary-dark);
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-color: rgba(96, 93, 186, 0.42);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.22em;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.article-content a:hover {
    color: #393676;
    text-decoration-color: currentColor;
}

.article-content ul,
.article-content ol {
    margin-block: 0.25rem 1.55rem;
    padding-inline-start: 1.55rem;
    color: var(--nhr-article-body);
    font-size: 1em;
}

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-block-end: 0.55em;
    padding-inline-start: 0.2rem;
    line-height: 1.78;
}

.article-content li::marker {
    color: var(--nhr-article-primary);
    font-weight: 800;
}

.article-content li > ul,
.article-content li > ol {
    margin-block: 0.55rem 0.4rem;
}

@media (min-width: 1024px) {
    .nhr-article-layout {
        grid-template-columns: minmax(13.5rem, 16rem) minmax(0, var(--nhr-article-reading-width));
        gap: clamp(3.5rem, 6vw, 5.5rem);
        justify-content: center;
    }

    .nhr-article-layout--no-toc {
        grid-template-columns: minmax(0, var(--nhr-article-reading-width));
    }

    .nhr-article-sidebar {
        display: block;
        min-width: 0;
        align-self: stretch;
    }

    .nhr-article-body-column {
        margin-inline: 0;
    }

    .article-content {
        font-size: 1.125rem;
    }
}

/* --------------------------------------------------------------------------
 * P5 — Table of Contents v2.1
 * Runtime QA revision: lightweight rail, no visible scrollbar, reliable sticky
 * containing block, and the existing active-section visual cue.
 * -------------------------------------------------------------------------- */
.nhr-toc-card {
    position: sticky;
    inset-block-start: 7rem;
    background: transparent;
}

.admin-bar .nhr-toc-card {
    inset-block-start: 9rem;
}

.nhr-toc-card__header {
    padding: 0 0 1rem;
}

.nhr-toc-card__eyebrow {
    display: block;
    width: 2rem;
    height: 0.2rem;
    margin-block-end: 0.65rem;
    border-radius: 999px;
    background: var(--nhr-article-primary);
}

.nhr-toc-card__title {
    margin: 0;
    color: var(--nhr-article-heading);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
}

/*
 * Keep very long TOCs independently scrollable without exposing a permanent
 * browser scrollbar. Wheel/trackpad/keyboard scrolling remains available.
 */
.nhr-toc-card__links {
    max-height: calc(100vh - 12.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-inline-end: 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.admin-bar .nhr-toc-card__links {
    max-height: calc(100vh - 14.5rem);
}

.nhr-toc-card__links::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.nhr-toc-list,
.nhr-mobile-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nhr-toc-list li,
.nhr-mobile-toc-list li {
    margin: 0;
    padding: 0;
}

.nhr-toc-list li + li {
    margin-block-start: 0.35rem;
}

.toc-link {
    display: block;
    margin: 0;
    padding: 0.48rem 0.65rem;
    border-inline-start: 2px solid transparent;
    border-radius: 0.4rem;
    color: #64748B;
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.45;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.toc-link:hover {
    color: var(--nhr-article-primary-dark);
    background: #F7F7FC;
}

.toc-link.active {
    border-inline-start-color: var(--nhr-article-primary);
    background: #F0EFFA;
    color: var(--nhr-article-primary-dark);
    font-weight: 800;
}

.mobile-toc-container {
    display: block;
}

.nhr-mobile-toc {
    overflow: hidden;
    margin-block-end: 2.5rem;
    border: 1px solid var(--nhr-article-border);
    border-radius: var(--nhr-article-radius-lg);
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.055);
}

.nhr-mobile-toc-toggle {
    display: flex;
    width: 100%;
    min-height: 3.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    border: 0;
    background: #FFFFFF;
    color: var(--nhr-article-heading);
    font: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    text-align: start;
    cursor: pointer;
    transition: background-color 180ms ease;
}

.nhr-mobile-toc-toggle:hover {
    background: #FAFBFD;
}

.nhr-mobile-toc-toggle__label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.nhr-mobile-toc-icon {
    color: var(--nhr-article-primary);
}

.nhr-mobile-toc-chevron {
    flex: 0 0 auto;
    color: #8A94A3;
    transition: transform 220ms ease;
}

.nhr-mobile-toc-toggle.is-open .nhr-mobile-toc-chevron {
    transform: rotate(180deg);
}

.nhr-mobile-toc-content {
    padding: 0.7rem;
    border-block-start: 1px solid #EEF1F4;
    background: #FBFCFE;
}

.nhr-mobile-toc-content[hidden] {
    display: none !important;
}

.nhr-mobile-toc-list .toc-link {
    padding-block: 0.7rem;
    font-size: 0.92rem;
}

@media (min-width: 1024px) {
    .mobile-toc-container {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
 * Existing post components kept stable during Sprint 2
 * -------------------------------------------------------------------------- */
.nhr-share-button {
    display: flex !important;
    width: 40px !important;
    min-width: 40px;
    height: 40px !important;
}

.nhr-share-button--whatsapp {
    background-color: #25D366;
}

.nhr-share-button--x {
    background-color: #000000;
}

.nhr-share-button--linkedin {
    background-color: #0077B5;
}

.nhr-author-title {
    color: var(--nhr-article-primary);
}

.nhr-ltr-embed {
    unicode-bidi: embed;
}

/* --------------------------------------------------------------------------
 * Interaction and accessibility
 * -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

.nhr-article-breadcrumb:focus-visible,
.toc-link:focus-visible,
.nhr-mobile-toc-toggle:focus-visible,
.article-content a:focus-visible {
    outline: 3px solid rgba(96, 93, 186, 0.28);
    outline-offset: 3px;
    border-radius: 0.4rem;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .nhr-hero-image,
    .nhr-mobile-toc-chevron,
    .toc-link,
    .article-content a,
    .nhr-reading-progress__bar {
        transition: none !important;
    }

    .nhr-hero-image:hover {
        transform: none !important;
    }
}

@media (max-width: 639px) {
    .article-content {
        font-size: 1.03rem;
    }

    .article-content > p:first-of-type {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
 * P6 — NHR Callout Component System
 * -------------------------------------------------------------------------- */
.nhr-callout {
    --nhr-callout-bg: var(--nhr-article-callout-neutral);
    --nhr-callout-border: #E2E8F0;
    --nhr-callout-accent: #64748B;
    position: relative;
    margin-block: 2rem;
    padding: 1.35rem 1.5rem !important;
    border: 1px solid var(--nhr-callout-border);
    border-inline-start: 4px solid var(--nhr-callout-accent);
    border-radius: 0.875rem !important;
    background: var(--nhr-callout-bg) !important;
    color: #334155;
    line-height: 1.8;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.nhr-callout--info {
    --nhr-callout-bg: var(--nhr-article-callout-info);
    --nhr-callout-border: #BFDBFE;
    --nhr-callout-accent: #2563EB;
}

.nhr-callout--success {
    --nhr-callout-bg: var(--nhr-article-callout-success);
    --nhr-callout-border: #BBF7D0;
    --nhr-callout-accent: #16A34A;
}

.nhr-callout--warning {
    --nhr-callout-bg: var(--nhr-article-callout-notice);
    --nhr-callout-border: #FEF08A;
    --nhr-callout-accent: #CA8A04;
}

.nhr-callout--risk {
    --nhr-callout-bg: var(--nhr-article-callout-risk);
    --nhr-callout-border: #FECACA;
    --nhr-callout-accent: #DC2626;
}

.nhr-callout--neutral {
    --nhr-callout-bg: var(--nhr-article-callout-neutral);
    --nhr-callout-border: #E2E8F0;
    --nhr-callout-accent: #64748B;
}

.nhr-callout--insight {
    --nhr-callout-bg: var(--nhr-article-callout-insight);
    --nhr-callout-border: #DDD6FE;
    --nhr-callout-accent: var(--nhr-article-primary);
}

.nhr-callout > :first-child {
    margin-block-start: 0;
}

.nhr-callout > :last-child {
    margin-block-end: 0;
}

.nhr-callout p,
.nhr-callout ul,
.nhr-callout ol {
    color: inherit;
}

.nhr-callout strong,
.nhr-callout b {
    color: #1E293B;
}

.nhr-callout h2,
.nhr-callout h3,
.nhr-callout h4 {
    margin-block-start: 0;
    color: #1E293B;
}

.nhr-callout a {
    color: var(--nhr-article-primary-dark);
}

/* Existing green key-takeaways boxes now share the same component language. */
.article-content .key-takeaways {
    --nhr-callout-bg: var(--nhr-article-callout-success);
    --nhr-callout-border: #BBF7D0;
    --nhr-callout-accent: #16A34A;
    margin-block: 2rem;
    padding: 1.5rem !important;
    border: 1px solid var(--nhr-callout-border);
    border-inline-start: 4px solid var(--nhr-callout-accent);
    border-radius: 0.875rem;
    background: var(--nhr-callout-bg);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.article-content .key-takeaways h2,
.article-content .key-takeaways h3 {
    color: #166534;
}

/* --------------------------------------------------------------------------
 * P7 — Article Tables v2
 * -------------------------------------------------------------------------- */
.article-content .wp-block-table,
.article-content .nhr-table-scroll {
    width: 100%;
    max-width: 100%;
    margin-block: 2.25rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--nhr-article-border-strong);
    border-radius: 0.875rem;
    background: #FFFFFF;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.055);
}

.article-content .wp-block-table table,
.article-content .nhr-table-scroll table,
.article-content table {
    width: 100%;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #FFFFFF;
    color: var(--nhr-article-body);
    font-size: 0.95rem;
    line-height: 1.55;
    table-layout: auto;
}

.article-content .nhr-table--wide {
    min-width: 46rem;
}

.article-content table th,
.article-content table td {
    padding: 0.85rem 1rem;
    border: 0;
    border-block-end: 1px solid #E8EBF0;
    border-inline-end: 1px solid #EEF0F4;
    vertical-align: top;
    text-align: start;
    overflow-wrap: normal;
    word-break: normal;
}

.article-content table tr > :last-child {
    border-inline-end: 0;
}

.article-content table tbody tr:last-child td,
.article-content table tbody tr:last-child th {
    border-block-end: 0;
}

.article-content table thead th {
    background: #F1F0FA;
    color: #312E81;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.article-content table tbody tr:nth-child(even) td,
.article-content table tbody tr:nth-child(even) th {
    background: #FBFCFE;
}

.article-content table tbody tr:hover td,
.article-content table tbody tr:hover th {
    background: #F7F7FC;
}

.article-content table caption,
.article-content .wp-block-table figcaption {
    padding: 0.8rem 1rem;
    color: var(--nhr-article-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    text-align: start;
}

.article-content table caption {
    caption-side: bottom;
}

.article-content .wp-block-table figcaption {
    margin: 0;
    border-block-start: 1px solid #EEF0F4;
    background: #FCFCFD;
}

/* Keep explicit Gutenberg alignment choices intact. */
.article-content table .has-text-align-left {
    text-align: left;
}

.article-content table .has-text-align-center {
    text-align: center;
}

.article-content table .has-text-align-right {
    text-align: right;
}

/* --------------------------------------------------------------------------
 * P8 — Images & Figures v2
 * -------------------------------------------------------------------------- */
.article-content figure.wp-block-image,
.article-content .wp-caption {
    max-width: 100%;
    margin-block: 2.35rem;
    margin-inline: auto;
}

.article-content figure.wp-block-image img,
.article-content .wp-caption img,
.article-content > img,
.article-content > p > img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid #E4E7EC;
    border-radius: 0.875rem;
    background: #FFFFFF;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.article-content figure.wp-block-image > a {
    display: block;
    border-radius: 0.875rem;
    text-decoration: none;
}

.article-content figure.wp-block-image > a img {
    width: 100%;
}

.article-content figure.wp-block-image.aligncenter img,
.article-content .wp-caption.aligncenter img {
    margin-inline: auto;
}

.article-content figure.wp-block-image figcaption,
.article-content .wp-caption-text,
.article-content .wp-element-caption {
    margin-block: 0.7rem 0;
    padding-inline: 0.35rem;
    color: var(--nhr-article-muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 639px) {
    .article-content figure.wp-block-image,
    .article-content .wp-caption {
        margin-block: 2rem;
    }

    .article-content figure.wp-block-image img,
    .article-content .wp-caption img,
    .article-content > img,
    .article-content > p > img {
        border-radius: 0.75rem;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    }
}

/* --------------------------------------------------------------------------
 * P9 — Lists, Links & Content Elements
 * -------------------------------------------------------------------------- */
.article-content ul,
.article-content ol {
    margin-block: 0.45rem 1.7rem;
    padding-inline-start: 1.65rem;
}

.article-content li {
    margin-block-end: 0.62em;
    padding-inline-start: 0.25rem;
}

.article-content li::marker {
    color: var(--nhr-article-primary);
    font-weight: 800;
}

.article-content ol > li::marker {
    font-variant-numeric: tabular-nums;
}

.article-content li > ul,
.article-content li > ol {
    margin-block: 0.6rem 0.45rem;
}

.article-content li > ul li::marker,
.article-content li > ol li::marker {
    color: #8B87C9;
}

.article-content a {
    overflow-wrap: anywhere;
    text-decoration-skip-ink: auto;
}

.article-content blockquote,
.article-content .wp-block-quote {
    margin-block: 2.25rem;
    margin-inline: 0;
    padding: 1.35rem 1.5rem;
    border: 1px solid #E3E1F3;
    border-inline-start: 4px solid var(--nhr-article-primary);
    border-radius: 0.875rem;
    background: #F8F7FC;
    color: #3F4756;
    font-size: 1.02em;
    font-style: normal;
    line-height: 1.8;
}

.article-content blockquote > :first-child {
    margin-block-start: 0;
}

.article-content blockquote > :last-child {
    margin-block-end: 0;
}

.article-content blockquote cite,
.article-content .wp-block-quote cite {
    display: block;
    margin-block-start: 0.9rem;
    color: var(--nhr-article-muted);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 650;
}

.article-content hr,
.article-content .wp-block-separator {
    height: 1px;
    margin-block: 3rem;
    border: 0;
    background: linear-gradient(90deg, transparent, #D9DDE5 15%, #D9DDE5 85%, transparent);
}

.article-content code:not(pre code) {
    padding: 0.12em 0.35em;
    border: 1px solid #E5E7EB;
    border-radius: 0.35rem;
    background: #F8FAFC;
    color: #7C3AED;
    font-size: 0.88em;
    direction: ltr;
    unicode-bidi: embed;
}

.article-content pre {
    max-width: 100%;
    margin-block: 2rem;
    padding: 1.15rem 1.25rem;
    overflow-x: auto;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    background: #0F172A;
    color: #E2E8F0;
    font-size: 0.88rem;
    line-height: 1.65;
    direction: ltr;
    text-align: left;
}

.article-content pre code {
    color: inherit;
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    .article-content table tbody tr:hover td,
    .article-content table tbody tr:hover th {
        transition: none;
    }
}
