/* ═══════════════════════════════════════════════════════════════
   DÉROULÉ D’UNE SÉANCE · chapitre optionnel
   Refonte visuelle alignée sur la DA du Grimoire des Mondes.
   - transition sombre → parchemin sans bord franc
   - en-tête non impacté par le sélecteur global `header`
   - illustration fondue dans la page, sans cadre coupé
   - ouverture/fermeture progressive et accessible
   ═══════════════════════════════════════════════════════════════ */

.session-flow-gateway,
.session-flow-shell,
.session-flow {
  --sf-ink: #1c1610;
  --sf-warm: #3d3528;
  --sf-dust: #756a59;
  --sf-paper: #f7f2e8;
  --sf-paper-light: #fffaf0;
  --sf-gold: #b8903a;
  --sf-gold-light: #d4ac5e;
  --sf-navy: #171522;
  --sf-navy-deep: #0d0c15;
  --sf-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── Passage entre la scène sombre et le chapitre parchemin ── */
.session-flow-gateway {
  position: relative;
  z-index: 12;
  min-height: 188px;
  margin-top: -104px;
  padding: 0 clamp(18px, 4vw, 56px) 28px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.session-flow-gateway__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 54% 78% at 50% 28%, rgba(212, 172, 94, .11), transparent 68%),
    linear-gradient(to bottom,
      rgba(13, 12, 21, 0) 0%,
      rgba(13, 12, 21, .58) 24%,
      rgba(49, 42, 54, .48) 40%,
      rgba(247, 242, 232, .52) 68%,
      rgba(247, 242, 232, .94) 88%,
      var(--sf-paper) 100%);
}

.session-flow-gateway__wash::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  opacity: .34;
  background: url('../assets/button-paper.webp') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%, #000);
          mask-image: linear-gradient(to bottom, transparent, #000 45%, #000);
}

.session-flow-gateway__line {
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: -1;
  width: min(980px, 86vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    transparent,
    rgba(184, 144, 58, .18) 11%,
    rgba(212, 172, 94, .65) 42%,
    rgba(212, 172, 94, .65) 58%,
    rgba(184, 144, 58, .18) 89%,
    transparent);
  box-shadow: 0 0 18px rgba(184, 144, 58, .12);
}

.session-flow-gateway__line::before,
.session-flow-gateway__line::after,
.session-flow-gateway__line span {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(184, 144, 58, .72);
  background: var(--sf-paper);
  transform: translateY(-50%) rotate(45deg);
}

.session-flow-gateway__line::before { left: 13%; }
.session-flow-gateway__line::after  { right: 13%; }
.session-flow-gateway__line span {
  left: 50%;
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, var(--sf-gold-light), var(--sf-gold));
  border: 3px solid var(--sf-paper);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 16px rgba(184, 144, 58, .32);
}

/* ── Raccord passerelle → formules ─────────────────────────────
   L'image des tarifs commence sous une couche de parchemin, puis apparaît
   graduellement : aucune ligne ne sépare plus les deux chapitres. */
.offers {
  position: relative;
  isolation: isolate;
}

.offers::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: clamp(180px, 18vw, 270px);
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 76% at 50% 0%, rgba(212, 172, 94, .09), transparent 70%),
    linear-gradient(to bottom,
      #f7f2e8 0%,
      rgba(247, 242, 232, .98) 18%,
      rgba(247, 242, 232, .72) 52%,
      rgba(247, 242, 232, .24) 78%,
      rgba(247, 242, 232, 0) 100%);
}

.offers > * {
  position: relative;
  z-index: 1;
}

