/* ============================================
   INDEX - TEACHER MESSAGE
   ============================================ */

.teacher-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: -40px;
  margin-left: 20px;
  position: relative;
  z-index: 1;
}

.teacher-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.teacher-header h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.teacher-header p {
  font-size: 14px;
  color: #999;
}

.teacher-message {
  background: #f5f5f5;
  padding: 20px;
  padding-left: 80px;
  border-radius: 8px;
  margin-bottom: 30px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.teacher-message img {
  position: absolute;
  left: 20px;
  top: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.teacher-info h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.teacher-info p {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

/* ============================================
   INDEX - RESPONSIVE MOBILE
   ============================================ */

@media (max-width: 768px) {
  .teacher-section {
    margin-bottom: 20px;
  }

  .teacher-header {
    margin-bottom: -30px;
    margin-left: 15px;
  }

  .teacher-header img {
    width: 60px;
    height: 60px;
  }

  .teacher-header h3 {
    font-size: 16px;
  }

  .teacher-header p {
    font-size: 12px;
  }

  .teacher-message {
    padding: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .teacher-message img {
    left: 15px;
    top: -20px;
    width: 40px;
    height: 40px;
  }

  h2.section-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
  }

  .mobile-action-btn img {
    width: 20px;
    height: 20px;
  }
}

