.instructor-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}
.instructor-detail .back-link {
  text-decoration: none;
  color: black;
}
.instructor-detail .instructor-photo-detail {
  grid-column: 1/2;
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
  align-self: start;
}
.instructor-detail .instructor-photo-detail:hover {
  transform: scale(1.05);
}
.instructor-detail .instructor-info-section {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.instructor-detail .instructor-info-section h2 {
  color: #eeae8b;
  font-size: 2rem;
  font-weight: 600;
}
.instructor-detail .instructor-info-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.instructor-detail .instructor-info-section p i {
  color: #333333;
  font-size: 1.2rem;
}
.instructor-detail .instructor-info-section p.quote {
  font-style: italic;
  color: #333333;
  margin-top: 0.5rem;
}
.instructor-detail .instructor-info-section strong {
  font-weight: 500;
  color: rgba(207, 200, 211, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.instructor-detail .instructor-info-section strong i {
  color: #eeae8b;
}
.instructor-detail .contact-form {
  grid-column: 1/-1;
  padding: 1.5rem;
  border: 1px solid #333333;
  border-radius: 8px;
  background-color: #f9f9f9;
}
.instructor-detail .contact-form h3 {
  color: #eeae8b;
  margin-bottom: 1rem;
}
.instructor-detail .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.instructor-detail .contact-form form label {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.instructor-detail .contact-form form input, .instructor-detail .contact-form form textarea {
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid #333333;
  font-size: 1.1rem;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
}
.instructor-detail .contact-form form input[type=submit] {
  background-color: #eeae8b;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.instructor-detail .contact-form form input[type=submit]:hover {
  background-color: #e78f5f;
}
.instructor-detail .course-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #333333;
  padding-top: 1rem;
}
.instructor-detail .course-list h3 {
  grid-column: 1/-1;
  font-size: 1.5rem;
  color: #eeae8b;
  margin-bottom: 1rem;
}
.instructor-detail .course-list .course-item {
  padding: 1rem;
  border: 1px solid #333333;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.instructor-detail .course-list .course-item:hover {
  transform: translateY(-5px);
}
.instructor-detail .course-list .course-item img {
  max-width: 75px;
  max-height: auto;
}
.instructor-detail .course-list .course-item h4 {
  color: #eeae8b;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.instructor-detail .course-list .course-item p {
  font-size: 1rem;
  color: #111111;
}
.instructor-detail .course-list .course-item p strong {
  font-weight: 600;
}
.instructor-detail .course-list .course-item a {
  display: block;
  text-align: center;
  background-color: #eeae8b;
  padding: 0.8rem;
  text-decoration: none;
  border-radius: 50px;
  color: #eaeaea;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.instructor-detail .course-list .course-item a:hover {
  background-color: #e78f5f;
  color: #dddddd;
}

@media (max-width: 1024px) {
  .course-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .instructor-detail {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .instructor-detail .instructor-photo-detail {
    max-width: 200px;
    margin: 0 auto 1rem;
  }
  .instructor-detail .contact-form, .instructor-detail .course-list {
    width: 100%;
    grid-column: 1/-1;
  }
  .instructor-detail .course-list {
    grid-template-columns: 1fr;
  }
  .instructor-detail form label, .instructor-detail form input, .instructor-detail form textarea {
    width: 100%;
  }
}/*# sourceMappingURL=instructor-detail.css.map */