/* Le bouton reprend la matière papier du site, sans forme capsule. */
.session-flow-gateway__btn {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-width: min(430px, calc(100vw - 36px));
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  padding: 10px 17px 10px 15px;
  border: 1px solid rgba(147, 104, 42, .52);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, .84), rgba(242, 232, 214, .9)),
    url('../assets/button-paper.webp') center / cover no-repeat;
  color: #252033;
  cursor: pointer;
  box-shadow:
    0 14px 34px rgba(34, 25, 17, .18),
    0 2px 7px rgba(34, 25, 17, .1),
    inset 0 1px 0 rgba(255, 255, 255, .72),
    inset 0 0 0 4px rgba(255, 255, 255, .22);
  transition:
    transform .36s var(--sf-ease),
    border-color .3s ease,
    box-shadow .36s var(--sf-ease),
    background-color .3s ease;
}

.session-flow-gateway__btn::before,
.session-flow-gateway__btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.session-flow-gateway__btn::before {
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(184, 144, 58, .16);
  border-radius: 2px;
}

.session-flow-gateway__btn::after {
  top: 0;
  bottom: 0;
  left: -44%;
  width: 28%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: left .72s var(--sf-ease), opacity .25s ease;
}

.session-flow-gateway__btn:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 104, 42, .78);
  box-shadow:
    0 19px 42px rgba(34, 25, 17, .23),
    0 4px 10px rgba(34, 25, 17, .1),
    inset 0 1px 0 rgba(255, 255, 255, .78),
    inset 0 0 0 4px rgba(255, 255, 255, .28);
}

.session-flow-gateway__btn:hover::after {
  left: 118%;
  opacity: 1;
}

.session-flow-gateway__btn:active { transform: translateY(0) scale(.988); }
.session-flow-gateway__btn:focus-visible {
  outline: 2px solid var(--sf-gold-light);
  outline-offset: 5px;
}

.session-flow-gateway__sigil {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 144, 58, .56);
  transform: rotate(45deg);
  background: rgba(184, 144, 58, .075);
  box-shadow: inset 0 0 14px rgba(184, 144, 58, .06);
}

.session-flow-gateway__sigil::before {
  content: "VIII";
  transform: rotate(-45deg);
  font: 700 8px/1 Georgia, serif;
  letter-spacing: -.04em;
  color: #8c6929;
}

.session-flow-gateway__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1;
}

.session-flow-gateway__copy small {
  margin-bottom: 5px;
  font: 800 8px/1 system-ui, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #98712c;
}

.session-flow-gateway__label {
  font: 400 clamp(18px, 2vw, 21px)/1.05 'BlackChancery', Georgia, serif;
  letter-spacing: .01em;
}

.session-flow-gateway__btn svg {
  width: 20px;
  height: 20px;
  justify-self: end;
  color: #8e6928;
  transition: transform .46s var(--sf-ease), color .25s ease;
}

.session-flow-gateway__btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: #59431e;
}

/* ── Ouverture réelle : la hauteur ET le contenu fondent ensemble ── */
.session-flow-shell[hidden] { display: none !important; }

.session-flow-shell {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    grid-template-rows .92s var(--sf-ease),
    opacity .55s ease,
    transform .72s var(--sf-ease);
}

.session-flow-shell.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: none;
}

.session-flow {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--sf-ink);
  isolation: isolate;
  padding: clamp(92px, 10vw, 132px) 0 clamp(104px, 11vw, 144px);
  background:
    radial-gradient(ellipse 72% 38% at 88% 37%, rgba(118, 151, 188, .11), transparent 72%),
    radial-gradient(ellipse 48% 28% at 12% 68%, rgba(184, 144, 58, .075), transparent 75%),
    linear-gradient(180deg, rgba(247, 242, 232, .97), rgba(246, 239, 227, .96)),
    url('../assets/button-paper.webp') center / cover repeat;
}

/* Brumes de raccord pleine largeur : aucune bordure verticale visible. */
.session-flow::before,
.session-flow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.session-flow::before {
  top: 0;
  height: 190px;
  background:
    linear-gradient(to bottom,
      var(--sf-paper) 0%,
      rgba(247, 242, 232, .88) 24%,
      rgba(247, 242, 232, .32) 66%,
      transparent 100%);
}

