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

.ff-ps {
  padding: 24px 24px;
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: hidden;
}

.ff-ps-row {
  min-width: 0;
}

.ff-ps-row__left,
.ff-ps-row__right,
.ff-ps-slider,
.ff-ps-slide {
  min-width: 0;
}

.ff-ps-row__headline,
.ff-ps-row__intro,
.ff-ps-slide__text {
  overflow-wrap: break-word;
  word-break: break-word;
}

.ff-ps-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  opacity: 1;
  transform: none;
}

.ff-ps-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ff-ps-connector__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E6F0F8;
  transform: translateY(-50%) scaleX(1);
  transform-origin: left center;
}

.ff-ps-connector svg {
  position: relative;
  opacity: 1;
  transform: scale(1);
}

@supports (animation-timeline: view()) {
  .ff-ps-row {
    opacity: 0;
    transform: translateY(24px);
    animation: ff-ps-fade-in linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  .ff-ps-connector__line {
    transform: translateY(-50%) scaleX(0);
    animation: ff-ps-draw-line linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }

  .ff-ps-connector svg {
    opacity: 0;
    transform: scale(0.6);
    animation: ff-ps-pop-arrow linear both;
    animation-timeline: view();
    animation-range: entry 30% entry 100%;
  }
}

@keyframes ff-ps-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ff-ps-draw-line {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes ff-ps-pop-arrow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ff-ps-row,
  .ff-ps-connector__line,
  .ff-ps-connector svg {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ff-ps-connector__line {
    transform: translateY(-50%) scaleX(1) !important;
  }
}

.ff-ps-row__eyebrow {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #065196;
  margin: 0 0 12px;
}

.ff-ps-row__headline {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #001729;
  line-height: 1.25;
  margin: 0 0 12px;
}

.ff-ps-row__intro {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #001729;
}

.ff-ps-slider {
  position: relative;
}

.ff-ps-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ff-ps-slider__track::-webkit-scrollbar {
  display: none;
}

.ff-ps-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border-radius: 24px;
  padding: 32px 28px;
  scroll-margin-left: 0;
}

.ff-ps-slide--problem {
  background-color: #E6F0F8;
  color: #001729;
}

.ff-ps-slide--solution {
  background: linear-gradient(135deg, #052A4C 0%, #67B5FF 100%);
  color: #FFFFFF;
}

.ff-ps-slide__icon {
  height: 64px;
  width: auto;
  max-width: 100%;
  margin-bottom: 16px;
  display: block;
}

.ff-ps-slide__headline {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ff-ps-slide--problem .ff-ps-slide__headline {
  color: #065196;
}

.ff-ps-slide__text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.ff-ps-slide__text p {
  margin: 0;
}

.ff-ps-slide__text p + p {
  margin-top: 8px;
}

.ff-ps-slide__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  border-radius: 14px;
  background-color: #FFFFFF;
  color: #065196;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ff-ps-slide__cta:hover {
  background-color: #052A4C;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.ff-ps-slider__nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.ff-ps-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #B7D7F4;
  color: #065196;
  text-decoration: none;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ff-ps-slider__arrow:hover {
  background-color: #052A4C;
  color: #FFFFFF;
}

.ff-ps-slider__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #B7D7F4;
  color: #065196;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ff-ps-slider__dot:hover {
  background-color: #052A4C;
  color: #FFFFFF;
}

@media (prefers-reduced-motion: reduce) {
  .ff-ps-slider__track {
    scroll-behavior: auto;
  }
}

@media (max-width: 768px) {
  .ff-ps {
    padding: 16px 16px;
  }

  .ff-ps-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .ff-ps-row__eyebrow {
    margin-bottom: 8px;
  }

  .ff-ps-row__headline {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .ff-ps-slide {
    padding: 24px 20px;
  }

  .ff-ps-slider__nav {
    justify-content: center;
    margin-top: 20px;
  }

  .ff-ps-connector {
    margin: 8px 0;
  }
}