:root {
  --green-main: #1b5e20;
  --green-soft: #2e7d32;
  --green-light: #e6f4e8;
  --text-dark: #333;
  --bg-light: #f7f9f8;
}

/* ===== BANNIÈRE ===== */
.page-banner {
  background: var(--green-light);
  padding: 90px 20px;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-main);
  margin-bottom: 10px;
}

.page-banner p {
  max-width: 900px;
  margin: auto;
  font-size: 1.15rem;
  color: var(--green-soft);
}

/* ===== SECTION ===== */
.executive-section {
  background: var(--bg-light);
  padding: 80px 20px;
}

/* ===== LIGNE MEMBRE ===== */
.executive-row {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  background: #fff;
  border-radius: 20px;
  display: flex;
  gap: 40px;
  padding: 40px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===== PHOTO ===== */
.executive-photo {
  min-width: 220px;
  text-align: center;
}

.executive-photo img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--green-light);
  margin-bottom: 14px;
}

.executive-photo h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-main);
}

/* ===== INFOS ===== */
.executive-info h4 {
  font-size: 1.3rem;
  color: var(--green-main);
  margin-bottom: 12px;
}

.executive-info p {
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 18px;
}

/* ===== LIENS ===== */
.executive-links {
  display: flex;
  gap: 16px;
}

.executive-links a {
  text-decoration: none;
  background: var(--green-main);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.executive-links a:hover {
  background: #124116;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .executive-row {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .executive-links {
    justify-content: center;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }
}
