/* Coordinators Styles */
.coordinators-section,
.track-coordinators-section {
  padding: 4rem 0;
  /* background-color: #f8fafc; */
}

.section-description {
  max-width: 1200px;
  align-content: center;
  text-align: justify;
  color: #111;
  line-height: 1.8;
  padding: 1.5rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
}

h1 {
  text-align: center;
  color: #1e293b;
  /* font-size: 2.5rem; */
  /* margin-bottom: 1.5rem; */
}

.coordinators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  padding-left: 1.5rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  /* display: none; */
}

.coordinator-card {
  /* background: white; */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  /* justify-content: center; */
  width: 208.28px;
  margin: 0 auto;
  display: grid;
  max-width: 1200px;
}
.coordinator-card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -5px rgba(0, 0, 0, 0.5);
  /* border: 1px solid #1e293b; */
  border-radius: 10px;
}

.member-imag {
  width: 250px;
  height: 250px;
}

.coordinator-image {
  width: 208.28px;
  height: 250px;
  /* width: 225px;
  height: 225px; */
  overflow: hidden;
  text-align: center;
}

.coordinator-image img {
  width: 208.28px;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.coordinator-card:hover .coordinator-image img {
  transform: scale(1.05);
}

.coordinator-info {
  padding: 0.8rem;
}

.coordinator-info h3 {
  color: #1e293b;
  font-size: 0.8rem;
  /* margin-bottom: 0.5rem; */
  /* text-align: center; */
  font-weight: bold;
  text-align: left;
}

.coordinator-info p {
  color: #64748b;
  /* line-height: 1.6; */
  /* padding: 0.5rem; */
  font-weight: bold;
  font-size: 0.8rem;
  text-align: left;
}

.more-btn {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-btn:hover {
  background-color: #1d4ed8;
}

.additional-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.hidden {
  display: none;
}

/* Track Coordinators Specific Styles */
.track-section {
  margin-bottom: 4rem;
}

.track-section h2 {
  /* color: #1e293b; */
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  /* border-bottom: 2px solid #e2e8f0; */
  padding: 0.5rem;
}

.track-section:last-child {
  margin-bottom: 0;
}