.pxs-faqs {
  display: flex;
  padding-left: max(4%, (100% - var(--maxWidth)) / 2);
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(30px, 3.2vw, 61px);
  position: relative;
}
@media screen and (min-width: 1025px) {
  .pxs-faqs {
    padding-right: clamp(150px, 14vw, 280px);
  }
}
@media screen and (max-width: 1024px) {
  .pxs-faqs {
    padding-right: max(4%, (100% - var(--maxWidth)) / 2);
  }
}
@media screen and (max-width: 768px) {
  .pxs-faqs {
    flex-direction: column;
  }
}
.pxs-faqs .px-faq-questions {
  counter-reset: faq;
}
@media screen and (max-width: 768px) {
  .pxs-faqs .px-faq-questions {
    padding-top: var(--fl-margin-before-small);
  }
}
@media screen and (min-width: 769px) {
  .pxs-faqs .px-faq-questions {
    padding-top: calc(clamp(20px, 2.8vw, 40px) + 50px + var(--fl-margin-before-small));
  }
}
.pxs-faqs .px-faq-questions .faq-question {
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-increment: faq;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--Solid---Grey-Light, #BFBFBF);
}
.pxs-faqs .px-faq-questions .faq-question:not(:last-child) {
  margin-bottom: 30px;
}
.pxs-faqs .px-faq-questions .faq-question .question {
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--main-color);
}
.pxs-faqs .px-faq-questions .faq-question .question::before {
  content: counter(faq);
  background-color: var(--primaryLight);
  color: var(--contrastColorInverted, #fff);
  font-size: 17px;
  border-radius: 100%;
  aspect-ratio: 1/1;
  height: 28px;
  min-width: 28px;
  text-align: center;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxs-faqs .px-faq-questions .faq-question .answer {
  padding-left: 44px;
}
.pxs-faqs .px-faq-questions .faq-question .answer ul {
  list-style: disc;
  padding-left: 20px;
}
.pxs-faqs aside {
  flex-basis: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  padding-top: var(--fl-margin-before-small);
  top: calc(var(--stickyHeaderHeight) + var(--top));
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 641px) {
  .pxs-faqs aside {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) {
  .pxs-faqs aside {
    flex-basis: auto;
    width: 100%;
    order: -1;
    background-color: var(--contrastColorInverted);
  }
}
@media screen and (max-width: 768px) {
  .pxs-faqs aside.is-collapsed .faq-nav,
  .pxs-faqs aside.is-collapsed .faq-teaser {
    display: none;
  }
  .pxs-faqs aside.is-collapsed .faq-nav-toggle svg {
    transform: rotate(180deg);
  }
}
.pxs-faqs .faq-teaser {
  padding: 40px;
  margin-top: var(--fl-margin-before-small);
  border-radius: 10px;
}
.pxs-faqs .faq-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--contrastColorInverted);
  background-color: var(--main-color);
  padding: 10px;
  border-radius: 5px;
}
.pxs-faqs .faq-nav-toggle svg {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .pxs-faqs .faq-nav-toggle {
    display: flex;
  }
}
.pxs-faqs .faq-nav .faq-nav-title {
  margin-bottom: clamp(20px, 2.8vw, 40px);
  min-height: 50px;
  display: block;
  text-decoration: none;
  font-weight: 700;
  background-color: var(--main-color);
  color: var(--contrastColorInverted);
  padding: 10px 20px;
  border-radius: 5px;
  width: fit-content;
  transition: 0.3s background-color ease, 0.3s color ease;
}
@media screen and (max-width: 768px) {
  .pxs-faqs .faq-nav .faq-nav-title {
    display: none;
  }
}
.pxs-faqs .faq-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: faq-nav;
}
.pxs-faqs .faq-nav ul li {
  counter-increment: faq-nav;
}
.pxs-faqs .faq-nav ul li a {
  text-decoration: none;
  font-weight: 700;
  transition: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #000;
}
.pxs-faqs .faq-nav ul li a::before {
  content: counter(faq-nav);
  background-color: var(--primaryLight);
  color: var(--contrastColorInverted, #fff);
  font-size: 17px;
  border-radius: 100%;
  aspect-ratio: 1/1;
  height: 28px;
  min-width: 28px;
  text-align: center;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pxs-faqs .faq-nav ul li a:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}
.pxs-faqs .faq-teaser {
  background: var(--second-color);
}
.pxs-faqs .faq-teaser .faq-teaser-text {
  color: var(--contrastColorInverted, #fff);
}
@media screen and (min-width: 1025px) {
  .pxs-faqs .bg-image {
    position: absolute;
    z-index: 0;
    width: clamp(100px, 13vw, 250px);
    transform: translateY(-40%);
    top: 0;
    right: 0;
  }
  .pxs-faqs .bg-image ~ * {
    z-index: 1;
  }
  .pxs-faqs .bg-image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .pxs-faqs .bg-image {
    display: none;
  }
}