.profile-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
}

@media (max-width: 992px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

.profile-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.profile-avatar-container {
  position: relative;
}

.profile-avatar-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--brown-medium);
  color: var(--white);
  border-radius: var(--radius-full);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast);
}

.profile-avatar-upload:hover {
  background-color: var(--brown-dark);
}

.profile-tabs-content {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
