/*
 * A git-style commit graph. The seven phases are commit nodes on a trunk that
 * draws itself as the sequence advances, with an optional branch bracket that
 * forks at one phase and merges at another — the Strangler Fig step, rendered
 * as the thing it describes.
 *
 * Geometry rests on two numbers passed in from the component: --n (node count)
 * and --i0/--i1 (branch endpoints). Every node column is an equal flex share,
 * so a node's centre is exactly ((i + 0.5) / n) of the plot width and the
 * bracket can be placed with pure calc() instead of measured pixels.
 *
 * Colours arrive per-node as --c: the component samples one brand ramp so the
 * rail, the dots and the card all move through the same gradient.
 */

.B2mwRXxVi640yfOaJnOA {
  /* Overridden inline by the theme props. */
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #000d30;
  --muted: #5b6577;
  --line: #e2e7f0;
  --branch: #7300ff;
  --accent: #4c00ff;
  --radius: 16px;
  --maxw: 85rem;
  --step: 4.6s;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --dot: 40px;
  --rail: 4px;
  --branchGap: 64px;
  --rowH: 74px;

  /*
   * Mobile serpentine grid. --cols is overridden inline by the prop.
   * --tileH has to clear the tallest tile's contents with room to spare: the
   * tile is what carries the branch tint, so anything the text overhangs shows
   * as the tint being clipped at the baseline. --tilePadT is shared by the
   * padding and the connector offsets so the rail stays centred on the dots.
   */
  --cols: 3;
  --tileH: 100px;
  --tilePadT: 10px;
  --gapX: 6px;
  --gapY: 20px;

  box-sizing: border-box;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 0 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.B2mwRXxVi640yfOaJnOA *,
.B2mwRXxVi640yfOaJnOA *::before,
.B2mwRXxVi640yfOaJnOA *::after {
  box-sizing: border-box;
}

/* ---------- plot ---------- */

/*
 * The branch gap is padding rather than a margin on .row: a margin would
 * collapse straight through .plot (no border, no padding of its own) and drag
 * the whole plot down, leaving the absolutely-positioned branch zone sitting on
 * top of the nodes instead of above them. Padding cannot collapse. It also
 * leaves the branch zone where it belongs — an abs-positioned child resolves
 * against the padding box, so top:0 is still the plot's outer edge.
 */
.cAozzaFAqIAfUiMmQb3A {
  position: relative;
  width: 100%;
  padding-top: var(--branchGap);
}

.WvrDOvtR7x0ByzWtAabk {
  --branchGap: 0px;
}

.CQN8pknXpGqmfcUvUN4Y {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.jsWlNbr9hfoyQbaneVdZ {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 4px;
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.jsWlNbr9hfoyQbaneVdZ:focus-visible {
  outline: none;
}

.jsWlNbr9hfoyQbaneVdZ:focus-visible .Iabc0FVBRmh9mo5Q11Ob {
  outline: 2px solid var(--c);
  outline-offset: 4px;
}

/* ---------- trunk ---------- */

/*
 * Each node draws the segment to its right, so the rail is continuous by
 * construction: left:50% / right:-50% spans exactly centre-to-centre.
 */
.cMb2bfRFvq6jgqTyUMFC {
  position: absolute;
  top: calc((var(--dot) - var(--rail)) / 2);
  left: 50%;
  right: -50%;
  height: var(--rail);
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
  /* Spans into the next node's column, so it must never intercept its clicks. */
  pointer-events: none;
}

.SN8Ga7nYdZTSTyhfyva4 .cMb2bfRFvq6jgqTyUMFC {
  display: none;
}

.TEUPF4JW2YFiceF7ivQV {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--c), var(--cNext));
  transform: scaleX(var(--f));
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- nodes ---------- */

.YwIqILzhWiSLoGPHHZ1q {
  position: relative;
  width: var(--dot);
  height: var(--dot);
  flex: 0 0 auto;
  z-index: 1;
}

.Iabc0FVBRmh9mo5Q11Ob {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  color: var(--muted);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease;
}

.RCtwPW8XMwXajgOYxaKl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.LSfSZZPjx0BRr26EAZby {
  width: 18px;
  height: 18px;
}

.yWHWSBkzhfrYyyqHWG7i .Iabc0FVBRmh9mo5Q11Ob {
  background: var(--c);
  border-color: var(--c);
  color: #fff;
}

.ARD367zEpAvGXfgF83qb .Iabc0FVBRmh9mo5Q11Ob {
  background: var(--c);
  border-color: var(--c);
  color: #fff;
  transform: scale(1.16);
  box-shadow: 0 8px 26px color-mix(in srgb, var(--c) 40%, transparent);
}

/* Halo on the active node — the only always-on motion in the graphic. */
.ARD367zEpAvGXfgF83qb .YwIqILzhWiSLoGPHHZ1q::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c);
  animation: LmLvaia_ZsQhp3mjOn54 2s ease-out infinite;
  pointer-events: none;
}

