.r4w-gbp-faq-sticky,
.r4w-gbp-faq-sticky * {
  box-sizing: border-box;
}

.r4w-gbp-faq-sticky {
  --r4w-orange: #f68826;
  --r4w-dark: #151515;
  --r4w-text: #2a2a2a;
  --r4w-muted: #666;
  --r4w-border: #e8e8e8;
  --r4w-soft: #f7f7f7;
  --r4w-bg: #fff;
  --r4w-toc-start: #111;
  --r4w-toc-end: #1e1e1e;
  --r4w-sticky-offset: 110px;
  --r4w-title-size: 42px;
  --r4w-intro-size: 18px;
  --r4w-toc-size: 14px;
  --r4w-section-size: 24px;
  --r4w-question-size: 19px;
  --r4w-answer-size: 16px;
  --r4w-mobile-title-size: 30px;
  --r4w-mobile-question-size: 17px;
  --r4w-mobile-answer-size: 16px;

  width: 100%;
  color: var(--r4w-text);
  font-family: inherit;
  padding: 44px 0;
}

.r4w-gbp-faq-sticky__intro {
  margin: 0 0 32px;
}

.r4w-gbp-faq-sticky__intro h2 {
  margin: 0 0 14px;
  color: var(--r4w-dark) !important;
  font-size: var(--r4w-title-size);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.r4w-gbp-faq-sticky__intro h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 5px;
  margin-top: 14px;
  border-radius: 99px;
  background: var(--r4w-orange);
}

.r4w-gbp-faq-sticky__intro p {
  max-width: 900px;
  margin: 0;
  color: var(--r4w-muted);
  font-size: var(--r4w-intro-size);
  line-height: 1.65;
}

.r4w-gbp-faq-sticky__layout {
  display: grid;
  grid-template-columns: minmax(230px, 285px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.r4w-gbp-faq-sticky__toc {
  position: sticky;
  top: var(--r4w-sticky-offset);
  align-self: start;
}

.r4w-gbp-faq-sticky__toc-card {
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 20px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(246,136,38,.20), transparent 34%),
    linear-gradient(145deg, var(--r4w-toc-start) 0%, var(--r4w-toc-end) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  color: #fff;
  overflow: hidden;
}

.r4w-gbp-faq-sticky__toc-card > strong {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
}

.r4w-gbp-faq-sticky__toc nav {
  display: grid;
  gap: 8px;
}

.r4w-gbp-faq-sticky__toc a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.045);
  text-decoration: none;
  font-size: var(--r4w-toc-size);
  line-height: 1.25;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.r4w-gbp-faq-sticky__toc a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 99px;
  background: transparent;
}

.r4w-gbp-faq-sticky__toc a span {
  min-width: 0;
}

.r4w-gbp-faq-sticky__toc a small {
  min-width: 26px;
  height: 22px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 850;
}

.r4w-gbp-faq-sticky__toc a:hover {
  color: #fff;
  border-color: rgba(246,136,38,.50);
  background: rgba(246,136,38,.12);
  transform: translateX(2px);
}

.r4w-gbp-faq-sticky__toc a.is-active {
  color: #fff;
  border-color: var(--r4w-orange);
  background: linear-gradient(90deg, rgba(246,136,38,.24), rgba(255,255,255,.05));
}

.r4w-gbp-faq-sticky__toc a.is-active::before {
  background: var(--r4w-orange);
}

.r4w-gbp-faq-sticky__toc a.is-active small {
  background: var(--r4w-orange);
  color: #111;
}

.r4w-gbp-faq-sticky__content {
  min-width: 0;
}

.r4w-gbp-faq-sticky__section {
  scroll-margin-top: calc(var(--r4w-sticky-offset) + 24px);
  margin: 0 0 46px;
}

.r4w-gbp-faq-sticky__section:last-child {
  margin-bottom: 0;
}

.r4w-gbp-faq-sticky__section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-left: 5px solid var(--r4w-orange);
  border-radius: 0 13px 13px 0;
  background: var(--r4w-soft);
  color: var(--r4w-dark);
  font-size: var(--r4w-section-size);
  line-height: 1.25;
  font-weight: 850;
}

.r4w-gbp-faq-sticky__items {
  display: grid;
  gap: 13px;
}

.r4w-gbp-faq-sticky__item {
  width: 100%;
  border: 1px solid var(--r4w-border);
  border-radius: 17px;
  background: var(--r4w-bg);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.r4w-gbp-faq-sticky__item[open] {
  border-color: var(--r4w-orange);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .07);
}

.r4w-gbp-faq-sticky__item summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 19px 58px 19px 20px;
  cursor: pointer;
  list-style: none;
  background: var(--r4w-bg);
}

.r4w-gbp-faq-sticky__item summary::-webkit-details-marker {
  display: none;
}

