/* ═══════════════════════════════════════════════════════════════════
   Motion — apparition élégante, contrôlée, légère, fluide.
   On n'override QUE la durée + la courbe des reveals (pas le raccourci
   `transition` complet) pour préserver le stagger (transition-delay posé
   par le JS via data-reveal="Nms"). Décélération douce (easeOutExpo).
   ═══════════════════════════════════════════════════════════════════ */
[data-reveal]{
  transition-duration: .9s !important;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1) !important;  /* ease-out expo : démarre franc, finit tout en douceur */
}

/* micro-animations de la charte (points, tuiles, surlignages) : un chouïa ralenties et adoucies */
[style*="gfnTileIn"], [style*="gfnDotIn"], [style*="gfnHlIn"]{
  animation-duration: .9s !important;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1) !important;
}

/* respect strict de prefers-reduced-motion (contenu visible, sans mouvement) */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   Navigation globale — une seule source pour toutes les pages CH-FR.
   ═══════════════════════════════════════════════════════════════════ */
.gfn-global-mega[hidden]{display:none!important}
.gfn-global-mega{position:fixed;z-index:950;top:var(--gfn-mega-top,120px);left:0;right:0;max-height:calc(100vh - var(--gfn-mega-top,120px));overflow:auto;background:var(--surface-1,#fff);border-top:1px solid #eef0f2;box-shadow:0 24px 56px rgba(10,22,38,.14);animation:gfnGlobalMegaIn .22s cubic-bezier(.16,1,.3,1)}
.gfn-global-mega__inner{width:min(1280px,calc(100% - 64px));margin:0 auto;padding:30px 0 34px}
.gfn-global-mega__head{display:flex;align-items:flex-start;justify-content:space-between;gap:32px;padding-bottom:22px;border-bottom:1px solid #e6e8ec}
.gfn-global-mega__eyebrow{display:block;margin-bottom:7px;font:700 10.5px/1 var(--font-mono,monospace);letter-spacing:.14em;text-transform:uppercase;color:var(--green-700,#246e4f)}
.gfn-global-mega__head h2{margin:0;font:700 27px/1.2 var(--font-display,serif);letter-spacing:-.015em;color:#0f172a}
.gfn-global-mega__close,.gfn-visual-modal__close{display:grid;place-items:center;flex:none;width:42px;height:42px;border:1px solid #dfe3e6;border-radius:50%;background:#fff;color:#0f172a;font:400 25px/1 var(--font-sans,Arial,sans-serif);cursor:pointer;transition:border-color .16s,background .16s,transform .16s}
.gfn-global-mega__close:hover,.gfn-global-mega__close:focus-visible,.gfn-visual-modal__close:hover,.gfn-visual-modal__close:focus-visible{border-color:#55b88b;background:#eef7f2;outline:none;transform:scale(1.03)}
.gfn-global-mega__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:22px}
.gfn-global-mega__card{position:relative;display:flex;min-height:104px;flex-direction:column;padding:20px 52px 20px 20px;border:1px solid #e6e8ec;border-radius:14px;background:#fff;text-decoration:none;transition:border-color .18s,transform .18s,box-shadow .18s}
.gfn-global-mega__card:hover,.gfn-global-mega__card:focus-visible{border-color:#55b88b;transform:translateY(-2px);box-shadow:0 12px 28px rgba(10,22,38,.07);outline:none}
.gfn-global-mega__card strong{font:700 17px/1.3 var(--font-display,serif);color:#0f172a}
.gfn-global-mega__card span{margin-top:7px;font:14px/1.5 var(--font-sans,Arial,sans-serif);color:var(--ink-muted,#5b616e)}
.gfn-global-mega__card i{position:absolute;right:20px;top:50%;transform:translateY(-50%);font:400 16px/1 var(--font-mono,monospace);font-style:normal;color:#246e4f}
.gfn-global-mega__markets{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px;margin-top:22px}
.gfn-global-mega__market{position:relative;display:flex;min-height:72px;flex-direction:column;justify-content:center;padding:15px 38px 15px 16px;border:1px solid #e6e8ec;border-radius:12px;text-decoration:none;background:#fff;transition:border-color .16s,background .16s,transform .16s}
.gfn-global-mega__market:hover,.gfn-global-mega__market:focus-visible{border-color:#55b88b;background:#f7fbf9;transform:translateY(-1px);outline:none}
.gfn-global-mega__market strong{font:700 15px/1.25 var(--font-display,serif);color:#0f172a}
.gfn-global-mega__market span{margin-top:5px;font:700 9.5px/1 var(--font-mono,monospace);letter-spacing:.08em;text-transform:uppercase;color:#246e4f}
.gfn-global-mega__market i{position:absolute;right:15px;top:50%;transform:translateY(-50%);font-style:normal;color:#246e4f}
.gfn-global-mega__status{margin:24px 0 0;color:var(--ink-muted,#5b616e)}
.gfn-global-mega__foot{display:flex;justify-content:flex-end;gap:24px;margin-top:18px}
.gfn-global-mega__foot a{font:700 13px/1.4 var(--font-sans,Arial,sans-serif);color:#246e4f;text-decoration:none}
.gfn-editorial-cta{display:inline-flex!important;align-items:center;justify-content:center;min-height:46px;padding:0 20px!important;border-radius:9px;background:#55b88b!important;color:#0a1626!important;text-decoration:none!important;font-weight:700;box-sizing:border-box}
.gfn-global-mega__foot a:hover,.gfn-global-mega__foot a:focus-visible{text-decoration:underline;text-underline-offset:4px}
@keyframes gfnGlobalMegaIn{from{opacity:0;transform:translateY(-8px)}}

/* ═══════════════════════════════════════════════════════════════════
   Graphiques de lecture — largeur utile et agrandissement accessible.
   ═══════════════════════════════════════════════════════════════════ */
body .art-body>section>figure.reading-diagram,
body .art-body>section>figure.gfn-chart,
body .reading-prose figure.reading-diagram,
body .reading-prose figure.gfn-chart{position:relative;width:100%;max-width:100%;box-sizing:border-box}
.gfn-cms-cards .reading-insight__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));gap:14px!important;margin:20px 0 16px!important}
.gfn-cms-cards .reading-insight__grid>li{display:flex!important;min-width:0;flex-direction:column;gap:6px;padding:18px;border:1px solid #dfe5e2;border-radius:12px;background:#eef7f2;overflow-wrap:anywhere}
.gfn-cms-cards .reading-insight__grid>li>strong,.gfn-cms-cards .reading-insight__grid>li>span{display:block;min-width:0}
.gfn-cms-cards .reading-insight__grid>li>strong{font-family:var(--font-display,Georgia,serif);font-size:17px;line-height:1.25;color:#0f172a}
.gfn-cms-cards .reading-insight__grid>li>span{font-size:15px;line-height:1.5;color:#4f5b68}
body .art-body figure.reading-diagram{overflow:hidden!important}
body .art-body figure.reading-diagram .mermaid-svg,
body .art-body figure.reading-diagram .mermaid{width:100%!important;min-width:0!important;overflow:visible!important}
body .art-body figure.reading-diagram .mermaid-svg>svg,
body .art-body figure.reading-diagram .mermaid>svg{display:block!important;width:100%!important;min-width:0!important;max-width:100%!important;height:auto!important;max-height:none!important;margin:0 auto}
.gfn-visual-expand{position:absolute;z-index:4;top:14px;right:14px;display:grid;place-items:center;width:38px;height:38px;padding:0;border:1px solid #d7dde1;border-radius:10px;background:rgba(255,255,255,.94);color:#0f172a;box-shadow:0 5px 16px rgba(10,22,38,.08);cursor:pointer;transition:border-color .16s,background .16s,transform .16s}
.gfn-visual-expand:hover,.gfn-visual-expand:focus-visible{border-color:#55b88b;background:#eef7f2;transform:translateY(-1px);outline:3px solid rgba(85,184,139,.2);outline-offset:2px}
.gfn-visual-modal[hidden]{display:none!important}
.gfn-visual-modal{position:fixed;z-index:2000;inset:0;display:grid;place-items:center;padding:24px;background:rgba(10,22,38,.9);backdrop-filter:blur(6px)}
.gfn-visual-modal__panel{position:relative;width:min(1500px,100%);height:min(94vh,980px);display:flex;overflow:hidden;border:1px solid rgba(255,255,255,.18);border-radius:18px;background:#f7f8f9;box-shadow:0 34px 100px rgba(0,0,0,.42)}
.gfn-visual-modal__close{position:absolute;z-index:5;top:16px;right:16px;box-shadow:0 6px 18px rgba(10,22,38,.12)}
.gfn-visual-modal__stage{width:100%;height:100%;overflow:auto;padding:68px 34px 34px;box-sizing:border-box}
.gfn-visual-modal__figure{width:100%!important;max-width:1380px!important;min-height:calc(100% - 4px);margin:0 auto!important;padding:30px!important;box-sizing:border-box;background:#f7f8f9!important;border:0!important;border-radius:0!important;box-shadow:none!important;overflow:visible!important}
.gfn-visual-modal__figure.reading-diagram .mermaid-svg,
.gfn-visual-modal__figure.reading-diagram .mermaid{width:100%!important;min-width:0!important;height:calc(100vh - 112px);display:flex!important;align-items:center;justify-content:center;overflow:visible!important}
.gfn-visual-modal__figure.reading-diagram .mermaid-svg>svg,
.gfn-visual-modal__figure.reading-diagram .mermaid>svg{width:100%!important;max-width:100%!important;height:100%!important;max-height:none!important}
.gfn-visual-modal__figure.gfn-chart .gfn-line,
.gfn-visual-modal__figure.gfn-chart .gfn-gantt{overflow:visible!important}
.gfn-visual-modal__figure.gfn-chart .gfn-line svg{min-width:0!important;width:100%!important}
.gfn-visual-is-open{overflow:hidden!important}

@media(max-width:1100px){
  .gfn-global-mega__markets{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:919px){
  .scene__pin>div[style*="width:100%"]{box-sizing:border-box;max-width:100%!important}
  .boucle-grid,.obtenez-grid{grid-template-columns:minmax(0,1fr)!important}
  .boucle-grid>*,.obtenez-grid>*{min-width:0}
  .g-hero0,.g-sec{overflow-x:clip}
  .gfn-cms-cards .reading-insight__grid{grid-template-columns:1fr}
  .gfn-cms-cards .reading-insight__grid>li{padding:16px}
  .gfn-global-mega{display:none!important}
  .gfn-visual-modal{padding:0}
  .gfn-visual-modal__panel{width:100%;height:100vh;border:0;border-radius:0}
  .gfn-visual-modal__stage{padding:64px 12px 20px}
  .gfn-visual-modal__figure{padding:14px!important;min-height:0}
  .gfn-visual-modal__figure.reading-diagram .mermaid-svg,
  .gfn-visual-modal__figure.reading-diagram .mermaid{height:calc(100vh - 112px)}
}
@media print{
  .gfn-global-mega,.gfn-visual-expand,.gfn-visual-modal{display:none!important}
}

/* Responsive contract shared by every rendered locale and page template. */
@media (max-width:919px){
  html,body{max-width:100%;overflow-x:clip}
  main,main section,main article{min-width:0;max-width:100%;box-sizing:border-box}
  .gacc-head{justify-content:flex-start!important;align-items:flex-start!important;gap:14px!important;text-align:left!important}
  .gacc-titlewrap{flex:1 1 auto!important;min-width:0!important;max-width:100%!important}
  .gacc-title{max-width:100%!important;text-align:left!important;overflow-wrap:anywhere}
  .gacc-idx{flex:0 0 auto!important;padding-top:4px!important;white-space:nowrap}
  .gacc-panel,.gacc-panel>div{min-width:0!important;max-width:100%!important;box-sizing:border-box;text-align:left!important}
  .gfn-dyn-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .gfn-dyn-reading-card{min-width:0!important}
  .reading-layout,.art-grid{min-width:0!important}
  .reading-prose,.art-body,.gfn-supplementary{min-width:0!important;max-width:100%!important}
  .reading-insight__grid,.reading-application__path{min-width:0!important}
  .reading-table-wrap{max-width:100%;overscroll-behavior-inline:contain}
  .reading-diagram,.gfn-chart{max-width:100%!important;box-sizing:border-box}
  .gfn-final-cta__panel{box-sizing:border-box}
}

@media (max-width:700px){
  .gfn-topbar{display:none!important;height:0!important}
  header+div[aria-hidden="true"][style*="height:120px"]{height:80px!important}
  .cmp-wrap{max-width:100%!important;overflow-x:auto!important;overscroll-behavior-inline:contain;-webkit-overflow-scrolling:touch;scrollbar-width:thin}
  .cmp{min-width:760px!important}
  main section>div[style*="max-width:1344px"],
  main section>div[style*="max-width:1280px"],
  main section>div[style*="max-width:1240px"],
  footer>div[style*="max-width:1344px"],
  footer>div[style*="max-width:1280px"]{padding-left:20px!important;padding-right:20px!important;box-sizing:border-box}
  main section[style*="padding:160px"],main section[style*="padding: 160px"],
  main section[style*="padding:120px"],main section[style*="padding: 120px"]{padding-top:72px!important;padding-bottom:72px!important}
  main h1{font-size:clamp(36px,10.8vw,44px)!important;line-height:1.06!important;overflow-wrap:anywhere}
  main h2{font-size:clamp(27px,8.2vw,34px)!important;line-height:1.14!important;overflow-wrap:anywhere}
  .sec-kickrow{align-items:flex-start!important;gap:14px!important}
  .sec-num{flex:none;white-space:nowrap}
  .gacc-head{padding:17px 0!important;gap:11px!important}
  .gacc-title{font-size:22px!important;line-height:1.22!important;letter-spacing:-.015em!important}
  .gacc-panel{padding-left:0!important;padding-right:0!important}
  .gfn-dyn-grid{grid-template-columns:1fr!important;gap:14px!important}
  .gfn-dyn-reading-card{display:block!important;width:100%!important;padding:22px!important;min-height:0!important;max-width:100%!important;box-sizing:border-box!important}
  .gfn-dyn-reading-title,.gfn-dyn-reading-description{min-width:0;max-width:100%;overflow-wrap:anywhere}
  .reading-code,.reading-code code{max-width:100%!important;box-sizing:border-box!important}
  .reading-code code{display:block!important;white-space:pre-wrap!important;overflow-wrap:anywhere!important;word-break:break-word!important}
  .g-stats{width:100%!important;max-width:100%!important;grid-template-columns:1fr!important;gap:32px!important}
  .g-stats>*{min-width:0!important;max-width:100%!important;box-sizing:border-box!important}
  .apr-dialogue,.apr-doctrine{grid-template-columns:1fr!important;gap:32px!important}
  .apr-dialogue>*,.apr-dialogue>*>*,.apr-doctrine>*{min-width:0!important;max-width:100%!important;box-sizing:border-box!important}
  .apr-dialogue>div:last-child>.gfn-rev{padding:22px!important;overflow-wrap:anywhere}
  #secteurs .mkt-card,#secteurs .mkt-cta{padding:22px!important}
  #secteurs .mkt-toolbar{align-items:stretch!important;gap:10px!important}
  #secteurs .mkt-search{width:100%!important;min-width:0!important;flex-basis:100%!important}
  #secteurs .mkt-toolbar label{width:100%;justify-content:space-between;white-space:normal!important}
  #secteurs .mkt-sort-select{min-width:0!important;max-width:64%}
  #secteurs .mkt-reset{justify-content:center}
  .reading-hero,.market-hero{padding-top:38px!important;padding-bottom:46px!important}
  .reading-hero h1,.market-hero h1{font-size:clamp(36px,10.8vw,44px)!important;line-height:1.06!important}
  .reading-deck,.market-hero>div>p:last-child{font-size:17px!important;line-height:1.58!important}
  .reading-meta{gap:9px 16px!important;margin-top:24px!important}
  .reading-layout,.art-grid{padding-top:42px!important;padding-bottom:68px!important;gap:38px!important}
  .reading-h2,.art-body .art-h2wrap{margin-top:54px!important;padding-top:4px!important}
  .reading-prose p,.art-body p{font-size:17px!important;line-height:1.7!important}
  .reading-prose li,.art-body li{font-size:16px!important;line-height:1.65!important}
  .reading-notice{padding:20px!important;margin-bottom:32px!important}
  .reading-insight{margin:36px 0!important;padding:18px!important;border-radius:14px!important}
  .reading-application{margin-top:58px!important;padding:24px 18px!important}
  .reading-application__path{gap:10px!important;margin:22px 0!important}
  .reading-application__path li{min-height:0!important;padding:16px!important}
  .reading-diagram,.gfn-chart{margin:34px 0!important;padding:14px!important;border-radius:13px!important}
  .reading-diagram figcaption,.gfn-chart figcaption{padding-right:38px;text-align:left!important;overflow-wrap:anywhere}
  .gfn-visual-expand{top:9px;right:9px;width:36px;height:36px}
  .reading-cta,.reading-inline-cta{margin:44px 0!important;padding:22px!important;gap:18px!important;border-radius:14px!important}
  .reading-cta a,.reading-inline-cta a{width:100%;box-sizing:border-box;text-align:center}
  .reading-supplementary{margin-top:58px!important;padding-top:38px!important}
  .market-reading-card,.sector-card{min-height:0!important;padding:22px!important}
  .related-card{grid-template-columns:46px minmax(0,1fr)!important;padding:16px!important}
  .g-foot{gap:30px!important}
  .g-foot>div{min-width:0!important;padding-left:0!important;border-left:0!important}
  .g-foot a{overflow-wrap:anywhere}
  footer>div>div[style*="grid-template-columns:1fr 1fr 1fr 1fr"],
  footer>div>div[style*="grid-template-columns: 1fr 1fr 1fr 1fr"]{grid-template-columns:1fr!important;gap:30px!important}
  footer>div>div[style*="grid-template-columns:1fr 1fr 1fr 1fr"]>div,
  footer>div>div[style*="grid-template-columns: 1fr 1fr 1fr 1fr"]>div{min-width:0!important;padding-left:0!important;padding-right:0!important;border-left:0!important}
  .g-zrow{grid-template-columns:1fr!important;align-items:stretch!important;gap:22px!important}
  footer form[style*="display:flex"]{flex-direction:column!important;align-items:stretch!important}
  footer form[style*="display:flex"] input,footer form[style*="display:flex"] button{width:100%!important;box-sizing:border-box}
}

@media (max-width:420px){
  .reading-shell,.art-grid{padding-left:18px!important;padding-right:18px!important}
  main section>div[style*="max-width"],footer>div[style*="max-width"]{padding-left:18px!important;padding-right:18px!important}
  .gacc-title{font-size:20px!important}
  .reading-hero h1,.market-hero h1,main h1{font-size:36px!important}
  .reading-h2 h2,.reading-supplementary h2,.art-body h2,main h2{font-size:27px!important}
  .reading-diagram,.gfn-chart{margin-left:0!important;margin-right:0!important;padding:12px!important}
  .gfn-visual-modal__stage{padding-left:8px;padding-right:8px}
}

/* Progressive display motion. Content remains visible when JavaScript is absent. */
html.gfn-motion-ready [data-gfn-reveal]{
  opacity:0;
  transform:translate3d(0,22px,0) scale(.992);
  filter:blur(2px);
  transition-property:opacity,transform,filter;
  transition-duration:.72s;
  transition-delay:var(--gfn-reveal-delay,0ms);
  transition-timing-function:cubic-bezier(.16,1,.3,1);
  will-change:opacity,transform;
}
html.gfn-motion-ready [data-gfn-reveal="left"]{transform:translate3d(-22px,0,0)}
html.gfn-motion-ready [data-gfn-reveal="right"]{transform:translate3d(22px,0,0)}
html.gfn-motion-ready [data-gfn-reveal].is-visible{
  opacity:1;
  transform:none;
  filter:none;
}
.gfn-dyn-reading-card,.mkt-card,.sector-card,.market-reading-card,.gfn-mail-tile{
  transition:transform .32s cubic-bezier(.16,1,.3,1),box-shadow .32s cubic-bezier(.16,1,.3,1),border-color .2s ease!important;
}
.gfn-dyn-reading-card:hover,.mkt-card:hover,.sector-card:hover,.market-reading-card:hover{
  transform:translateY(-4px);
}

/* The public UI is intentionally centred on phones. Long-form and legal prose
   remain left aligned so paragraphs stay readable. */
@media (max-width:700px){
  body.gfn-ui-page main{text-align:center!important}
  body.gfn-ui-page main :where(h1,h2,h3,h4,p,blockquote,figcaption){text-align:center!important}
  body.gfn-ui-page main :where(h1,h2,h3,h4,p){margin-left:auto!important;margin-right:auto!important}
  body.gfn-ui-page main :where(ul,ol){width:fit-content;max-width:100%;margin-left:auto!important;margin-right:auto!important;text-align:left!important}
  body.gfn-ui-page main :where(.sec-kickrow,.g-head,.gfn-mail-hl,.reading-meta){justify-content:center!important;align-items:center!important;text-align:center!important}
  body.gfn-ui-page main .sec-kickrow{flex-wrap:wrap!important}
  body.gfn-ui-page main :where(.gacc-head,.gacc-titlewrap){justify-content:center!important;align-items:center!important;text-align:center!important}
  body.gfn-ui-page main .gacc-head{flex-direction:column!important}
  body.gfn-ui-page main .gacc-title{width:100%!important;text-align:center!important}
  body.gfn-ui-page main .gacc-idx{order:-1;padding-top:0!important}
  body.gfn-ui-page main :where(.gacc-panel,.gacc-panel>div){text-align:center!important}
  body.gfn-ui-page main :where(.gacc-panel ul,.gacc-panel ol){text-align:left!important}
  body.gfn-ui-page main :where([style*="align-items:flex-start"],[style*="align-items: flex-start"]){align-items:center!important}
  body.gfn-ui-page main :where([style*="justify-content:space-between"],[style*="justify-content: space-between"]){justify-content:center!important}
  body.gfn-ui-page main :where([style*="text-align:left"],[style*="text-align: left"]){text-align:center!important}
  body.gfn-ui-page main :where(a,button){justify-content:center}
  body.gfn-ui-page main :where(.mkt-toolbar,.reading-filters){justify-content:center!important}
  body.gfn-ui-page #secteurs .mkt-toolbar label{justify-content:center!important}
  body.gfn-ui-page :where(.gfn-mail-head,.gfn-mail-stage,.gfn-mail-steps){width:calc(100% - 36px)!important}
  body.gfn-ui-page .gfn-mail-head>div[style*="display:flex"]{justify-content:center!important;align-items:center!important}
  body.gfn-ui-page .gfn-mail-head h2{flex-basis:100%!important;max-width:100%!important;text-align:center!important}
  body.gfn-ui-page .gfn-mail-head p{margin-left:auto!important;margin-right:auto!important;text-align:center!important}
  body.gfn-ui-page .gfn-mail-hl{justify-content:center!important;text-align:center!important}
  body.gfn-ui-page .gfn-set-label{text-align:center!important}
  body.gfn-ui-page .gfn-set-grid{margin-left:auto!important;margin-right:auto!important}
  body.gfn-ui-page .g-faqL{position:static!important;text-align:center!important}
  body.gfn-ui-page .g-faqL .g-head{align-items:center!important}
  body.gfn-ui-page .g-faqItem button{justify-content:center!important;text-align:center!important}
  body.gfn-ui-page .g-faqItem button>span:last-child{text-align:center!important}
  body.gfn-ui-page .g-faqItem p{padding-left:24px!important;padding-right:24px!important;text-align:center!important}
  body.editorial-reading .reading-hero,body.editorial-reading .market-hero{text-align:center!important}
  body.editorial-reading :where(.reading-hero h1,.reading-deck,.market-hero h1,.market-hero>div>p){margin-left:auto!important;margin-right:auto!important;text-align:center!important}
  body.editorial-reading .reading-meta{justify-content:center!important;text-align:center!important}
  .legal-page-main>section:first-child,.legal-page-main .legal-hero{text-align:center!important}
  .legal-page-main>section:first-child :where(h1,p),.legal-page-main .legal-hero :where(h1,p){margin-left:auto!important;margin-right:auto!important;text-align:center!important}
  .legal-page-main article,.legal-page-main article :where(p,li,h2,h3){text-align:left!important}
  footer{text-align:center!important}
  footer :where(.g-foot,.g-zrow){justify-items:center!important;text-align:center!important}
  footer .g-foot>div{display:flex!important;flex-direction:column!important;align-items:center!important}
  footer :where(a,p,span,label){text-align:center!important}
  footer form{margin-left:auto!important;margin-right:auto!important}
}

@media (prefers-reduced-motion:reduce){
  html.gfn-motion-ready [data-gfn-reveal]{opacity:1!important;transform:none!important;filter:none!important;transition:none!important}
  .gfn-dyn-reading-card,.mkt-card,.sector-card,.market-reading-card,.gfn-mail-tile{transition:none!important}
}
