/* ScienceuP — Bootcamp */

/* ── Hero ───────────────────────────────────────────────── */
.bootcamp-hero {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  padding-block: var(--space-16);
  text-align: center;
}

.bootcamp-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.bootcamp-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: var(--space-5);
}

.bootcamp-subtitle {
  font-size: var(--text-lg);
  opacity: 0.9;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Sections ──────────────────────────────────────────── */
.bootcamp-section {
  padding-block: var(--space-16);
}

.bootcamp-section-alt {
  padding-block: var(--space-16);
  background: var(--color-primary-light);
}

.bootcamp-section h2,
.bootcamp-section-alt h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--color-dark);
}

.bootcamp-section p,
.bootcamp-section-alt p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.bootcamp-section p strong,
.bootcamp-section-alt p strong {
  color: var(--color-text);
}

/* ── Intro block ───────────────────────────────────────── */
.bootcamp-intro p {
  font-size: var(--text-lg) !important;
}

/* ── List ──────────────────────────────────────────────── */
.bootcamp-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.bootcamp-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-muted);
  line-height: 1.7;
}

.bootcamp-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 0.7rem;
  top: 0.35em;
}

/* ── CTA Buttons ───────────────────────────────────────── */
.bootcamp-cta {
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.bootcamp-cta-label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-5) !important;
}

.bootcamp-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
