/* === Ressources – Pages de contenu (médiation, mentions, etc.) === */

:root {
  --pp-dark: #1f3b4d;
  --pp-light: #fff;
  --pp-accent: #2fc4b6;
  --pp-text: #334155;
  --pp-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
               0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pp-full-bleed {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  background-color: var(--pp-light);
  color: var(--pp-text);
  line-height: 1.6;
}

.pp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.pp-res-hero {
  background-color: var(--pp-dark);
  background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
                    url('/img/background-hero.png');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.pp-res-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Roboto Slab', serif;
}

.pp-res-subtitle {
  color: #cbd5e1;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* Cartes */
.pp-card-simple {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--pp-shadow);
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
}

.pp-section-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  color: var(--pp-dark);
  margin-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 12px;
}

.pp-highlight {
  color: var(--pp-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.pp-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pp-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Boutons */
.pp-btn-action {
  display: inline-block;
  background-color: var(--pp-accent);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s;
  box-shadow: 0 4px 6px rgba(47, 196, 182, 0.2);
}

.pp-btn-action:hover {
  transform: translateY(-2px);
}

.pp-btn-outline {
  display: inline-block;
  background-color: white;
  border: 2px solid var(--pp-accent);
  color: var(--pp-accent);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.pp-btn-outline:hover {
  background-color: #f0fdfa;
}

/* Verdicts */
.verdict-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.verdict-ok {
  background-color: #f0fdf4;
  border-left: 4px solid #22c55e;
  color: #166534;
}

.verdict-warn {
  background-color: #fff7ed;
  border-left: 4px solid #f97316;
  color: #9a3412;
}

.pp-card-simple ul li::marker {
    content: "· ";
    font-size: 1.2em;
}

