/* Fold/Unfold Text for Elementor - CSS v1.8 (keep within column) */
.foldable-target {
  position: relative;
  display: block;
  width: 100%;
  --fold-lines: 2;
}

/* Clamp mode */
.js-foldable[data-state="collapsed"]:not(.no-clamp) .foldable-target {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--fold-lines, 2);
  overflow: hidden;
}

/* Fallback uses max-height on target (set via JS) */
.js-foldable.no-clamp[data-state="collapsed"] .foldable-target {
  overflow: hidden;
}

/* Actions row below the content, right-aligned INSIDE the same column width */
.fold-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: .25rem;
}

.fold-toggle {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.fold-toggle svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #000;
}

/* No hover effects; keep focus visible for accessibility */
.fold-toggle:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