.session-flow::after {
  bottom: 0;
  height: 240px;
  background:
    linear-gradient(to bottom,
      transparent 0%,
      rgba(247, 242, 232, .36) 38%,
      rgba(247, 242, 232, .9) 79%,
      var(--sf-paper) 100%);
}

.session-flow__top-fade,
.session-flow__bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.session-flow__top-fade {
  top: 0;
  height: 115px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
}

.session-flow__bottom-fade {
  bottom: 0;
  height: 180px;
  opacity: .34;
  background: url('../assets/tarifs.webp') center bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 68%, #000);
          mask-image: linear-gradient(to bottom, transparent, #000 68%, #000);
}

.session-flow__wrap {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - clamp(40px, 8vw, 112px)));
  margin: 0 auto;
}

/* IMPORTANT : cet élément est désormais un div dans le HTML.
   Il n'hérite donc plus du style global du header principal du site. */
.session-flow__header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  align-items: end;
  gap: clamp(36px, 7vw, 88px);
  margin: 0 0 clamp(54px, 7vw, 78px);
  padding: 0 0 34px;
  background: none;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.session-flow__header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(184, 144, 58, .62),
    rgba(184, 144, 58, .18) 46%,
    transparent 92%);
}

.session-flow__header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--sf-paper);
  background: linear-gradient(135deg, var(--sf-gold-light), var(--sf-gold));
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(184, 144, 58, .28);
}

.session-flow__heading-group { min-width: 0; }

.session-flow__kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  color: #9b742c;
  font: 800 10px/1 system-ui, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.session-flow__kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.session-flow__title {
  margin: 0;
  max-width: 12ch;
  color: #231d31;
  font: 400 clamp(44px, 5.4vw, 66px)/.96 'BlackChancery', Georgia, serif;
  letter-spacing: .005em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .55);
}

.session-flow__intro {
  max-width: 46ch;
  margin: 0;
  padding-bottom: 3px;
  color: rgba(61, 53, 40, .8);
  font: 16.5px/1.75 Georgia, serif;
}

.session-flow__intro strong {
  color: #2a2440;
  font-weight: 600;
}

/* ── Corps : la chronologie est imprimée sur la page,
      l'illustration se dissout dans son bord droit. ── */
.session-flow__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: stretch;
  min-height: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.session-flow__layout::before {
  content: "";
  position: absolute;
  left: calc(58% + 4px);
  top: 4%;
  bottom: 4%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(184, 144, 58, .22) 18%,
    rgba(184, 144, 58, .22) 82%,
    transparent);
  pointer-events: none;
}

.session-flow__timeline {
  position: relative;
  z-index: 3;
  list-style: none;
  counter-reset: session-step;
  margin: 0;
  padding: 8px clamp(24px, 3vw, 42px) 8px 62px;
}

.session-flow__timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 21px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(184, 144, 58, .22),
    rgba(184, 144, 58, .72) 9%,
    rgba(184, 144, 58, .44) 88%,
    rgba(184, 144, 58, .12));
  box-shadow: 0 0 12px rgba(184, 144, 58, .12);
}

.session-flow__item {
  counter-increment: session-step;
  position: relative;
  margin: 0 0 26px;
  padding: 0 0 25px;
}

.session-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(111, 91, 58, .16), transparent 88%);
}

.session-flow__item:last-child { margin-bottom: 0; padding-bottom: 0; }

.session-flow__marker {
  position: absolute;
  left: -57px;
  top: 1px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 144, 58, .62);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .98), rgba(236, 223, 201, .94)),
    url('../assets/button-paper.webp') center / cover no-repeat;
  transform: rotate(45deg);
  box-shadow:
    0 0 0 5px rgba(247, 242, 232, .86),
    0 5px 14px rgba(71, 51, 24, .12);
}

.session-flow__marker::before {
  content: counter(session-step, decimal-leading-zero);
  transform: rotate(-45deg);
  color: #8b6828;
  font: 800 8px/1 system-ui, sans-serif;
  letter-spacing: -.03em;
}

