/* ================================================
   PROFILE PHOTO - Mobile
   Extrait de css/profile-photo.css (lignes 267-310)
   ================================================ */

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .photo-uploader {
    padding: 1.5rem;
  }
  
  .photo-preview {
    width: 160px;
    height: 160px;
  }
  
  .crop-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .crop-container {
    max-height: 50vh;
  }
  
  .crop-controls {
    flex-direction: column;
    width: 100%;
  }
  
  .crop-controls .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .photo-preview {
    width: 140px;
    height: 140px;
  }
  
  .modal-header,
  .modal-footer {
    padding: 1rem;
  }
  
  .modal-header h3 {
    font-size: 1.125rem;
  }
}

