/* ===============================
   GRAM PANCHAYAT TEAM SECTION
=================================*/

.gp-team-section {
  background-color: #f3efe7;
  padding: 70px 40px 90px;
}

.gp-team-container {
  max-width: 1200px;
  margin: auto;
}

.gp-team-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0d2b3e;
  margin-bottom: 55px;
}

/* GRID */
.gp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* CARD */
.gp-team-card {
  background: #f8f6f1;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* IMAGE */
.gp-team-image img {
  width: 150px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

/* NAME */
.gp-team-name {
  font-size: 20px;
  font-weight: 700;
  color: #0d2b6f;
  margin-bottom: 8px;
}

/* POSITION */
.gp-team-position {
  font-size: 15px;
  color: #555;
  margin-bottom: 6px;
}

/* EDUCATION */
.gp-team-edu {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

/* PHONE */
.gp-team-phone {
  font-size: 14px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .gp-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .gp-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gp-team-grid {
    grid-template-columns: 1fr;
  }
}
