.speaker-page {
  --gray-300: #8f9399;
  background: var(--white);
}

.speaker-page .nav {
  position: fixed;
  top: 16px;
}

.speaker-page .nav > a {
  display: flex;
  align-items: center;
}

.speaker-hero {
  position: relative;
  height: 662px;
  overflow: visible;
  background: var(--black);
  color: var(--white);
}

.speaker-hero::after {
  content: none;
}

.speaker-values::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: 88px;
  pointer-events: none;
  background-image: url("./assets/transition-values.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: 0 -1px 0 var(--black);
  transform: scaleX(-1);
  transform-origin: center;
}

.speaker-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 142px;
}

.speaker-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  transition: color .18s ease;
}

.speaker-crumb img {
  width: 20px;
  height: 20px;
  display: block;
  transition: filter .18s ease;
}

.speaker-crumb:hover,
.speaker-crumb:focus-visible {
  color: var(--red);
}

.speaker-crumb:hover img,
.speaker-crumb:focus-visible img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(6418%) hue-rotate(5deg) brightness(76%) contrast(118%);
}

.speaker-hero__grid {
  display: grid;
  grid-template-columns: 376px 1fr;
  gap: 32px;
  align-items: center;
}

.speaker-portrait-wrap {
  position: relative;
  width: 376px;
  height: 384px;
}

.speaker-portrait {
  width: 376px;
  height: 384px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.curator-badge {
  position: absolute;
  left: 78px;
  bottom: -16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 0 16px rgba(194, 0, 0, .56);
}

.curator-badge img {
  width: 36.37px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.curator-badge span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.speaker-hero__copy {
  width: 784px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.overline-pill,
.start-pill,
.gift-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gray-600);
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
}

.speaker-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: 64px;
  line-height: 72px;
  font-weight: 400;
  letter-spacing: 0;
}

.speaker-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}

.speaker-summary p {
  margin: 0;
}

.speaker-socials {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.speaker-socials img {
  width: 32px;
  height: 32px;
  display: block;
}

.speaker-values {
  position: relative;
  z-index: 0;
  height: 596px;
  min-height: 596px;
  padding: 136px 0;
  background: var(--white);
}

.speaker-values__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.values-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-kicker,
.speaker-section-title p,
.speaker-media__head > p {
  margin: 0;
  color: var(--black);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0;
}

.section-kicker span,
.speaker-section-title p span,
.speaker-media__head > p span {
  color: var(--red);
  margin-right: 8px;
}

.values-grid-speaker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-left: 102px;
}