.r4w-gbp-faq-sticky__item summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--r4w-soft);
  color: var(--r4w-dark);
  font-size: 22px;
  line-height: 1;
  font-weight: 850;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.r4w-gbp-faq-sticky__item[open] summary::after {
  content: "−";
  background: var(--r4w-orange);
  color: #fff;
  transform: rotate(180deg);
}

.r4w-gbp-faq-sticky__item h3 {
  margin: 0;
  color: var(--r4w-dark) !important;
  font-size: var(--r4w-question-size);
  line-height: 1.35;
  font-weight: 850;
}

.r4w-gbp-faq-sticky__answer {
  padding: 0 20px 22px;
  color: var(--r4w-text);
}

.r4w-gbp-faq-sticky__answer p {
  margin: 0 0 12px;
  color: var(--r4w-text);
  font-size: var(--r4w-answer-size);
  line-height: 1.7;
}

.r4w-gbp-faq-sticky__answer p:last-child {
  margin-bottom: 0;
}

.r4w-gbp-faq-sticky__answer a {
  color: var(--r4w-orange);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.r4w-gbp-faq-sticky__answer strong,
.r4w-gbp-faq-sticky__answer b {
  color: var(--r4w-dark);
  font-weight: 850;
}

.r4w-gbp-faq-sticky__answer ul,
.r4w-gbp-faq-sticky__answer ol {
  margin: 10px 0 0;
  padding-left: 22px;
}

.r4w-gbp-faq-sticky__answer li {
  margin-bottom: 7px;
  font-size: var(--r4w-answer-size);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .r4w-gbp-faq-sticky {
    padding: 34px 0;
  }

  .r4w-gbp-faq-sticky__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .r4w-gbp-faq-sticky__toc {
    position: relative;
    top: auto;
  }

  .r4w-gbp-faq-sticky__toc-card {
    border-radius: 18px;
    padding: 16px;
  }

  .r4w-gbp-faq-sticky__toc nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .r4w-gbp-faq-sticky__intro h2 {
    font-size: var(--r4w-mobile-title-size);
  }

  .r4w-gbp-faq-sticky__intro p {
    font-size: var(--r4w-mobile-answer-size);
  }

  .r4w-gbp-faq-sticky__section {
    margin-bottom: 36px;
  }

  .r4w-gbp-faq-sticky__section-label {
    font-size: 20px;
  }

  .r4w-gbp-faq-sticky__item summary {
    padding: 16px 52px 16px 16px;
  }

  .r4w-gbp-faq-sticky__item summary::after {
    top: 14px;
    right: 14px;
  }

  .r4w-gbp-faq-sticky__item h3 {
    font-size: var(--r4w-mobile-question-size);
  }

  .r4w-gbp-faq-sticky__answer {
    padding: 0 16px 18px;
  }

  .r4w-gbp-faq-sticky__answer p,
  .r4w-gbp-faq-sticky__answer li {
    font-size: var(--r4w-mobile-answer-size);
  }
}

/* =========================================================
   R4W Sticky Robustheit für Divi / Theme Builder
   Einige Themes oder Divi Container setzen overflow:hidden.
   Dadurch kann CSS position: sticky ausfallen. Diese Regeln
   halten die FAQ Navigation sichtbar und ermöglichen den
   JavaScript Fallback.
========================================================= */
.r4w-gbp-faq-sticky,
.r4w-gbp-faq-sticky__layout,
.r4w-gbp-faq-sticky__content,
.r4w-gbp-faq-sticky__toc {
  overflow: visible !important;
}

.r4w-faq-sticky-parent {
  overflow: visible !important;
}

@media (min-width: 981px) {
  .r4w-gbp-faq-sticky.r4w-faq-js-sticky .r4w-gbp-faq-sticky__toc {
    position: relative !important;
    top: auto !important;
    align-self: stretch;
    min-height: var(--r4w-js-toc-height, auto);
  }

  .r4w-gbp-faq-sticky__toc.r4w-is-fixed .r4w-gbp-faq-sticky__toc-card {
    position: fixed !important;
    top: var(--r4w-js-sticky-top, var(--r4w-sticky-offset)) !important;
    left: var(--r4w-js-sticky-left, auto) !important;
    width: var(--r4w-js-sticky-width, auto) !important;
    z-index: 9999;
  }

  .r4w-gbp-faq-sticky__toc.r4w-is-bottom .r4w-gbp-faq-sticky__toc-card {
    position: absolute !important;
    top: var(--r4w-js-bottom-top, 0px) !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 20;
  }
}

@media (max-width: 980px) {
  .r4w-gbp-faq-sticky.r4w-faq-js-sticky .r4w-gbp-faq-sticky__toc,
  .r4w-gbp-faq-sticky__toc.r4w-is-fixed,
  .r4w-gbp-faq-sticky__toc.r4w-is-bottom {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
  }

  .r4w-gbp-faq-sticky__toc.r4w-is-fixed .r4w-gbp-faq-sticky__toc-card,
  .r4w-gbp-faq-sticky__toc.r4w-is-bottom .r4w-gbp-faq-sticky__toc-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
  }
}
