/* Proefles page-only: Zoho iframe wrapper + loader (veilig) */

.embedCardX{
  padding: 0;
  overflow: hidden;
}

.embedTopX{
  padding: var(--card-pad, 18px);
  border-bottom: 2px solid rgba(16,16,16,.12);
  background: rgba(255,255,255,.65);
}

.embedWrapX{
  position: relative;
  background: rgba(255,255,255,.85);
  padding: 12px;
}

/* Frame around iframe */
.embedFrameX{
  width: 100%;
  height: 780px;
  border: 0;
  display: block;

  border-radius: 18px;
  background: white;
  box-shadow: 4px 4px 0 rgba(16,16,16,.10);
  border: 2px solid rgba(16,16,16,.12);
}

@media (max-width: 760px){
  .embedWrapX{ padding: 10px; }
  .embedFrameX{ height: 860px; }
}

/* Loading overlay */
.embedLoadingX{
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 2px solid rgba(16,16,16,.12);
  background: rgba(247,244,238,.94);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 2;
}

.embedLoadingX.hidden{
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.loadCardX{
  width: min(520px, 100%);
  border-radius: 18px;
  border: 2px solid rgba(16,16,16,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 4px 4px 0 rgba(16,16,16,.08);
  padding: 16px;
}

.loadTopX{
  display: flex;
  align-items: center;
  gap: 12px;
}

.loadTitleX{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.loadSubX{
  margin-top: 8px;
  color: rgba(16,16,16,.70);
  font-weight: 850;
  line-height: 1.55;
}

.spinnerX{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(16,16,16,.18);
  border-top-color: rgba(16,16,16,.75);
  animation: spinX .9s linear infinite;
}

@keyframes spinX { to { transform: rotate(360deg); } }

/* Skeleton */
.skeletonX{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.skLineX{
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(
	90deg,
	rgba(16,16,16,.06),
	rgba(16,16,16,.10),
	rgba(16,16,16,.06)
  );
  background-size: 200% 100%;
  animation: shimmerX 1.15s linear infinite;
}

.skLineX.w60{ width: 60%; }
.skLineX.w70{ width: 70%; }
.skLineX.w85{ width: 85%; }
.skLineX.w90{ width: 90%; }

@keyframes shimmerX{
  0%{ background-position: 0% 0; }
  100%{ background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce){
  .spinnerX{ animation: none; }
  .skLineX{ animation: none; }
}