.values-grid-speaker article {
  min-height: 156px;
  padding: 24px 32px;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  background: rgba(244, 246, 248, .04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.values-grid-speaker h3 {
  margin: 0 0 8px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.values-grid-speaker p {
  margin: 0;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.motto-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 204px;
}

.motto-block blockquote {
  margin: 0;
  padding-left: 102px;
  color: var(--black);
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
}

.motto-block blockquote span {
  color: var(--red);
}

.dark-cut {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.dark-cut::before {
  content: "";
  position: absolute;
  left: 0;
  top: -88px;
  width: 100%;
  height: 88px;
  background: url("./assets/transition-white-black-down-speaker.svg") center / 100% 100% no-repeat;
  box-shadow: 0 1px 0 var(--black);
  transform-origin: center;
}

.speaker-teaching {
  min-height: 638px;
  padding: 100px 0;
}

.speaker-teaching__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.speaker-section-title {
  max-width: 784px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speaker-section-title h2,
.speaker-media__head h2 {
  margin: 0;
  color: var(--black);
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
}

.speaker-section-title.is-light p,
.speaker-section-row.is-light .speaker-section-title p,
.speaker-section-title.is-light h2,
.speaker-section-row.is-light .speaker-section-title h2 {
  color: var(--white);
}

.speaker-course-card {
  position: relative;
  min-height: 194px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 56px 32px;
  border-radius: 24px;
  background: var(--white);
  color: var(--black);
}

.speaker-course-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.speaker-course-card p {
  max-width: 918px;
  margin: 0 0 20px;
  color: var(--black);
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}

.speaker-course-card .outline-dark {
  align-self: start;
  min-width: 194px;
  min-height: 56px;
  padding: 16px 32px;
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}

.gift-pill {
  position: absolute;
  left: 40px;
  top: -20px;
  border: 1px solid var(--red);
  background: var(--red-dark);
  text-transform: uppercase;
}

.start-pill {
  min-height: 40px;
  background: var(--gray-600);
}

.speaker-projects {
  position: relative;
  min-height: 780px;
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.speaker-projects__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.speaker-section-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.speaker-arrows {
  display: flex;
  align-items: center;
  gap: 24px;
}

.speaker-arrows .icon {
  width: 72px;
  height: 56px;
  border-color: currentColor;
}

.speaker-arrows .icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.speaker-media .speaker-arrows .icon {
  width: 60px;
  height: 46px;
  padding: 12px 20px;
  color: var(--black);
  border-color: var(--black);
  background: rgba(244, 246, 248, .04);
}

.speaker-media .speaker-arrows .icon img {
  filter: brightness(0);
}

.project-viewport {
  width: 100%;
  overflow: visible;
}

.project-row {
  display: flex;
  gap: 32px;
  transition: transform .28s ease;
}

.project-row article {
  position: relative;
  flex: 0 0 376px;
  height: 440px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--gray-700);
  color: var(--white);
}

.project-row img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-row div {
  position: relative;
  z-index: 1;
  height: 144px;
  padding: 24px 24px 16px;
  background: linear-gradient(180deg, #0a0c10 0%, rgba(2, 3, 3, 0) 100%);
}

.project-row b,
.project-row span {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.project-row b {
  width: calc(100% - 40px);
  font-weight: 700;
}

.project-row span {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.project-row p {
  margin: 4px 0 0;
  color: var(--gray-200);
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.speaker-media {
  position: relative;
  min-height: 756px;
  padding: 136px 0 100px;
  background: var(--white);
}

.speaker-media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 88px;
  background: url("./assets/transition-dark-white.svg") center / 100% 100% no-repeat;
  transform: scaleX(-1);
  transform-origin: center;
}

.speaker-media__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.speaker-media__head {
  display: grid;
  grid-template-columns: 274px 1fr;
  gap: 32px;
  align-items: center;
}

.speaker-media__grid {
  display: grid;
  grid-template-columns: 274px 1fr;
  gap: 32px;
}

.speaker-media__grid aside {
  height: 424px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.speaker-media-viewport {
  min-width: 0;
  overflow: visible;
  clip-path: inset(0 -100vw 0 0);
}

.speaker-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.speaker-filters button {
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: transparent;
  color: var(--gray-400);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.speaker-filters .is-active {
  border-color: var(--black);
  color: var(--black);
}

.speaker-media-row {
  display: flex;
  gap: 16px;
  overflow: visible;
  width: max-content;
  transition: transform .28s ease;
}

.speaker-media-row article,
.speaker-media-row a {
  position: relative;
  flex: 0 0 274px;
  height: 424px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
}

.speaker-media-row img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-media-row div {
  position: absolute;
  inset: auto 0 0;
  padding: 16px 24px 24px;
  background: linear-gradient(180deg, rgba(2, 3, 3, 0) 0%, var(--black) 93.75%);
}

.speaker-media-row b {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.speaker-media-row p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.speaker-media-mobile-actions {
  display: none;
}

.speaker-more {
  padding-top: 100px;
}

.speaker-community {
  min-height: 532px;
  padding: 100px 0;
}

.speaker-community::before {
  display: none;
}

.speaker-community .two-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.speaker-community .section-title {
  width: 580px;
  max-width: 580px;
  margin: 0;
}

.speaker-community .checks {
  width: 682px;
  align-self: flex-end;
}

.speaker-community .community-pill {
  height: 88px;
  margin-top: 24px;
}

.speaker-more .section-title {
  margin-bottom: 40px;
}

.speaker-more aside em {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gray-600);
  color: var(--white);
  font-size: 14px;
  line-height: 22px;
  font-style: normal;
}

.speaker-more .speaker-cta {
  margin-top: 40px;
}

.speaker-page .faq {
  height: 756px;
  min-height: 756px;
  padding: 136px 0;
}

.speaker-page .library-contact-wrap {
  position: relative;
  overflow: visible;
  background: var(--white);
}

.speaker-page .library-contact-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -88px;
  z-index: 2;
  width: max(1440px, 100vw);
  height: 89px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
  pointer-events: none;
}

.speaker-page .contact {
  min-height: 920px;
  padding: 100px 0;
  background: var(--black);
  clip-path: none;
}

.speaker-page .contact::before {
  display: none;
}

.speaker-page .contact-left {
  gap: 24px;
}

.speaker-page .contact .messengers div {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  .speaker-course-card .outline-dark:hover,
  .speaker-course-card .outline-dark:focus-visible,
  .speaker-arrows .icon:hover,
  .speaker-arrows .icon:focus-visible {
    border-color: var(--gray-300);
  }
}

@media (max-width: 900px) {
  .speaker-page .nav {
    top: 8px;
  }

  .speaker-hero {
    height: 897.87px;
  }

  .speaker-hero__inner {
    padding-top: 94px;
  }

  .speaker-crumb {
    margin-bottom: 32px;
  }

  .speaker-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .speaker-portrait-wrap,
  .speaker-portrait {
    width: 370px;
    height: 377.87px;
  }

  .curator-badge {
    left: 75px;
    bottom: -20px;
  }

  .speaker-hero__copy {
    width: 370px;
    min-height: 282px;
    gap: 16px;
  }

  .speaker-hero h1 {
    order: -2;
    font-size: 32px;
    line-height: 40px;
  }

  .overline-pill {
    order: -1;
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 18px;
  }

  .speaker-summary {
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }

  .speaker-socials {
    align-self: flex-end;
    gap: 20px;
    margin-top: 0;
  }

  .speaker-values {
    height: 798px;
    min-height: 798px;
    padding: 72px 0;
  }

  .speaker-values::before {
    height: 48px;
    background-image: url("./assets/transition-community-figma.svg");
    transform: scaleX(-1);
  }

  .speaker-values__inner {
    gap: 32px;
  }

  .section-kicker,
  .speaker-section-title p,
  .speaker-media__head > p {
    font-size: 16px;
    line-height: 24px;
  }

  .values-block {
    gap: 24px;
  }

  .values-grid-speaker {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
  }

  .values-grid-speaker article {
    width: 288px;
    height: 134px;
    min-height: 134px;
    padding: 20px;
    border-radius: 24px;
  }

  .values-grid-speaker article:nth-child(odd) {
    margin-left: 82px;
  }

  .values-grid-speaker h3 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
  }

  .values-grid-speaker p {
    font-size: 14px;
    line-height: 22px;
  }

  .motto-block {
    gap: 24px;
    padding-left: 0;
  }

  .motto-block blockquote {
    width: 100%;
    min-height: 96px;
    padding-left: 82px;
    box-sizing: border-box;
    font-size: 24px;
    line-height: 32px;
  }

  .speaker-values .reveal-block {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .dark-cut::before {
    top: -48px;
    height: 48px;
    background-image: url("./assets/transition-media-values-figma.svg");
    transform: none;
  }

  .speaker-teaching {
    min-height: 556px;
    padding: 56px 0;
  }

  .speaker-teaching__inner {
    gap: 48px;
  }

  .speaker-section-title {
    gap: 12px;
  }

  .speaker-section-title h2,
  .speaker-media__head h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .speaker-course-card {
    min-height: 328px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 20px 24px;
  }

  .speaker-course-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .speaker-course-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .speaker-course-card .outline-dark {
    width: 100%;
    min-height: 46px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 22px;
  }

  .gift-pill {
    left: 16px;
    top: -17px;
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 18px;
  }

  .start-pill {
    min-height: 38px;
    font-size: 14px;
    line-height: 22px;
  }

  .speaker-projects {
    min-height: 674px;
    padding: 48px 0;
  }

  .speaker-projects__inner {
    gap: 32px;
  }

  .speaker-projects .speaker-section-row {
    display: contents;
  }

  .speaker-projects .project-viewport {
    order: 2;
  }

  .speaker-projects .speaker-section-row > .speaker-arrows {
    order: 3;
    align-self: flex-end;
  }

  .speaker-projects .speaker-arrows,
  .speaker-media .speaker-arrows {
    gap: 16px;
  }

  .project-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw + 16px);
    overflow: hidden;
  }

  .project-row {
    gap: 14px;
  }

  .project-row article {
    flex-basis: 272px;
    height: 400px;
  }

  .project-row div {
    height: 120px;
    padding: 16px 16px 12px;
  }

  .speaker-arrows .icon {
    width: 60px;
    height: 46px;
    padding: 12px 20px;
  }

  .speaker-arrows .icon img {
    width: 20px;
    height: 20px;
  }

  .speaker-media {
    min-height: 624px;
    padding: 72px 0 48px;
    overflow: hidden;
  }

  .speaker-media::before {
    top: 0;
    height: 48px;
    background-image: url("./assets/transition-projects-figma.svg");
    transform: none;
  }

  .speaker-media__inner {
    gap: 32px;
  }

  .speaker-media__head,
  .speaker-media__grid {
    grid-template-columns: 1fr;
  }

  .speaker-media__head {
    gap: 12px;
  }

  .speaker-media__grid {
    gap: 16px;
  }

  .speaker-media__grid aside {
    height: auto;
    gap: 16px;
  }

  .speaker-media-viewport {
    width: 100%;
    overflow: visible;
    clip-path: inset(0 -100vw 0 0);
  }

  .speaker-filters {
    gap: 12px;
  }

  .speaker-media-row {
    width: max-content;
    gap: 8px;
    overflow: visible;
  }

  .speaker-media-row article,
  .speaker-media-row a {
    flex-basis: 181px;
    height: 280px;
  }

  .speaker-media-row div {
    padding: 12px;
  }

  .speaker-media-row b {
    font-size: 14px;
    line-height: 22px;
  }

  .speaker-media-row p {
    font-size: 12px;
    line-height: 16px;
  }

  .speaker-media__grid aside > .speaker-arrows {
    display: none;
  }

  .speaker-media-mobile-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .speaker-media-mobile-actions .outline-dark {
    width: 175px;
    min-height: 46px;
    padding: 12px 24px;
    border-color: var(--black);
    border-radius: 32px;
    background: rgba(244, 246, 248, .04);
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    line-height: 22px;
  }

  .speaker-media-mobile-actions .media-arrows {
    flex: 0 0 136px;
  }

  .speaker-more {
    padding-top: 48px;
  }

  .speaker-more .section-title {
    margin-bottom: 32px;
  }

  .speaker-more .speaker-layout {
    gap: 24px;
  }

  .speaker-more aside {
    min-height: auto;
  }

  .speaker-more aside em {
    order: 0;
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 18px;
  }

  .speaker-more aside h3 {
    margin: 16px 0 8px;
    font-size: 24px;
    line-height: 32px;
  }

  .speaker-more aside h4 {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .speaker-more aside p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .speaker-more .socials {
    align-self: flex-end;
    gap: 20px;
    margin-bottom: 24px;
  }

  .speaker-more aside .outline-dark {
    width: 100%;
    min-height: 46px;
    padding: 12px 24px;
  }

  .speaker-bottom {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    margin: 24px 0 32px;
  }

  .thumbs {
    width: 100%;
  }

  .thumbs img {
    width: 178px;
    height: 108.98px;
  }

  .arrows button {
    width: 60px;
    height: 46px;
  }

  .speaker-cta {
    height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
    border-radius: 32px;
  }

  .speaker-cta .btn {
    width: 100%;
  }

  .speaker-more .speaker-cta small {
    font-size: 16px;
    line-height: 24px;
  }

  .speaker-page .faq {
    height: 614px;
    min-height: 614px;
    padding-top: 48px;
  }

  .speaker-page .faq .section-title {
    margin: 0;
  }

  .speaker-community {
    min-height: 0;
    padding: 48px 0;
  }

  .speaker-community .two-col {
    gap: 16px;
  }

  .speaker-community .section-title,
  .speaker-community .checks {
    width: 100%;
    max-width: 370px;
    align-self: stretch;
  }

  .speaker-community .section-title {
    margin: 0;
  }

  .speaker-community .community-pill {
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 40px;
  }

  .speaker-community .community-pill .btn {
    order: 2;
    width: 100%;
  }

  .speaker-community .community-pill .avatars {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
  }

  .speaker-community .community-pill span {
    margin-left: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .speaker-page .contact {
    min-height: 1022px;
    padding: 48px 0;
    background: var(--black);
    overflow: visible;
  }

  .speaker-page .library-contact-wrap {
    background: var(--black);
  }

  .speaker-page .library-contact-wrap::before {
    top: -48px;
    width: max(402px, 100vw);
    height: 49px;
  }

  .speaker-page .contact .section-title {
    margin: 0;
  }

  .speaker-page .contact-reminder .btn {
    margin-top: 0;
  }

  .speaker-page .footer::before {
    top: -1px;
    height: 50px;
    background-image: url("./assets/transition-footer.svg");
    background-size: 100% 50px;
    transform: none;
  }

  .speaker-page .footer .reveal-block {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .speaker-page .footer-nav p {
    margin: 0;
  }
}
