/* Camp detail pages — extras only; hero uses program-page.css */
.camp-page .sidebar-box {
  background: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 14px;
  padding: 22px;
  position: sticky;
  top: 80px;
}

.camp-page .sidebar-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.camp-page .sidebar-box p {
  font-size: 13px;
  color: #6e6e73;
  margin-bottom: 16px;
}

.camp-page .back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--camp-accent, #1a3fad);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e5e5e7;
}

.prog-video-preview {
  margin-top: 0;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f0f5ff 0%, #fff 55%);
  border: 1px solid #dde6ff;
  box-shadow: 0 8px 28px rgba(26, 63, 173, 0.08);
}

.prog-video-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a3fad;
  margin-bottom: 10px;
}

.prog-video-preview h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.25;
  color: #1a1f36;
  margin-bottom: 8px;
}

.prog-video-preview p {
  font-size: 14px;
  color: #6e6e73;
  margin-bottom: 16px;
  max-width: 420px;
}

.prog-video-preview-card {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.prog-video-preview-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0a1a4e;
  box-shadow: 0 12px 36px rgba(26, 63, 173, 0.18);
  transition: 0.25s;
}

.prog-video-preview-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 482/857;
  object-fit: cover;
}

.prog-video-preview-thumb--ig iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  pointer-events: none;
}

.prog-video-preview-thumb--ig {
  aspect-ratio: 482/857;
}

.prog-video-preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(
    to top,
    rgba(10, 26, 78, 0.72) 0%,
    rgba(10, 26, 78, 0.15) 55%,
    rgba(10, 26, 78, 0.35) 100%
  );
}

.prog-video-preview-play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e8232a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(232, 35, 42, 0.45);
}

.prog-video-preview-play-text {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.prog-video-preview-card:hover .prog-video-preview-thumb {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 63, 173, 0.22);
}

.prog-video-preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 11px;
  background: #1a3fad;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: 0.2s;
}

.prog-video-preview-cta:hover {
  background: #0f2a7a;
}

.kamp-intro-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: welcomeModalIn 0.3s ease;
}

.kamp-intro-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes welcomeModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.camp-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.camp-video-modal.open {
  display: flex;
}

.camp-video-modal-inner {
  position: relative;
  width: min(482px, 95vw);
  aspect-ratio: 482/857;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}

.camp-video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.camp-video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .camp-page .sidebar-box {
    position: static;
  }
}
