.instructors-section {
  padding: 60px 0;
  background: var(--bg-color);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text-color);
  font-size: 15px;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.instructor-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instructor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.instructor-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.instructor-details {
  padding: 20px;
  text-align: center;
}
.instructor-details h3 {
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.instructor-details .title {
  font-size: 14px;
  color: var(--sub-heading-color);
  margin-bottom: 15px;
}
.instructor-details .bio {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 15px;
}
.instructor-details .stats {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.btn-view {
  display: inline-block;
  padding: 8px 15px;
  font-size: 14px;
  background: var(--button-color);
  color: var(--link-color);
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-view:hover {
  background: var(--hover-color);
}