.session-flow__content h3 {
  margin: 0 0 7px;
  color: #26325d;
  font: 400 clamp(27px, 2.7vw, 34px)/1.05 'BlackChancery', Georgia, serif;
}

.session-flow__content h3 small {
  display: inline-block;
  margin-left: 7px;
  color: #9a742f;
  font: 700 9px/1.2 system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  vertical-align: .22em;
}

.session-flow__content p {
  max-width: 55ch;
  margin: 0;
  color: rgba(45, 35, 25, .76);
  font: 16px/1.67 Georgia, serif;
}

.session-flow__illustration {
  position: relative;
  z-index: 1;
  min-height: 760px;
  margin: -34px -4vw -34px -72px;
  align-self: stretch;
  overflow: hidden;
  border: 0;
  background: transparent;
  isolation: isolate;
}

.session-flow__illustration::before,
.session-flow__illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Les quatre bords sont absorbés par la matière de la page. */
.session-flow__illustration::before {
  background:
    linear-gradient(to right,
      var(--sf-paper) 0%,
      rgba(247, 242, 232, .95) 8%,
      rgba(247, 242, 232, .38) 26%,
      transparent 52%),
    linear-gradient(to bottom,
      var(--sf-paper) 0%,
      transparent 15%,
      transparent 84%,
      var(--sf-paper) 100%);
}

.session-flow__illustration::after {
  background:
    radial-gradient(ellipse 90% 70% at 72% 48%, transparent 42%, rgba(247, 242, 232, .2) 70%, var(--sf-paper) 100%),
    linear-gradient(to left, rgba(247, 242, 232, .64), transparent 20%);
}

.session-flow__illustration img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .66;
  mix-blend-mode: multiply;
  filter: saturate(.72) contrast(.88) brightness(1.08);
  transform: scale(1.025);
}

/* ── Note finale : un bandeau de chapitre, pas une carte rapportée. ── */
.session-flow__quote {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(190px, .32fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  margin: clamp(58px, 8vw, 88px) 0 0;
  padding: clamp(30px, 4vw, 44px) clamp(28px, 5vw, 62px);
  border: 0;
  border-top: 1px solid rgba(212, 172, 94, .5);
  border-bottom: 1px solid rgba(212, 172, 94, .32);
  border-radius: 0;
  background:
    radial-gradient(circle at 8% 50%, rgba(93, 128, 188, .18), transparent 31%),
    linear-gradient(115deg, #23213a, #11101c 70%);
  box-shadow:
    0 22px 50px rgba(17, 14, 28, .18),
    inset 0 1px 0 rgba(255, 255, 255, .025);
  overflow: hidden;
}

.session-flow__quote::before {
  content: "“";
  position: absolute;
  left: 24px;
  top: -36px;
  color: rgba(212, 172, 94, .09);
  font: 400 170px/1 Georgia, serif;
  pointer-events: none;
}

.session-flow__quote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--sf-gold-light), transparent);
  box-shadow: 0 0 20px rgba(212, 172, 94, .24);
}

.session-flow__quote-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 28px;
  text-align: left;
  color: var(--sf-gold-light);
  font: 400 clamp(25px, 2.6vw, 32px)/1.05 'BlackChancery', Georgia, serif;
}

.session-flow__quote-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--sf-gold-light), transparent);
}

.session-flow__quote p:last-child {
  position: relative;
  z-index: 1;
  max-width: 72ch;
  margin: 0;
  text-align: left;
  color: rgba(247, 244, 237, .8);
  font: italic 15.5px/1.76 Georgia, serif;
}

/* Le contenu n'apparaît pas d'un bloc : vrai fondu échelonné. */
.session-flow__header,
.session-flow__layout,
.session-flow__quote {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(2px);
  transition:
    opacity .62s ease,
    transform .82s var(--sf-ease),
    filter .62s ease;
}

.session-flow-shell.is-open .session-flow__header {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: .15s;
}

.session-flow-shell.is-open .session-flow__layout {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: .25s;
}

.session-flow-shell.is-open .session-flow__quote {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: .36s;
}

