.egm-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  padding: 30px;
}

.egm-card {
  background-color: #ffffff;
  border: 2px solid #fc631e;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.egm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.egm-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.egm-card img {
  width: 120px;
  height: 120px;
  border-radius: 50% !important;
  object-fit: cover;
  border: 3px solid #fc631e;
}

.egm-name {
  color: #fc631e;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 8px 0 5px;
}

.egm-role {
  color: #444;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 10px;
}

.egm-excerpt {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 15px;
}

.egm-button {
  background-color: #fc631e;
  color: #fff;
  text-decoration: none !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  border: 2px solid #fc631e; 
  transition: all 0.3s ease;
}

.egm-button:hover {
  background-color: #fff;
  color: #fc631e;
  border: 2px solid #fc631e;
}


/* Single Page Styling */
.egm-single-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border: 2px solid #fc631e;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.egm-single-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #fc631e;
  object-fit: cover;
  margin-bottom: 20px;
}

.egm-single-container h1 {
  color: #fc631e;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.egm-single-container .egm-role {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}

.egm-single-container .egm-bio {
  text-align: left;
  color: #333;
  line-height: 1.6;
}
