/* ============================================
   PAGE PROJET — Stratos (styles spécifiques)
   Identité orange clair (vs. bleu par défaut de la trame commune)
   ============================================ */

/* ---------- Marges réduites entre les sections ---------- */
.project-section {
  padding: 8vh 6vw;
}

/* ---------- Badges du hero en orange clair ---------- */
.project-hero-badges .featured-badge {
  background: rgba(234, 103, 48, 0.12);
  color: var(--ink);
}

.project-hero-badges .featured-badge--fill {
  background: var(--accent-orange);
  color: #ffffff;
}

/* ---------- Cards / placeholders en orange clair ---------- */
.project-placeholder {
  background: rgba(234, 103, 48, 0.1);
}

.project-hero-media {
  background: rgba(234, 103, 48, 0.1);
}

/* ---------- Le constat : cards problème / solution ---------- */
.stratos-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.stratos-problem-card {
  padding: 2.2rem;
  border-radius: var(--radius);
}

.stratos-problem-card--problem {
  background: rgba(10, 10, 10, 0.04);
}

.stratos-problem-card--solution {
  background: rgba(234, 103, 48, 0.1);
}

.stratos-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.stratos-problem-card--problem .stratos-label {
  color: var(--ink-soft);
}

.stratos-problem-card--solution .stratos-label {
  color: var(--accent-orange);
}

.stratos-problem-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.7rem 0;
  color: var(--ink);
}

.stratos-problem-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.stratos-community-band {
  grid-column: 1 / -1;
  padding: 1.6rem 2rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- Accessibilité : toggle daltonisme ---------- */
.stratos-colorblind {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.stratos-colorblind-display {
  aspect-ratio: 16 / 9;
}

.stratos-colorblind-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stratos-cb-btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.stratos-cb-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .stratos-problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stratos-community-band {
    grid-column: 1;
  }
}