/* ── Tablettes ── */
@media (max-width: 960px) {
  .session-flow-gateway {
    min-height: 166px;
    margin-top: -82px;
    padding-bottom: 24px;
  }

  .session-flow__wrap { width: min(760px, calc(100% - 42px)); }

  .session-flow__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .session-flow__title { max-width: none; }
  .session-flow__intro { max-width: 58ch; }

  .session-flow__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }

  .session-flow__layout::before { display: none; }

  .session-flow__illustration {
    order: -1;
    min-height: clamp(260px, 47vw, 390px);
    margin: -18px -26px 8px;
  }

  .session-flow__illustration::before {
    background:
      linear-gradient(to bottom,
        var(--sf-paper) 0%,
        rgba(247, 242, 232, .18) 20%,
        transparent 48%,
        rgba(247, 242, 232, .3) 76%,
        var(--sf-paper) 100%),
      linear-gradient(to right, var(--sf-paper), transparent 15%, transparent 85%, var(--sf-paper));
  }

  .session-flow__illustration img { object-position: center 56%; }
  .session-flow__timeline { padding-right: 0; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .session-flow-gateway {
    min-height: 142px;
    margin-top: -58px;
    padding: 0 16px 18px;
  }

  .session-flow-gateway__line {
    bottom: 45px;
    width: 92vw;
  }

  .session-flow-gateway__line::before,
  .session-flow-gateway__line::after { display: none; }

  .session-flow-gateway__btn {
    min-width: 0;
    width: 100%;
    max-width: 390px;
    grid-template-columns: 29px minmax(0, 1fr) 20px;
    gap: 11px;
    min-height: 54px;
    padding: 9px 14px 9px 12px;
  }

  .session-flow-gateway__sigil { width: 28px; height: 28px; }
  .session-flow-gateway__copy small { font-size: 7px; }
  .session-flow-gateway__label { font-size: 17px; }

  .session-flow {
    padding: 74px 0 92px;
  }

  .session-flow__wrap {
    width: calc(100% - 32px);
  }

  .session-flow__header {
    margin-bottom: 42px;
    padding-bottom: 25px;
  }

  .session-flow__kicker {
    font-size: 8px;
    letter-spacing: .17em;
  }

  .session-flow__title {
    max-width: 10ch;
    font-size: clamp(39px, 12vw, 50px);
  }

  .session-flow__intro {
    font-size: 15px;
    line-height: 1.64;
  }

  .session-flow__illustration {
    min-height: 218px;
    margin: -14px -16px 4px;
  }

  .session-flow__timeline {
    padding: 7px 0 6px 46px;
  }

  .session-flow__timeline::before { left: 14px; }

  .session-flow__item {
    margin-bottom: 22px;
    padding-bottom: 21px;
  }

  .session-flow__marker {
    left: -43px;
    width: 27px;
    height: 27px;
    box-shadow: 0 0 0 4px rgba(247, 242, 232, .9), 0 4px 11px rgba(71, 51, 24, .11);
  }

  .session-flow__marker::before { font-size: 7px; }

  .session-flow__content h3 {
    margin-bottom: 6px;
    font-size: clamp(25px, 8vw, 30px);
  }

  .session-flow__content h3 small {
    display: block;
    margin: 6px 0 0;
    font-size: 8px;
    letter-spacing: .07em;
  }

  .session-flow__content p {
    font-size: 14.8px;
    line-height: 1.61;
  }

  .session-flow__quote {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 50px;
    padding: 28px 23px 30px;
  }

  .session-flow__quote-title {
    padding-right: 0;
    font-size: 25px;
  }

  .session-flow__quote p:last-child {
    font-size: 14.5px;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .session-flow-shell,
  .session-flow-gateway__btn,
  .session-flow-gateway__btn::after,
  .session-flow-gateway__btn svg,
  .session-flow__header,
  .session-flow__layout,
  .session-flow__quote {
    transition: none !important;
  }

  .session-flow__header,
  .session-flow__layout,
  .session-flow__quote {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
