.blog-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2b2b2b;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.blog-header {
  background: linear-gradient(135deg, #2f2a4a, #1c1a2e);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border: 2px solid #d8b247;
  margin-bottom: 50px;
}
.blog-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
  line-height: 1.2;
}
.blog-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}
.blog-container {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
}
.blog-category {
  display: inline-flex;
  align-items: center; 
  padding: 2px 10px 2px 2px;
  border-radius: 30px;
  background: #f0ede8;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #2b2b2b;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid #f0ede8;
}
.blog-category:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  color: #2f2a4a;
}
.blog-category-apprendre{
	 background: linear-gradient(135deg, #2f2a4a, #1c1a2e);
	color: #fff;
}
.blog-category .icon {
  font-size: 2em;
  margin-right: 0.3em;
  vertical-align: middle;
}
.blog-category:hover .icon {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}
.blog-container > h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}
.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;	
}
.blog-article-card {
  background: #f0ede8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f0ede8;
}
.blog-article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.blog-article-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.blog-article-content {
  padding: 25px;
}
.blog-article-content h3 {
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}
.blog-article-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}
.blog-read-more {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  color: #2f2a4a;
  transition: color 0.2s ease;
}
.blog-read-more:hover {
  color: #d8b247;
}
.blog-body a {
  transition: color 0.2s ease;
}
input[type="checkbox"] {
  appearance: checkbox;
}
.champ-erreur {
  border: 2px solid #ff0000 !important;
  background-color: #ffe5e5;
}
@media (max-width: 768px) {
  .blog-header {
    padding: 45px 15px;
  }
  .blog-header h2 {
    font-size: 1.7rem;
  }
  .blog-container {
    margin-bottom: 50px;
  }
  .blog-container > h2 {
    font-size: 1.5rem;
  }}	