/**
 * Doctiva - Template Page Statique Premium
 * Pour FAQ, À propos, Mentions légales, etc.
 */

/* === WRAPPER === */
.page-static-wrap {
  background: #f8fafc;
  min-height: 60vh;
  padding: 48px 0 64px;
}

.page-static-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === CARD PRINCIPALE === */
.page-static-card {
  background: #fff;
  border: 1px solid #E7EDF5;
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 12px 32px rgba(2, 6, 23, .06);
}

/* === HEADER === */
.page-static-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E7EDF5;
}

.page-static-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-static-intro {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
  margin: 1rem 0 0 0;
  max-width: 680px;
}

.page-static-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.page-static-subtitle p {
  margin: 0;
}

/* === CONTENU === */
.page-static-content {
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
}

.page-static-content p {
  margin: 0 0 20px;
}

.page-static-content p:last-child {
  margin-bottom: 0;
}

.page-static-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.page-static-content h2:first-child {
  margin-top: 0;
}

.page-static-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin: 32px 0 12px;
  line-height: 1.4;
}

.page-static-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #334155;
  margin: 24px 0 10px;
}

/* === LISTES === */
.page-static-content ul,
.page-static-content ol {
  margin: 0 0 20px;
  padding-left: 28px;
}

.page-static-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-static-content li:last-child {
  margin-bottom: 0;
}

.page-static-content ul ul,
.page-static-content ol ol {
  margin-top: 10px;
  margin-bottom: 0;
}

/* === LIENS === */
.page-static-content a {
  color: #2563EB;
  text-decoration: underline;
  text-decoration-color: rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}

.page-static-content a:hover {
  color: #1d4ed8;
  text-decoration-color: #1d4ed8;
}

/* === BLOCKQUOTE === */
.page-static-content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #F6F9FF;
  border-left: 4px solid #2563EB;
  border-radius: 8px;
  font-style: italic;
  color: #475569;
}

.page-static-content blockquote p:last-child {
  margin-bottom: 0;
}

/* === CODE === */
.page-static-content code {
  background: #F1F5F9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: #0F172A;
  font-family: 'Courier New', monospace;
}

.page-static-content pre {
  background: #F1F5F9;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

.page-static-content pre code {
  background: none;
  padding: 0;
}

/* === TABLES === */
.page-static-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.page-static-content th {
  background: #F8FAFC;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  color: #0F172A;
  border-bottom: 2px solid #E7EDF5;
}

.page-static-content td {
  padding: 12px;
  border-bottom: 1px solid #E7EDF5;
}

.page-static-content tr:last-child td {
  border-bottom: none;
}

/* === FOOTER === */
.page-static-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #E7EDF5;
}

.page-static-updated {
  font-size: 13px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .page-static-wrap {
    padding: 32px 0 48px;
  }
  
  .page-static-container {
    padding: 0 16px;
  }
  
  .page-static-card {
    padding: 32px 24px;
    border-radius: 12px;
  }
  
  .page-static-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  
  .page-static-title {
    font-size: 26px;
  }
  
  .page-static-subtitle {
    font-size: 15px;
  }
  
  .page-static-content {
    font-size: 14px;
  }
  
  .page-static-content h2 {
    font-size: 22px;
    margin: 32px 0 14px;
  }
  
  .page-static-content h3 {
    font-size: 18px;
    margin: 24px 0 10px;
  }
}

@media (max-width: 480px) {
  .page-static-card {
    padding: 24px 20px;
  }
  
  .page-static-title {
    font-size: 24px;
  }
  
  .page-static-content h2 {
    font-size: 20px;
  }
  
  .page-static-content h3 {
    font-size: 17px;
  }
}

/* === PRINT === */
@media print {
  .page-static-wrap {
    background: white;
    padding: 0;
  }
  
  .page-static-card {
    box-shadow: none;
    border: none;
    padding: 0;
  }
  
  .page-static-header {
    border-bottom: 1px solid #ccc;
  }
}

