/* Styles communs pour contenu dynamique */
.blog-hero, .podcasts-hero, .faq-hero {
  background: linear-gradient(rgba(13, 43, 123, 0.85), rgba(13, 43, 123, 0.9));
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

/* BLOG STYLES */
.blog-content, .podcasts-content, .faq-content {
  padding: 4rem 0;
}

.blog-grid, .episodes-grid, .faq-list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-post, .episode-card, .faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FAQ SPECIFIC */
.faq-search {
  margin-bottom: 2rem;
}

.faq-search input {
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 30px;
}

.faq-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.5rem 1.5rem;
  background: #f8f9fa;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active {
  background: #0d2b7b;
  color: white;
}