/* Conference hero floating CTA buttons only. */

@keyframes conf-float-top-to-bottom {
  from {
    translate: 0 var(--conf-hero-cta-float-top, 0);
  }

  to {
    translate: 0 var(--conf-hero-cta-float-bottom, 440px);
  }
}

@keyframes conf-float-bottom-to-top {
  from {
    translate: 0 var(--conf-hero-cta-float-bottom, 560px);
  }

  to {
    translate: 0 var(--conf-hero-cta-float-top, 0);
  }
}

.conference-page .conf-hero-banner {
  isolation: isolate;
}

.conference-page .conf-hero-card-stage {
  position: relative !important;
}

.conference-page .conf-hero-floating-cta {
  --conf-hero-cta-float-top: 0;
  --conf-hero-cta-float-bottom: 440px;
  position: absolute !important;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.78rem !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: min(86vw, 340px) !important;
  min-height: 66px !important;
  padding: 0.72rem 1.42rem 0.72rem 0.86rem !important;
  border: 1px solid rgba(226, 235, 246, 0.92) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #172033 !important;
  box-shadow: 0 18px 42px rgba(4, 15, 35, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
  cursor: pointer !important;
  transform: none !important;
  animation: none !important;
  will-change: translate;
}

.conference-page .conf-hero-floating-cta-register {
  --conf-hero-cta-float-top: 0;
  --conf-hero-cta-float-bottom: clamp(280px, 44vh, 440px);
  left: clamp(1rem, 3vw, 3.1rem) !important;
  top: clamp(5.5rem, 20%, 9.75rem) !important;
  right: auto !important;
  bottom: auto !important;
  animation: conf-float-top-to-bottom 6.4s ease-in-out infinite alternate !important;
}

.conference-page .conf-hero-floating-cta-abstract {
  --conf-hero-cta-float-top: 0;
  --conf-hero-cta-float-bottom: clamp(360px, 58vh, 560px);
  right: clamp(0.6rem, 1.8vw, 1.5rem) !important;
  left: auto !important;
  top: clamp(-2.7rem, -3vw, -1.3rem) !important;
  bottom: auto !important;
  animation: conf-float-bottom-to-top 6.4s ease-in-out infinite alternate !important;
}

.conference-page .conf-hero-floating-cta.conf-hero-floating-cta-register {
  animation: conf-float-top-to-bottom 6.4s ease-in-out infinite alternate !important;
}

.conference-page .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
  animation: conf-float-bottom-to-top 6.4s ease-in-out infinite alternate !important;
}

.conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-register {
  animation-name: conf-float-top-to-bottom !important;
  animation-duration: 6.4s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-direction: alternate !important;
  animation-delay: 0s !important;
}

.conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
  animation-name: conf-float-bottom-to-top !important;
  animation-duration: 6.4s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  animation-direction: alternate !important;
  animation-delay: 0s !important;
}

.conference-page .conf-hero-floating-cta:hover {
  border-color: rgba(99, 166, 238, 0.62) !important;
  background: #ffffff !important;
  box-shadow: 0 22px 48px rgba(4, 15, 35, 0.34), inset 0 1px 0 #ffffff !important;
  animation-play-state: paused !important;
  transform: translateY(-3px) !important;
}

.conference-page .conf-hero-floating-icon {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(237, 246, 255, 0.96) !important;
  color: #0f6bd6 !important;
  box-shadow: inset 0 0 0 1px rgba(44, 127, 220, 0.12) !important;
}

.conference-page .conf-hero-floating-icon svg {
  width: 25px !important;
  height: 25px !important;
  fill: #0f6bd6 !important;
}

.conference-page .conf-hero-floating-copy {
  gap: 0.14rem !important;
  min-width: 0 !important;
}