@keyframes LmLvaia_ZsQhp3mjOn54 {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}

.jsWlNbr9hfoyQbaneVdZ:hover .Iabc0FVBRmh9mo5Q11Ob {
  border-color: var(--c);
}

/* ---------- countdown ring ---------- */

.jO5xxjvfEXGVlRA6T1Mw {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(var(--dot) + 16px);
  height: calc(var(--dot) + 16px);
  transform: rotate(-90deg);
  overflow: visible;
  pointer-events: none;
}

.gozYrJjVbPYQ6yXiJODq {
  fill: none;
  stroke: var(--c);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.6;
  /* 2πr for r=18.5 */
  stroke-dasharray: 116.24;
  stroke-dashoffset: 0;
  animation: hHxpL6q61eadCz1V4siS var(--step) linear forwards;
}

.Q9jpqT7o1cspLiH3Ur8J .gozYrJjVbPYQ6yXiJODq {
  animation-play-state: paused;
}

@keyframes hHxpL6q61eadCz1V4siS {
  to {
    stroke-dashoffset: 116.24;
  }
}

/* ---------- labels ---------- */

.QCAszMe_z0pT5oSSVxSq {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 14px;
  min-width: 0;
}

.t5npO4QO8fO3NTjpZNnF {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.4s ease;
}

.Fu2Hf77lSJ6kRduMUJSW {
  font-size: 13.5px;
  /* Figtree Light. The weight must be enabled in Site Settings → Fonts: a
     component renders in Shadow DOM and cannot load its own webfont, so an
     unloaded 300 falls back to the nearest weight the site does load. */
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--muted);
  overflow-wrap: anywhere;
  transition: color 0.4s ease;
}

.yWHWSBkzhfrYyyqHWG7i .Fu2Hf77lSJ6kRduMUJSW,
.yWHWSBkzhfrYyyqHWG7i .t5npO4QO8fO3NTjpZNnF {
  color: var(--ink);
}

.ARD367zEpAvGXfgF83qb .Fu2Hf77lSJ6kRduMUJSW {
  color: var(--c);
}

.ARD367zEpAvGXfgF83qb .t5npO4QO8fO3NTjpZNnF {
  color: var(--ink);
}

/* ---------- branch bracket ---------- */

.xAMcPJyZZuERCEvtQTRF {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--branchGap) + (var(--dot) / 2));
  pointer-events: none;
  z-index: 0;
}

.bdeGci4oWt2uSXvOqzfj {
  position: absolute;
  top: 16px;
  bottom: 0;
  left: calc(((var(--i0) + 0.5) / var(--n)) * 100%);
  right: calc(100% - (((var(--i1) + 0.5) / var(--n)) * 100%));
}

/* Faint dashed track — the branch that has not been cut yet. */
.bdeGci4oWt2uSXvOqzfj::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px dashed var(--line);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

/* Solid ink, revealed left-to-right as the head moves from fork to merge. */
.HDndXX1gNcQ696nbaJRT {
  position: absolute;
  inset: 0;
  border: 3px solid var(--branch);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  clip-path: inset(0 calc((1 - var(--bf)) * 100%) 0 0);
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.HD6B7uwhHqwM4NWzl8e3 {
  position: absolute;
  top: 16px;
  left: calc(((var(--i0) + var(--i1) + 1) / (2 * var(--n))) * 100%);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--branch) 40%, transparent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--branch);
  white-space: nowrap;
}

