.profile {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.profile-photo {
  flex: 0 0 115px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-details h2 {
  margin: 0 0 14px;
}

.profile-details h4 {
  margin: 0 0 14px;
}

.profile-divider {
  margin: 0 0 20px;
}

.not-found {
  text-align: center;
}

.not-found img {
  max-width: 100%;
  height: auto;
}

@media print, screen and (max-width: 480px) {
  .profile {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
