/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}



/* ===== PROFIL ===== */
.correspondant-profile {
  padding: 40px 0;
}

.profile-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  gap: 20px;
}

.profile-left img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.profile-right {
  flex: 1;
}

.name {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
}

.role {
  font-size: 18px;
  margin-top: 5px;
  color: #555;
}

.bio {
  margin: 15px 0;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-info p {
  margin: 4px 0;
}

.social-links {
  margin-top: 10px;
}

.social {
  margin-right: 15px;
  text-decoration: none;
  color: #0066cc;
}

.btn-contact {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

/* ===== ARTICLES ===== */
.articles-section {
  padding: 40px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.article-card h3 {
  margin: 12px 0 6px;
}

.read-more {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}



/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .profile-left img {
    width: 100%;
    height: auto;
  }
}
