.slideshow-stage {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--scvfs-red);
}

.slideshow-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 1s ease-in-out;
  cursor: zoom-in;
  opacity: 0;
}

.slideshow-stage:fullscreen { aspect-ratio: auto; height: 100vh; border-radius: 0; border: none; }
.slideshow-stage:fullscreen img { object-fit: contain; }

.ss-loading {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  pointer-events: none;
}

.ss-control-card {
  margin: 0 0 14px;
}

.ss-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ss-controls .primary {
  background: var(--scvfs-red);
  color: #fff;
  border: none;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.ss-controls .primary:hover { background: var(--scvfs-red-dark); }

.ss-controls .ghost {
  background: var(--grey-100);
  color: var(--ink);
  border: 1px solid var(--grey-300);
  padding: 11px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}
.ss-controls .ghost:hover { background: var(--grey-300); }

.ss-controls .icon { font-size: 14px; }
