/* Profile Component */
.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--size-6);
}

.profile-header__actions {
  flex-shrink: 0;
}

.profile-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--size-6);
  align-items: start;
}

.profile-avatar {
  display: flex;
  justify-content: center;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: var(--size-4);
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: var(--size-1);
}

.profile-field__label {
  font-weight: 600;
  color: var(--text-1);
  font-size: var(--font-size-0);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.profile-field__value {
  color: var(--text-2);
  font-size: var(--font-size-1);
}

.profile-field__bio {
  line-height: 1.6;
  color: var(--text-1);
}

.profile-field__bio p {
  margin-bottom: var(--size-3);
}

.profile-field__bio p:last-child {
  margin-bottom: 0;
}

/* Current Avatar Display */
.current-avatar {
  display: flex;
  align-items: center;
  gap: var(--size-3);
  margin-bottom: var(--size-3);
  padding: var(--size-3);
  background: var(--surface-2);
  border-radius: var(--radius-2);
  border: 1px solid var(--surface-3);
}

.current-avatar__image {
  flex-shrink: 0;
}

.current-avatar__info {
  flex: 1;
}

.current-avatar__info p {
  margin: 0 0 var(--size-1) 0;
  font-weight: 500;
  color: var(--text-1);
}

.current-avatar__info small {
  color: var(--text-2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    align-items: stretch;
    gap: var(--size-4);
  }
  
  .profile-content {
    grid-template-columns: 1fr;
    gap: var(--size-5);
    text-align: center;
  }
  
  .profile-details {
    text-align: left;
  }
  
  .current-avatar {
    flex-direction: column;
    text-align: center;
    gap: var(--size-2);
  }
}