/* IVD Hausservice – Homepage FAQ Scrollbox
   Zeigt auf der Startseite die ersten 5 FAQ-Einträge sichtbar und macht weitere Einträge scrollbar. */

.ivd-faq-scrollbox {
  position: relative;
  max-height: var(--ivd-faq-scroll-height, 560px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  scroll-behavior: smooth;
  border-radius: 18px;
}

.ivd-faq-scrollbox::-webkit-scrollbar {
  width: 10px;
}

.ivd-faq-scrollbox::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 999px;
}

.ivd-faq-scrollbox::-webkit-scrollbar-thumb {
  background: #b6c7d8;
  border-radius: 999px;
  border: 2px solid #f1f5f9;
}

.ivd-faq-scrollbox::-webkit-scrollbar-thumb:hover {
  background: #7fa0bd;
}

.ivd-faq-scrollbox {
  scrollbar-width: thin;
  scrollbar-color: #b6c7d8 #f1f5f9;
}

.ivd-faq-scrollbox::after {
  content: "";
  position: sticky;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.95));
}

.ivd-faq-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 12px auto 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef7ff;
  border: 1px solid #d5e9fb;
  color: #0f4c81;
  font-size: .92rem;
  font-weight: 700;
}

.ivd-faq-scroll-hint::before {
  content: "↕";
  font-weight: 900;
}

@media (max-width: 760px) {
  .ivd-faq-scrollbox {
    max-height: var(--ivd-faq-scroll-height-mobile, 620px);
    padding-right: 6px;
  }
}
