:root {
  --bg: #07101f;
  --panel: rgba(14, 24, 48, 0.88);
  --panel-solid: #101a32;
  --text: #f4f7fb;
  --muted: #a7b5cf;
  --line: rgba(173, 195, 230, 0.18);
  --identity: #65d9ef;
  --identity-rgb: 101, 217, 239;
  --danger: #fb7185;
  --danger-rgb: 251, 113, 133;
  --civic: #a78bfa;
  --civic-rgb: 167, 139, 250;
  --amber: #fbbf24;
  --safe-inline: clamp(1.2rem, 4.5vw, 5.5rem);
  --safe-top: clamp(5.5rem, 9vh, 7.2rem);
  --nav-bottom: max(1rem, env(safe-area-inset-bottom));
  --nav-height: 3.75rem;
  --footer-bottom: calc(var(--nav-bottom) + var(--nav-height) + 1.15rem);
  --safe-bottom: clamp(8.2rem, 12.5vh, 9rem);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
html { background: var(--bg); }
body {
  margin: 0;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(77, 117, 190, 0.18), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(109, 73, 175, 0.16), transparent 35%),
    linear-gradient(135deg, #070d19 0%, #0a1326 52%, #080d1b 100%);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid rgba(110, 231, 249, 0.8); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.app-shell { width: 100%; height: 100%; position: relative; isolation: isolate; }
.app-shell::before,
.app-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}
.app-shell::before { width: 42vw; height: 42vw; left: -17vw; top: -18vw; background: var(--identity); }
.app-shell::after { width: 38vw; height: 38vw; right: -16vw; bottom: -20vw; background: var(--civic); }

.deck-header {
  position: fixed;
  z-index: 50;
  top: max(1rem, env(safe-area-inset-top));
  left: var(--safe-inline);
  right: var(--safe-inline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
}
.deck-brand { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.deck-brand strong { display: block; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.deck-brand small { display: block; max-width: 32ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: .72rem; margin-top: .12rem; }
.brand-mark { display: flex; align-items: center; gap: 4px; }
.brand-mark span { display: block; width: 6px; border-radius: 999px; }
.brand-mark span:nth-child(1) { height: 15px; background: var(--identity); }
.brand-mark span:nth-child(2) { height: 23px; background: var(--danger); }
.brand-mark span:nth-child(3) { height: 31px; background: var(--civic); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(7, 14, 29, .68);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  padding: .55rem .82rem;
  font-size: .78rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn-ghost:hover { color: #fff; background: rgba(21, 35, 68, .88); border-color: rgba(110,231,249,.5); transform: translateY(-1px); }

#deck { position: relative; width: 100%; height: 100%; }
.slide {
  --accent: var(--identity);
  --accent-rgb: var(--identity-rgb);
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(2.5%, 0, 0) scale(.99);
  transition: opacity .36s ease, transform .42s cubic-bezier(.22,.76,.24,1), visibility .36s;
  overflow: hidden;
}
.slide.theme-danger { --accent: var(--danger); --accent-rgb: var(--danger-rgb); }
.slide.theme-civic { --accent: var(--civic); --accent-rgb: var(--civic-rgb); }
.slide.active { opacity: 1; visibility: visible; transform: none; z-index: 2; }
.slide.leaving-left { transform: translate3d(-2.5%,0,0) scale(.99); }
.slide::before {
  content: "";
  position: absolute;
  inset: 8vh 2.4vw 10vh;
  z-index: 0;
  border: 1px solid rgba(var(--accent-rgb), .16);
  border-radius: 42px;
  background:
    linear-gradient(130deg, rgba(var(--accent-rgb), .035), transparent 38%),
    rgba(7, 14, 29, .18);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  pointer-events: none;
}
.slide::after {
  content: "";
  position: absolute;
  width: 34vw;
  height: 34vw;
  max-width: 520px;
  max-height: 520px;
  right: -11vw;
  top: 16vh;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(120px);
  opacity: .09;
  pointer-events: none;
}

.slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: var(--safe-top) var(--safe-inline) var(--safe-bottom);
  display: flex;
  align-items: center;
}
.slide .row { width: 100%; margin: 0; }
.content-stack { max-width: 860px; }
.slide-index {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.slide-index::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.kicker { margin: 0 0 .5rem; color: var(--muted); font-size: clamp(.92rem, 1.15vw, 1.12rem); }
.slide-title {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 780;
  text-wrap: balance;
}
.slide-title.title-wide { max-width: 17ch; }
.slide-subtitle { max-width: 52ch; margin: 1.35rem 0 0; color: #dce6f7; font-size: clamp(1.1rem, 1.55vw, 1.55rem); line-height: 1.45; }
.key-points { list-style: none; margin: 1.45rem 0 0; padding: 0; display: grid; gap: .72rem; max-width: 760px; }
.key-points li { position: relative; padding-left: 1.75rem; color: #e1e9f6; font-size: clamp(1rem, 1.35vw, 1.34rem); line-height: 1.34; }
.key-points li::before { content: ""; position: absolute; left: .1rem; top: .56em; width: .62rem; height: .62rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px rgba(var(--accent-rgb), .45); }
.key-quote { max-width: 780px; margin: 1.4rem 0 0; padding: 1rem 1.1rem; border-left: 3px solid var(--accent); border-radius: 0 18px 18px 0; color: #f3f5ff; background: rgba(var(--accent-rgb), .085); font-size: clamp(.95rem, 1.08vw, 1.14rem); line-height: 1.43; }
.source-chip { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.25rem; padding: .38rem .68rem; border: 1px solid rgba(var(--accent-rgb), .28); border-radius: 999px; color: #cdd8e9; background: rgba(var(--accent-rgb), .07); font-size: .72rem; letter-spacing: .03em; }

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 710px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(12, 20, 40, .72);
  box-shadow: var(--shadow);
}
.visual-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; box-shadow: inset 0 1px rgba(255,255,255,.08); pointer-events: none; }
.visual-frame img { display: block; width: 100%; max-height: 66vh; object-fit: contain; background: #0b1430; }
.visual-frame.image-corpus img { max-height: 61vh; object-fit: contain; padding: 1rem; background: #eef1f5; }
.visual-caption { position: relative; z-index: 2; margin: 0; padding: .8rem 1rem .9rem; color: #b8c5d9; background: rgba(8, 16, 32, .96); font-size: .68rem; line-height: 1.45; text-align: center; }
.visual-label { position: absolute; z-index: 3; top: 1rem; left: 1rem; padding: .42rem .72rem; border-radius: 999px; background: rgba(7,14,29,.78); border: 1px solid rgba(255,255,255,.13); color: #eef4ff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }

.slide[data-slide-id="problematique"] .visual-frame { padding: .55rem; background: rgba(10, 18, 37, .94); }
.slide[data-slide-id="problematique"] .visual-frame img {
  box-sizing: border-box;
  padding: .3rem;
  background: transparent;
}
.slide[data-slide-id="amplification"] .visual-frame img {
  box-sizing: border-box;
  padding: .45rem .45rem .8rem;
  background: #120d22;
}

.cover-layout .slide-inner { align-items: center; }
.cover-layout .slide-title { max-width: 12ch; font-size: clamp(3rem, 6.2vw, 7rem); }
.cover-layout .slide-subtitle { max-width: 48ch; }
.cover-layout .visual-frame { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }
.cover-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.45rem; }
.cover-meta span { padding: .42rem .72rem; border: 1px solid var(--line); border-radius: 999px; color: #dce6f7; background: rgba(255,255,255,.03); font-size: .78rem; }

/* Page 3: allocate more width to the themed identity graphic. */
.slide[data-slide-id="identite"] .content-stack { max-width: 760px; }
.slide[data-slide-id="identite"] .visual-frame { max-width: 800px; }
.slide[data-slide-id="identite"] .visual-frame img { max-height: 72vh; background: #0b1430; }

/* Page 4: text and comic share the upper row; the wide extimity diagram
   then spans the complete card width below them. */
.duo-slide-inner {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: center;
  gap: 1rem;
}
.duo-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.6rem);
  min-height: 0;
}
.duo-copy { min-width: 0; }
.duo-copy .slide-title { font-size: clamp(2.2rem, 4.2vw, 4.6rem); max-width: 16ch; }
.duo-copy .key-points { margin-top: 1rem; gap: .5rem; }
.duo-copy .key-points li { font-size: clamp(.95rem, 1.1vw, 1.12rem); }
.duo-copy .key-quote { margin-top: .9rem; padding: .72rem .9rem; font-size: clamp(.85rem, .95vw, 1rem); }
.duo-copy .source-chip { margin-top: .8rem; }
.duo-comic {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
}
.duo-comic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 35vh !important;
  object-fit: contain !important;
  padding: .55rem !important;
  background: #e9edf2 !important;
}
.duo-extimity {
  max-width: none;
  margin: 0;
  min-height: 0;
}
.duo-extimity img {
  width: 100%;
  height: auto;
  max-height: 30vh;
  object-fit: contain;
  padding: .55rem 1rem .8rem;
  background: #0b1430;
}

/* Page 9: ensure the public-sphere diagram stays completely inside its frame. */
.slide[data-slide-id="espace-public"] .visual-frame img { max-height: 68vh; }

/* Final page. */
.thanks-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}
.thanks-layout .slide-title { max-width: 13ch; font-size: clamp(3rem, 5.8vw, 6.3rem); }
.thanks-visual { max-width: 650px; }
.presenter-panel {
  margin-top: 1.6rem;
  padding: 1.05rem 1.2rem;
  max-width: 720px;
  border: 1px solid rgba(var(--accent-rgb), .24);
  border-radius: 22px;
  background: rgba(var(--accent-rgb), .07);
}
.presenter-label {
  display: block;
  margin-bottom: .65rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.presenter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1.2rem;
}
.presenter-list li {
  color: #e7eef9;
  font-size: clamp(.86rem, 1vw, 1.02rem);
  line-height: 1.35;
}

.slide-footer {
  position: absolute;
  z-index: 5;
  left: var(--safe-inline);
  right: var(--safe-inline);
  bottom: var(--footer-bottom);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}
.footer-source { color: #98a8c1; font-size: .72rem; letter-spacing: .03em; }
.footer-time { color: var(--accent); font-size: .73rem; font-weight: 800; letter-spacing: .08em; }

.nav-dock {
  position: fixed;
  z-index: 58;
  right: max(1.35rem, env(safe-area-inset-right));
  bottom: var(--nav-bottom);
  display: flex;
  align-items: center;
  gap: .35rem;
  height: var(--nav-height);
  padding: .35rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(5, 12, 25, .9);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.nav-arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.07);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .16s ease, background .16s ease, opacity .16s ease;
}
.nav-arrow:hover:not(:disabled) { background: rgba(255,255,255,.15); transform: translateY(-1px); }
.nav-arrow:disabled { opacity: .25; cursor: not-allowed; }
.nav-counter {
  min-width: 150px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .62rem;
  padding: 0 .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #f0f5fc;
  white-space: nowrap;
}
.speaker-first {
  color: var(--current-accent, var(--identity));
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.page-count {
  color: #d5deeb;
  font-size: .75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.page-sep { padding: 0 .18rem; opacity: .48; }

.deck-modal { border: 1px solid var(--line); border-radius: 28px; background: #0c1529; box-shadow: var(--shadow); }
.deck-modal .modal-header { padding: 1.4rem 1.5rem .4rem; }
.deck-modal .modal-body { padding: 1.25rem 1.5rem 1.6rem; }
.modal-kicker { color: var(--identity); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.modal-title { margin-top: .15rem; font-size: 1.6rem; }
.overview-card { height: 100%; padding: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; background: #111b33; color: #fff; text-align: left; transition: transform .18s ease, border-color .18s ease; }
.overview-card:hover { transform: translateY(-3px); border-color: rgba(110,231,249,.5); }
.overview-thumb { aspect-ratio: 16/9; overflow: hidden; background: #07101f; }
.overview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.overview-copy { padding: .85rem; }
.overview-copy small { color: #8293ae; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.overview-copy strong { display: block; margin-top: .32rem; color: #f2f6fb; font-size: .82rem; line-height: 1.25; }
.bibliography { padding-left: 1.25rem; display: grid; gap: .75rem; color: #dce6f4; font-size: .92rem; line-height: 1.5; }
.source-note { margin: 1.25rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); color: #97a8c2; font-size: .78rem; line-height: 1.5; }
.deck-toast { border: 1px solid var(--line); background: rgba(7,14,29,.93); color: #f1f5fb; box-shadow: var(--shadow); }
.noscript-message { position: fixed; z-index: 9999; inset: 1rem; display: grid; place-items: center; border-radius: 20px; background: #111827; color: white; }

body.embed-mode .deck-header,
body.embed-mode .nav-dock { display: none !important; }
body.embed-mode .slide::before { inset: 1.2rem; }
body.embed-mode .slide-inner { padding: 3rem; }
body.embed-mode .slide-footer { bottom: 1.5rem; left: 3rem; right: 3rem; }


@media (min-width: 992px) {
  .slide[data-slide-id="identite"] .row > .col-lg-6:last-child { flex: 0 0 auto; width: 46%; }
  .slide[data-slide-id="identite"] .row > .col-lg-6:first-child { flex: 0 0 auto; width: 54%; }
}

@media (max-width: 1180px) {
  .slide-title { font-size: clamp(2.35rem, 4.8vw, 4.8rem); }
  .visual-frame img { max-height: 58vh; }
  .duo-top-grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 1.3rem; }
  .duo-extimity img { max-height: 27vh; }
}

@media (max-width: 900px) {
  :root { --safe-inline: clamp(1rem, 4vw, 2.2rem); --safe-top: 5.4rem; --safe-bottom: 9rem; }
  .deck-brand small { display: none; }
  .slide-inner { overflow: auto; align-items: flex-start; padding-top: 5.7rem; }
  .slide .row { align-content: center; min-height: calc(100vh - 12rem); }
  .visual-frame { max-width: 520px; margin: 1.4rem auto 0; }
  .visual-frame img { max-height: 36vh; }
  .visual-frame.image-corpus img { max-height: 34vh; }
  .duo-slide-inner { display: block; overflow: auto; }
  .duo-top-grid { grid-template-columns: 1fr; }
  .duo-comic { margin-top: 1rem; }
  .duo-comic img { max-height: 34vh !important; }
  .duo-extimity { margin-top: 1rem; }
  .duo-extimity img { max-height: 28vh; }
  .thanks-grid { grid-template-columns: 1fr; }
  .thanks-visual { display: none; }
  .cover-layout .visual-frame { transform: none; }
  .slide-title { max-width: 18ch; font-size: clamp(2.2rem, 8.6vw, 4.2rem); }
  .cover-layout .slide-title { font-size: clamp(2.5rem, 9.4vw, 4.6rem); }
  .key-points li { font-size: clamp(.94rem, 3.4vw, 1.15rem); }
  .slide-footer { bottom: calc(var(--nav-bottom) + var(--nav-height) + .8rem); }
  .nav-dock { right: 1rem; }
}

@media (max-width: 620px) {
  .deck-header { left: 1rem; right: 1rem; }
  .header-actions .btn-ghost { width: 38px; height: 38px; justify-content: center; padding: 0; }
  .deck-brand strong { font-size: .65rem; }
  .slide::before { inset: 4.9rem .6rem 6rem; border-radius: 26px; }
  .slide-inner { padding: 5.4rem 1.25rem 9.3rem; }
  .slide-index { margin-bottom: .7rem; font-size: .64rem; }
  .kicker { font-size: .83rem; }
  .slide-title { font-size: clamp(2rem, 10.4vw, 3.25rem); }
  .slide-subtitle { font-size: 1rem; }
  .key-points { gap: .52rem; margin-top: 1rem; }
  .key-quote { margin-top: 1rem; padding: .8rem .9rem; font-size: .86rem; }
  .source-chip { margin-top: .9rem; }
  .visual-frame { border-radius: 22px; }
  .visual-frame img { max-height: 29vh; }
  .slide-footer { left: 1.25rem; right: 1.25rem; bottom: calc(var(--nav-bottom) + var(--nav-height) + .7rem); }
  .footer-source { max-width: 70%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-dock { right: .8rem; bottom: .8rem; }
  .nav-counter { min-width: 125px; gap: .45rem; padding: 0 .65rem; }
  .speaker-first, .page-count { font-size: .66rem; }
  .nav-arrow { width: 40px; height: 40px; flex-basis: 40px; }
  .presenter-list { grid-template-columns: 1fr; }
}

@media (max-height: 720px) and (min-width: 901px) {
  :root { --safe-top: 4.6rem; --safe-bottom: 8rem; }
  .duo-slide-inner { gap: .55rem; }
  .duo-copy .slide-index { margin-bottom: .55rem; }
  .duo-copy .kicker { font-size: .82rem; }
  .duo-copy .slide-title { font-size: clamp(2rem, 3.45vw, 3.35rem); }
  .duo-copy .key-points { margin-top: .65rem; gap: .34rem; }
  .duo-copy .key-points li { font-size: .86rem; line-height: 1.2; }
  .duo-copy .key-quote { margin-top: .55rem; padding: .55rem .72rem; font-size: .76rem; line-height: 1.25; }
  .duo-copy .source-chip { margin-top: .5rem; }
  .duo-comic img { max-height: 24vh !important; }
  .duo-extimity { height: 145px; }
  .duo-extimity img { height: 100%; max-height: none; padding: .3rem .75rem .4rem; }
  .slide-title { font-size: clamp(2.25rem, 4.4vw, 4.45rem); }
  .key-points { margin-top: 1rem; gap: .52rem; }
  .key-points li { font-size: clamp(.95rem, 1.16vw, 1.16rem); }
  .key-quote { margin-top: 1rem; padding: .78rem 1rem; }
  .visual-frame img { max-height: 49vh; }
  .slide-footer { bottom: var(--footer-bottom); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media print {
  html, body { overflow: visible; background: #fff; }
  .deck-header, .nav-dock, .modal, .toast-container { display: none !important; }
  #deck { height: auto; }
  .slide { position: relative; opacity: 1; visibility: visible; transform: none; width: 100vw; height: 100vh; page-break-after: always; background: #081021; }
  .slide::before { inset: 2rem; }
  .slide-inner { padding: 4rem; }
}

/* Final cleanup: the source and duration are already shown inside each slide.
   Hide the duplicate footer so it cannot overlap quotations or source chips. */
.slide-footer {
  display: none !important;
}

/* Conclusion slide only: scale and tighten the left column so the title,
   bullets, opening question and source chip remain fully visible. */
.slide[data-slide-id="conclusion"] .content-stack {
  max-width: 760px;
}
.slide[data-slide-id="conclusion"] .slide-index {
  margin-bottom: .7rem;
}
.slide[data-slide-id="conclusion"] .kicker {
  margin-bottom: .38rem;
}
.slide[data-slide-id="conclusion"] .slide-title {
  max-width: 13.5ch;
  font-size: clamp(2.65rem, 4vw, 4.75rem);
  line-height: .96;
}
.slide[data-slide-id="conclusion"] .key-points {
  margin-top: 1rem;
  gap: .48rem;
}
.slide[data-slide-id="conclusion"] .key-points li {
  font-size: clamp(.95rem, 1.14vw, 1.17rem);
  line-height: 1.28;
}
.slide[data-slide-id="conclusion"] .key-quote {
  margin-top: .82rem;
  padding: .72rem .92rem;
  font-size: clamp(.86rem, .94vw, 1rem);
  line-height: 1.32;
}
.slide[data-slide-id="conclusion"] .source-chip {
  margin-top: .72rem;
}

@media (max-height: 760px) and (min-width: 901px) {
  .slide[data-slide-id="conclusion"] .slide-title {
    font-size: clamp(2.35rem, 3.55vw, 4.15rem);
  }
  .slide[data-slide-id="conclusion"] .key-points {
    margin-top: .72rem;
    gap: .34rem;
  }
  .slide[data-slide-id="conclusion"] .key-points li {
    font-size: clamp(.88rem, 1vw, 1.02rem);
    line-height: 1.2;
  }
  .slide[data-slide-id="conclusion"] .key-quote {
    margin-top: .58rem;
    padding: .55rem .72rem;
    font-size: .82rem;
    line-height: 1.22;
  }
  .slide[data-slide-id="conclusion"] .source-chip {
    margin-top: .5rem;
  }
}