.conference-page .conf-hero-floating-copy strong {
  color: #172033 !important;
  font-size: clamp(1rem, 1.35vw, 1.22rem) !important;
  font-weight: 850 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.conference-page .conf-hero-floating-copy small {
  color: #516072 !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

@media (max-width: 1180px) {
  .conference-page .conf-hero-floating-cta-register {
    --conf-hero-cta-float-bottom: clamp(220px, 36vh, 340px);
    left: clamp(0.9rem, 2.4vw, 1.6rem) !important;
    top: clamp(5rem, 18%, 8.5rem) !important;
  }

  .conference-page .conf-hero-floating-cta-abstract {
    --conf-hero-cta-float-bottom: clamp(280px, 48vh, 440px);
    right: clamp(0.8rem, 2.4vw, 1.6rem) !important;
    top: -1.7rem !important;
  }
}

@media (max-width: 980px) {
  .conference-page .conf-hero-card-stage {
    position: static !important;
  }

  .conference-page .conf-hero-floating-cta-register,
  .conference-page .conf-hero-floating-cta-abstract {
    position: absolute !important;
    right: auto !important;
    bottom: auto !important;
    left: clamp(0.75rem, 3vw, 1.25rem) !important;
    margin: 0 !important;
    transform: none !important;
  }

  .conference-page .conf-hero-floating-cta-register {
    --conf-hero-cta-float-bottom: clamp(110px, 18vh, 170px);
    top: 0.85rem !important;
  }

  .conference-page .conf-hero-floating-cta-abstract {
    --conf-hero-cta-float-bottom: clamp(130px, 22vh, 190px);
    top: 5rem !important;
  }

  .conference-page .conf-hero-floating-cta.conf-hero-floating-cta-register,
  .conference-page .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
    animation-duration: 5.2s !important;
  }

  .conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-register,
  .conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
    animation-duration: 5.2s !important;
  }

  .conference-page .conf-hero-floating-cta:hover {
    transform: translateY(-3px) !important;
  }
}

@media (max-width: 640px) {
  .conference-page .conf-hero-floating-cta {
    --conf-hero-cta-float-top: -9px;
    --conf-hero-cta-float-bottom: 9px;
    position: fixed !important;
    z-index: 9998 !important;
    top: calc(100svh - 8.25rem) !important;
    bottom: auto !important;
    max-width: min(10rem, calc(50vw - 2.2rem)) !important;
    width: min(10rem, calc(50vw - 2.2rem)) !important;
    min-height: 58px !important;
    padding: 0.52rem 0.62rem !important;
    gap: 0.5rem !important;
    animation-duration: 3.4s !important;
  }

  .conference-page .conf-hero-floating-cta.conf-hero-floating-cta-register,
  .conference-page .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
    animation-duration: 3.4s !important;
  }

  .conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-register,
  .conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
    animation-duration: 3.4s !important;
  }

  .conference-page .conf-hero-floating-cta-register {
    left: 0.55rem !important;
    right: auto !important;
  }

  .conference-page .conf-hero-floating-cta-abstract {
    left: calc(50vw - 2.5rem) !important;
    right: auto !important;
  }

  .conference-page .conf-hero-floating-icon {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .conference-page .conf-hero-floating-copy strong {
    font-size: 0.76rem !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  .conference-page .conf-hero-floating-copy small {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .conference-page .conf-hero-floating-cta.conf-hero-floating-cta-register,
  .conference-page .conf-hero-floating-cta.conf-hero-floating-cta-abstract,
  .conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-register,
  .conference-page .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
    animation: none !important;
    translate: 0 0 !important;
    will-change: auto;
  }
}

@media (min-width: 641px) {
  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: min(100%, 640px) !important;
    min-width: 0 !important;
    align-items: stretch !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta .meta-pill {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta .meta-pill-date {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta .meta-pill-location {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta .meta-pill-venue {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: min(100%, 560px) !important;
    max-width: min(100%, 560px) !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta .meta-pill-delegates {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    width: min(100%, 320px) !important;
    max-width: min(100%, 320px) !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-meta .meta-pill-main {
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .conference-page.conference-experience .conf-hero-floating-cta {
    max-width: min(82vw, 300px) !important;
    min-height: 64px !important;
    padding: 0.58rem 1.05rem 0.58rem 0.72rem !important;
    gap: 0.62rem !important;
    will-change: translate;
  }

  .conference-page.conference-experience .conf-hero-floating-icon {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }

  .conference-page.conference-experience .conf-hero-floating-copy strong {
    font-size: 1rem !important;
    line-height: 1.05 !important;
  }

  .conference-page.conference-experience .conf-hero-floating-copy small {
    font-size: 0.62rem !important;
    line-height: 1.1 !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-register {
    --conf-hero-cta-float-top: 0 !important;
    --conf-hero-cta-float-bottom: 4px !important;
    left: clamp(0.85rem, 2vw, 2rem) !important;
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: conf-float-top-to-bottom 5.2s ease-in-out infinite alternate !important;
  }

  .conference-page.conference-experience .conf-hero-banner .conf-hero-floating-cta.conf-hero-floating-cta-abstract {
    --conf-hero-cta-float-top: -6px !important;
    --conf-hero-cta-float-bottom: 6px !important;
    right: clamp(0.5rem, 1.5vw, 1.2rem) !important;
    top: clamp(-5.25rem, -5.4vw, -4.2rem) !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: conf-float-bottom-to-top 5.2s ease-in-out infinite alternate !important;
  }
}