.ftVluy7gXDIXTkzNEZcI {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--branch);
  flex: 0 0 auto;
}

/* Nodes sitting inside the branch span pick up its colour on their kicker. */
.w5UWd8VqHKeWKqP8OatS.ARD367zEpAvGXfgF83qb .t5npO4QO8fO3NTjpZNnF {
  color: var(--branch);
}

/* ---------- detail card ---------- */

.i8Kscu7fCY1Aorp1hxCA {
  position: relative;
  margin-top: 44px;
  padding: 26px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px -30px color-mix(in srgb, var(--ink) 55%, transparent);
  min-height: 150px;
  transition: border-left-color 0.5s ease;
}

.i8Kscu7fCY1Aorp1hxCA:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.Dc7ZomiToTcNAxWeaCsY {
  display: grid;
}

/*
 * All panes share one grid cell, so the row is as tall as the tallest phase and
 * the card never changes height. Inactive panes are visibility:hidden rather
 * than opacity:0 alone — that keeps them out of the accessibility tree too, so
 * a screen reader doesn't read all seven descriptions at once.
 */
.qvGImrnj62sPMGXExl3K {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(6px);
  /* Visibility flips only after the fade completes on the way out. */
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.spMnLSRY__wRN9Q8nsoe {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}

/* Pinned to the card's top-right corner so it costs the body no vertical space. */
.eA91bak976lAOWikZNvf {
  position: absolute;
  top: 26px;
  right: 30px;
  margin: 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  pointer-events: none;
}

.OTsiNh1VpDBxO6INCS7r {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Keeps a long title from running under the pinned counter. */
.NxVHbglYmH182AhE2bAw .OTsiNh1VpDBxO6INCS7r {
  padding-right: 72px;
}

.tQu8KgReZSKqyKcUf9kT {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.5s ease;
}

.EEqsqKHgaBFgofZvkgEC {
  margin: 0;
  max-width: 74ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
}

.d7ljK0sJpjlnkFcCCOtV {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
}

/*
 * ---------- stacked layout ----------
 * The "Stacked" variant is one node per row at every width, branch bracket and
 * all. The auto layout no longer shares these rules: below 991px it wraps into
 * the serpentine grid further down instead.
 */

.biUeBtGjV_WneYQWWFDQ .cAozzaFAqIAfUiMmQb3A {
  padding-top: 0;
  padding-left: var(--branchGap);
}

.biUeBtGjV_WneYQWWFDQ .CQN8pknXpGqmfcUvUN4Y {
  flex-direction: column;
  align-items: stretch;
}

.biUeBtGjV_WneYQWWFDQ .jsWlNbr9hfoyQbaneVdZ {
  flex: 0 0 var(--rowH);
  height: var(--rowH);
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  text-align: left;
}

.biUeBtGjV_WneYQWWFDQ .SN8Ga7nYdZTSTyhfyva4 {
  flex-basis: var(--dot);
  height: var(--dot);
}

.biUeBtGjV_WneYQWWFDQ .cMb2bfRFvq6jgqTyUMFC {
  top: calc(var(--dot) / 2);
  left: calc((var(--dot) - var(--rail)) / 2);
  right: auto;
  width: var(--rail);
  height: var(--rowH);
}

.biUeBtGjV_WneYQWWFDQ .TEUPF4JW2YFiceF7ivQV {
  transform: scaleY(var(--f));
  transform-origin: center top;
  background: linear-gradient(180deg, var(--c), var(--cNext));
}

.biUeBtGjV_WneYQWWFDQ .QCAszMe_z0pT5oSSVxSq {
  margin-top: 0;
  padding-top: 3px;
  align-items: flex-start;
}

.biUeBtGjV_WneYQWWFDQ .xAMcPJyZZuERCEvtQTRF {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  height: auto;
  width: calc(var(--branchGap) + (var(--dot) / 2));
}

.biUeBtGjV_WneYQWWFDQ .bdeGci4oWt2uSXvOqzfj {
  top: calc(var(--i0) * var(--rowH) + (var(--dot) / 2));
  height: calc((var(--i1) - var(--i0)) * var(--rowH));
  bottom: auto;
  left: 20px;
  right: 0;
}

.biUeBtGjV_WneYQWWFDQ .bdeGci4oWt2uSXvOqzfj::before {
  border: 3px dashed var(--line);
  border-right: 0;
  border-radius: 18px 0 0 18px;
}

.biUeBtGjV_WneYQWWFDQ .HDndXX1gNcQ696nbaJRT {
  border: 3px solid var(--branch);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  clip-path: inset(0 0 calc((1 - var(--bf)) * 100%) 0);
}

.biUeBtGjV_WneYQWWFDQ .HD6B7uwhHqwM4NWzl8e3 {
  top: calc(((var(--i0) + var(--i1)) / 2) * var(--rowH) + (var(--dot) / 2));
  left: 20px;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 13px 5px;
}

/*
 * ---------- mobile: serpentine grid ----------
 * One node per row put the detail card far below the fold, so the auto layout
 * wraps into a grid of --cols instead. Odd rows are laid out right-to-left
 * (the component sets each node's grid column), which keeps the path
 * continuous and, more usefully, puts the node that ends a row directly above
 * the node that starts the next one — so every wrap is a plain vertical drop
 * rather than a curve back across the graphic.
 *
 * The branch bracket cannot survive the wrap: once a row breaks mid-span its
 * shape is an L, not a rectangle. Here the fork is shown as a tint across the
 * phases it covers, with its label promoted to a legend above the grid.
 */
@media (max-width: 991px) {
  .bCAyyZJt_l2VWg5ctDxD .cAozzaFAqIAfUiMmQb3A {
    padding: 0;
  }

  .bCAyyZJt_l2VWg5ctDxD .CQN8pknXpGqmfcUvUN4Y {
    display: grid;
    grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
    column-gap: var(--gapX);
    row-gap: var(--gapY);
    align-items: start;
  }

  .bCAyyZJt_l2VWg5ctDxD .jsWlNbr9hfoyQbaneVdZ {
    height: var(--tileH);
    padding: var(--tilePadT) 4px 0;
  }

  .bCAyyZJt_l2VWg5ctDxD .w5UWd8VqHKeWKqP8OatS {
    background: color-mix(in srgb, var(--branch) 7%, transparent);
    border-radius: 12px;
  }

  /* Within a row: centre-to-centre, same as the desktop trunk. */
  .bCAyyZJt_l2VWg5ctDxD .cMb2bfRFvq6jgqTyUMFC {
    top: calc(var(--tilePadT) + ((var(--dot) - var(--rail)) / 2));
    left: 50%;
    right: -50%;
    width: auto;
    height: var(--rail);
  }

  .bCAyyZJt_l2VWg5ctDxD .TEUPF4JW2YFiceF7ivQV {
    transform: scaleX(var(--f));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--c), var(--cNext));
  }

  /* Odd rows run the other way, so the segment and its fill mirror. */
  .bCAyyZJt_l2VWg5ctDxD .igVNEsuFFl5iG1DL8cj3 .cMb2bfRFvq6jgqTyUMFC {
    left: -50%;
    right: 50%;
  }

  .bCAyyZJt_l2VWg5ctDxD .igVNEsuFFl5iG1DL8cj3 .TEUPF4JW2YFiceF7ivQV {
    transform-origin: right center;
    background: linear-gradient(270deg, var(--c), var(--cNext));
  }

  /*
   * Row end: a C that leaves the dot sideways, drops through the column gutter
   * and returns to the node below. A straight drop would be topologically right
   * — both nodes share a column — but it would run through the label text, so
   * the line is routed out past it instead. The C opens toward the gutter, so
   * it mirrors on reversed rows, which end at the left edge rather than right.
   */
  .bCAyyZJt_l2VWg5ctDxD .rYF3OWn6aSF8t744vHuA .cMb2bfRFvq6jgqTyUMFC {
    top: calc(var(--tilePadT) + (var(--dot) / 2) - (var(--rail) / 2));
    left: 50%;
    right: auto;
    width: calc(50% + (var(--gapX) / 2));
    height: calc(var(--tileH) + var(--gapY) + var(--rail));
    background: none;
    border: var(--rail) solid var(--line);
    border-left-width: 0;
    border-radius: 0 16px 16px 0;
    transition: border-color 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bCAyyZJt_l2VWg5ctDxD .igVNEsuFFl5iG1DL8cj3.rYF3OWn6aSF8t744vHuA .cMb2bfRFvq6jgqTyUMFC {
    left: auto;
    right: 50%;
    border-left-width: var(--rail);
    border-right-width: 0;
    border-radius: 16px 0 0 16px;
  }

  /* Binary, so the curve cross-fades rather than drawing like a straight run. */
  .bCAyyZJt_l2VWg5ctDxD .yWHWSBkzhfrYyyqHWG7i.rYF3OWn6aSF8t744vHuA .cMb2bfRFvq6jgqTyUMFC {
    border-color: var(--c);
  }

  .bCAyyZJt_l2VWg5ctDxD .rYF3OWn6aSF8t744vHuA .TEUPF4JW2YFiceF7ivQV {
    display: none;
  }

  .bCAyyZJt_l2VWg5ctDxD .QCAszMe_z0pT5oSSVxSq {
    margin-top: 10px;
  }

  .bCAyyZJt_l2VWg5ctDxD .t5npO4QO8fO3NTjpZNnF {
    font-size: 9.5px;
    letter-spacing: 0.1em;
  }

  .bCAyyZJt_l2VWg5ctDxD .Fu2Hf77lSJ6kRduMUJSW {
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .bCAyyZJt_l2VWg5ctDxD .xAMcPJyZZuERCEvtQTRF {
    position: static;
    width: auto;
    height: auto;
    margin: 0 0 16px;
  }

  .bCAyyZJt_l2VWg5ctDxD .bdeGci4oWt2uSXvOqzfj {
    display: none;
  }

  .bCAyyZJt_l2VWg5ctDxD .HD6B7uwhHqwM4NWzl8e3 {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;
    padding: 5px 13px;
  }
}

@media (max-width: 479px) {
  .B2mwRXxVi640yfOaJnOA {
    --dot: 34px;
    --rowH: 68px;
    --branchGap: 40px;
    --tileH: 94px;
  }

  .i8Kscu7fCY1Aorp1hxCA {
    padding: 20px 18px;
  }

  /* Track the card's tighter padding. */
  .eA91bak976lAOWikZNvf {
    top: 20px;
    right: 18px;
  }

  .NxVHbglYmH182AhE2bAw .OTsiNh1VpDBxO6INCS7r {
    padding-right: 62px;
  }

  .EEqsqKHgaBFgofZvkgEC {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .TEUPF4JW2YFiceF7ivQV,
  .cMb2bfRFvq6jgqTyUMFC,
  .Iabc0FVBRmh9mo5Q11Ob,
  .HDndXX1gNcQ696nbaJRT,
  .gozYrJjVbPYQ6yXiJODq {
    transition: none !important;
    animation: none !important;
  }

  /* Keep the visibility delay, or the outgoing pane would linger on top. */
  .qvGImrnj62sPMGXExl3K {
    transition: visibility 0s linear 0s;
  }

  .spMnLSRY__wRN9Q8nsoe {
    transition: none;
  }

  .ARD367zEpAvGXfgF83qb .YwIqILzhWiSLoGPHHZ1q::after {
    display: none;
  }
}

/* Same suppression for the JS-detected reduced-motion path. */
.y8bOp4Y4ofzjTAGaUcg4 .TEUPF4JW2YFiceF7ivQV,
.y8bOp4Y4ofzjTAGaUcg4 .cMb2bfRFvq6jgqTyUMFC,
.y8bOp4Y4ofzjTAGaUcg4 .Iabc0FVBRmh9mo5Q11Ob,
.y8bOp4Y4ofzjTAGaUcg4 .HDndXX1gNcQ696nbaJRT {
  transition: none !important;
  animation: none !important;
}

.y8bOp4Y4ofzjTAGaUcg4 .qvGImrnj62sPMGXExl3K {
  transition: visibility 0s linear 0s;
}

.y8bOp4Y4ofzjTAGaUcg4 .spMnLSRY__wRN9Q8nsoe {
  transition: none;
}

.y8bOp4Y4ofzjTAGaUcg4 .ARD367zEpAvGXfgF83qb .YwIqILzhWiSLoGPHHZ1q::after {
  display: none;
}

